This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fields: | |
| - id: primary_encryption_secret | |
| type: string | |
| label: Primary Encryption Secret | |
| format: aes_key | |
| secret: true | |
| help_text: >- | |
| Used to derive AES keys for database encryption (note: may impact | |
| performance). Warning: This secret is not stored in our system; you must | |
| manually enter and remember it. If lost, an Activation reset is required. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fields: | |
| - id: postgres_db_host | |
| type: string | |
| label: Postgres DB Host | |
| help_text: Postgres DB Server | |
| - id: postgres_db_port | |
| type: string | |
| label: Postgres DB Port | |
| default: '5432' | |
| help_text: Postgres DB Port |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| file: | |
| template.drools_sslkey: '{{ postgres_sslkey }}' | |
| template.drools_sslcert: '{{ postgres_sslcert }}' | |
| template.drools_sslrootcert: '{{ postgres_sslrootcert }}' | |
| extra_vars: | |
| drools_db_host: '{{ postgres_db_host }}' | |
| drools_db_name: '{{ postgres_db_name }}' | |
| drools_db_port: '{{ postgres_db_port }}' | |
| drools_db_user: '{{ postgres_db_user }}' | |
| drools_sslmode: '{{ postgres_sslmode }}' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "sample-data-processing-workflow", | |
| "description": "A sample workflow demonstrating data processing with approval steps", | |
| "yaml_definition": { | |
| "schemaVersion": "1.0.0", | |
| "version": 1, | |
| "metadata": { | |
| "name": "sample-data-processing-workflow", | |
| "description": "A sample workflow demonstrating data processing with approval steps", | |
| "tags": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| volumes: | |
| postgres-data: | |
| driver: local | |
| kestra-data: | |
| driver: local | |
| services: | |
| postgres: | |
| image: postgres | |
| volumes: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Gateway API client for AAP Gateway interactions with Service Tokens. | |
| This module provides a client class to interact with the AAP Gateway REST API, | |
| specifically for creating authenticators and mapping configurations. | |
| """ | |
| import requests | |
| import logging | |
| from typing import Dict, Optional |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Settings migrator. | |
| This module handles the migration of AWX settings to Gateway. | |
| """ | |
| from django.conf import settings | |
| from base_migrator import BaseAuthenticatorMigrator | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alerts: | |
| - annotations: | |
| description: https://prometheus.io is reachable for more than 1 minute. | |
| summary: Host https://prometheus.io is up | |
| endsAt: '0001-01-01T00:00:00Z' | |
| fingerprint: 226ceaf4d7c8760e | |
| generatorURL: http://a847ec21bcc3:9090/graph?g0.expr=probe_success%7Bjob%3D%22blackbox%22%7D+%3D%3D+1&g0.tab=1 | |
| labels: | |
| alertname: HostUp | |
| instance: https://prometheus.io |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import sys | |
| import os | |
| sys.path.append("/tmp") | |
| from django.core.management.base import BaseCommand | |
| from urllib.parse import urlparse, urlunparse | |
| from saml_migrator import SAMLMigrator | |
| from settings_migrator import SettingsMigrator | |
| from gateway_client import GatewayClient, GatewayAPIError |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Gateway mapping conversion utilities. | |
| This module contains functions to convert AWX authentication mappings | |
| (organization and team mappings) to AAP Gateway format. | |
| """ | |
| def team_map_to_gateway_format(team_map, start_order=1): | |
| """Convert AWX team mapping to Gateway authenticator format. |
NewerOlder