This is an automated email from the ASF dual-hosted git repository.
eladkal pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 7896d8fc4f1 docs: Add missing RoleArn in aws authentication section
(#51474)
7896d8fc4f1 is described below
commit 7896d8fc4f1bbcddd5019d35682667955b66b5ed
Author: Laityned <[email protected]>
AuthorDate: Fri Jun 6 18:11:32 2025 +0200
docs: Add missing RoleArn in aws authentication section (#51474)
add missing key in example
---
providers/hashicorp/docs/secrets-backends/hashicorp-vault.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/providers/hashicorp/docs/secrets-backends/hashicorp-vault.rst
b/providers/hashicorp/docs/secrets-backends/hashicorp-vault.rst
index 6d0a5393b16..08de6270de3 100644
--- a/providers/hashicorp/docs/secrets-backends/hashicorp-vault.rst
+++ b/providers/hashicorp/docs/secrets-backends/hashicorp-vault.rst
@@ -228,7 +228,7 @@ For more details, please refer to the AWS Assume Role
Authentication documentati
[secrets]
backend = airflow.providers.hashicorp.secrets.vault.VaultBackend
- backend_kwargs = {"connections_path": "airflow-connections",
"variables_path": null, "mount_point": "airflow", "url":
"http://127.0.0.1:8200", "auth_type": "aws_iam", "assume_role_kwargs":
{"arn:aws:iam::123456789000:role/hashicorp-aws-iam-role", "RoleSessionName":
"Airflow"}}
+ backend_kwargs = {"connections_path": "airflow-connections",
"variables_path": null, "mount_point": "airflow", "url":
"http://127.0.0.1:8200", "auth_type": "aws_iam", "assume_role_kwargs":
{"RoleArn":"arn:aws:iam::123456789000:role/hashicorp-aws-iam-role",
"RoleSessionName": "Airflow"}}
Using multiple mount points
"""""""""""""""""""""""""""