From 36a9b0f48baf4a8ef8fc02a450a279948a8c0f02 Mon Sep 17 00:00:00 2001 From: Kaxil Naik Date: Fri, 20 Nov 2020 21:52:28 +0000 Subject: [PATCH] Fix the default value for VaultBackend's config_path (#12518) It is `config` not `configs` --- airflow/providers/hashicorp/secrets/vault.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow/providers/hashicorp/secrets/vault.py b/airflow/providers/hashicorp/secrets/vault.py index 776d8b9280435c..f745c8361aa865 100644 --- a/airflow/providers/hashicorp/secrets/vault.py +++ b/airflow/providers/hashicorp/secrets/vault.py @@ -51,7 +51,7 @@ class VaultBackend(BaseSecretsBackend, LoggingMixin): (default: 'variables'). If set to None (null), requests for variables will not be sent to Vault. :type variables_path: str :param config_path: Specifies the path of the secret to read Airflow Configurations - (default: 'configs'). If set to None (null), requests for configurations will not be sent to Vault. + (default: 'config'). If set to None (null), requests for configurations will not be sent to Vault. :type config_path: str :param url: Base URL for the Vault instance being addressed. :type url: str