Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds secret backend and logging information to provider yaml #17625

Merged
merged 1 commit into from
Aug 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions airflow/cli/cli_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -1267,6 +1267,24 @@ class GroupCommand(NamedTuple):
func=lazy_load_command('airflow.cli.commands.provider_command.connection_field_behaviours'),
args=(ARG_OUTPUT, ARG_VERBOSE),
),
ActionCommand(
name='logging',
help='Get information about task logging handlers provided',
func=lazy_load_command('airflow.cli.commands.provider_command.logging_list'),
args=(ARG_OUTPUT, ARG_VERBOSE),
),
ActionCommand(
name='secrets',
help='Get information about secrets backends provided',
func=lazy_load_command('airflow.cli.commands.provider_command.secrets_backends_list'),
args=(ARG_OUTPUT, ARG_VERBOSE),
),
ActionCommand(
name='auth',
help='Get information about API auth backends provided',
func=lazy_load_command('airflow.cli.commands.provider_command.auth_backend_list'),
args=(ARG_OUTPUT, ARG_VERBOSE),
),
)

USERS_COMMANDS = (
Expand Down
36 changes: 36 additions & 0 deletions airflow/cli/commands/provider_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,3 +113,39 @@ def extra_links_list(args):
"extra_link_class_name": x,
},
)


@suppress_logs_and_warning
def logging_list(args):
"""Lists all log task handlers at the command line"""
AirflowConsole().print_as(
data=list(ProvidersManager().logging_class_names),
output=args.output,
mapper=lambda x: {
"logging_class_name": x,
},
)


@suppress_logs_and_warning
def secrets_backends_list(args):
"""Lists all secrets backends at the command line"""
AirflowConsole().print_as(
data=list(ProvidersManager().secrets_backend_class_names),
output=args.output,
mapper=lambda x: {
"secrets_backend_class_name": x,
},
)


@suppress_logs_and_warning
def auth_backend_list(args):
"""Lists all API auth backend modules at the command line"""
AirflowConsole().print_as(
data=list(ProvidersManager().auth_backend_module_names),
output=args.output,
mapper=lambda x: {
"api_auth_backand_module": x,
},
)
21 changes: 21 additions & 0 deletions airflow/provider.yaml.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,27 @@
"additional-extras": {
"type": "object",
"description": "Additional extras that the provider should have"
},
"secrets-backends": {
"type": "array",
"description": "Secrets Backend class names",
"items": {
"type": "string"
}
},
"logging": {
"type": "array",
"description": "Logging Task Handlers class names",
"items": {
"type": "string"
}
},
"auth-backends": {
"type": "array",
"description": "API Auth Backend module names",
"items": {
"type": "string"
}
}
},
"additionalProperties": false,
Expand Down
21 changes: 21 additions & 0 deletions airflow/provider_info.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,27 @@
"items": {
"type": "string"
}
},
"secrets-backends": {
"type": "array",
"description": "Secrets Backend class names",
"items": {
"type": "string"
}
},
"logging": {
"type": "array",
"description": "Logging Task Handlers class names",
"items": {
"type": "string"
}
},
"auth-backends": {
"type": "array",
"description": "API Auth Backend module names",
"items": {
"type": "string"
}
}
},
"required": [
Expand Down
8 changes: 8 additions & 0 deletions airflow/providers/amazon/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -399,3 +399,11 @@ hook-class-names:
- airflow.providers.amazon.aws.hooks.s3.S3Hook
- airflow.providers.amazon.aws.hooks.base_aws.AwsBaseHook
- airflow.providers.amazon.aws.hooks.emr.EmrHook

secrets-backends:
- airflow.providers.amazon.aws.secrets.secrets_manager.SecretsManagerBackend
- airflow.providers.amazon.aws.secrets.systems_manager.SystemsManagerParameterStoreBackend

logging:
- airflow.providers.amazon.aws.log.s3_task_handler.S3TaskHandler
- airflow.providers.amazon.aws.log.cloudwatch_task_handler.CloudwatchTaskHandler
3 changes: 3 additions & 0 deletions airflow/providers/elasticsearch/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,6 @@ hooks:

hook-class-names:
- airflow.providers.elasticsearch.hooks.elasticsearch.ElasticsearchHook

logging:
- airflow.providers.elasticsearch.log.es_task_handler.ElasticsearchTaskHandler
10 changes: 10 additions & 0 deletions airflow/providers/google/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -757,3 +757,13 @@ extra-links:
additional-extras:
apache.beam: apache-beam[gcp]
leveldb: plyvel

secrets-backends:
- airflow.providers.google.cloud.secrets.secret_manager.CloudSecretManagerBackend

auth-backends:
- airflow.providers.google.common.auth_backend.google_openid

logging:
- airflow.providers.google.cloud.log.gcs_task_handler.GCSTaskHandler
- airflow.providers.google.cloud.log.stackdriver_task_handler.StackdriverTaskHandler
3 changes: 3 additions & 0 deletions airflow/providers/hashicorp/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,6 @@ hooks:

hook-class-names:
- airflow.providers.hashicorp.hooks.vault.VaultHook

secrets-backends:
- airflow.providers.hashicorp.secrets.vault.VaultBackend
6 changes: 6 additions & 0 deletions airflow/providers/microsoft/azure/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -165,3 +165,9 @@ hook-class-names:
- airflow.providers.microsoft.azure.hooks.wasb.WasbHook
- airflow.providers.microsoft.azure.hooks.azure_data_factory.AzureDataFactoryHook
- airflow.providers.microsoft.azure.hooks.azure_container_registry.AzureContainerRegistryHook

secrets-backends:
- airflow.providers.microsoft.azure.secrets.azure_key_vault.AzureKeyVaultBackend

logging:
- airflow.providers.microsoft.azure.log.wasb_task_handler.WasbTaskHandler
Loading