Skip to content
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
6 changes: 3 additions & 3 deletions util/jenkins/ansible-provision.sh
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ EOF

set +x

app_git_ssh_key=$(aws secretsmanager get-secret-value --secret-id $configuration_secure_secret --query SecretString --output text | jq -r '._local_git_identity')
app_git_ssh_key=$(aws secretsmanager get-secret-value --region "${region}" --secret-id "${configuration_secure_secret}" --query SecretString --output text | jq -r '._local_git_identity')

# specify variable names
app_hostname="courses"
Expand Down Expand Up @@ -961,7 +961,7 @@ fi
if [[ $edx_exams == 'true' ]]; then
set +x

app_git_ssh_key=$(aws secretsmanager get-secret-value --secret-id $configuration_secure_secret --query SecretString --output text | jq -r '._local_git_identity')
app_git_ssh_key=$(aws secretsmanager get-secret-value --region "${region}" --secret-id "${configuration_secure_secret}" --query SecretString --output text | jq -r '._local_git_identity')

app_hostname="edx-exams"
app_service_name="edx_exams"
Expand All @@ -985,7 +985,7 @@ fi
if [[ $subscriptions == 'true' ]]; then
set +x

app_git_ssh_key=$(aws secretsmanager get-secret-value --secret-id $configuration_secure_secret --query SecretString --output text | jq -r '._local_git_identity')
app_git_ssh_key=$(aws secretsmanager get-secret-value --region "${region}" --secret-id "${configuration_secure_secret}" --query SecretString --output text | jq -r '._local_git_identity')

app_hostname="subscriptions"
app_service_name="subscriptions"
Expand Down
Loading