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

MM-57113: fix region env var assignment #1466

Merged
merged 1 commit into from
Mar 20, 2024
Merged
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
4 changes: 2 additions & 2 deletions airflow/dags/mattermost_dags/extract/push_proxy_new.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def push_proxy_loader():
env_vars={},
arguments=[
"push_proxy PUSH_PROXY_LOGS_TEST_NEW LOGS_TEST_NEW "
" --prefix /AWSLogs/{{ var.value.push_proxy_aws_account_id }}/elasticloadbalancing/{{ var.value.push_proxy_aws_region_eu }}"
" --prefix /AWSLogs/{{ var.value.push_proxy_aws_account_id }}/elasticloadbalancing/{{ var.value.push_proxy_aws_region }}"
" -s {{ var.value.push_proxy_target_schema }}"
" -a ${SNOWFLAKE_ACCOUNT}"
" -d ${SNOWFLAKE_LOAD_DATABASE}"
Expand All @@ -98,7 +98,7 @@ def push_proxy_loader():
env_vars={},
arguments=[
"push_proxy PUSH_PROXY_LOGS_EU_NEW LOGS_EU_NEW "
" --prefix /AWSLogs/{{ var.value.push_proxy_aws_account_id }}/elasticloadbalancing/{{ var.value.push_proxy_aws_region }}"
" --prefix /AWSLogs/{{ var.value.push_proxy_aws_account_id }}/elasticloadbalancing/{{ var.value.push_proxy_aws_region_eu }}"
" -s {{ var.value.push_proxy_target_schema }}"
" -a ${SNOWFLAKE_ACCOUNT}"
" -d ${SNOWFLAKE_LOAD_DATABASE}"
Expand Down
Loading