skip to Main Content

XCom Value Not showing in Airflow MWAA – Amazon Web Sevices

I'm running following script in MWAA and my local env. from airflow import DAG, XComArg from airflow.providers.amazon.aws.operators.redshift_sql import RedshiftSQLOperator from airflow.models.connection import Connection from airflow.operators.dummy_operator import DummyOperator from airflow.utils.task_group import TaskGroup # from airflow.providers.slack.hooks.slack_webhook import SlackWebhookHook from airflow.decorators import dag,…

VIEW QUESTION

AWS Secrets Manager auto rotation lambda function that rotates only one key value – Amazon Web Sevices

I have this lambda function that I got from here: https://github.com/endre-synnes/python_aws_course/blob/main/lambda_intro/04_secrets_and_databases_and_stuff/17_rotate_secrets.py import boto3 def lambda_handler(event, context): arn = event['SecretId'] token = event['ClientRequestToken'] step = event['Step'] # Setup the client service_client = boto3.client('secretsmanager') # Make sure the version is staged correctly…

VIEW QUESTION
Back To Top
Search