Skip to content

Commit

Permalink
Fixed the accounts list
Browse files Browse the repository at this point in the history
  • Loading branch information
athiruma committed Feb 27, 2024
1 parent 11967ff commit 7142858
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jenkins/clouds/aws/daily/policies/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ pipeline {
stage('Run Daily Policies') {
steps {
script {
for (account in accounts_list.keySet() {
for (account in accounts_list.keySet()) {
echo "Running for account ${account.toUpperCase()}"
withCredentials([string(credentialsId: "${account}-aws-access-key-id", variable: 'access_key'),
string(credentialsId: "${account}-aws-secret-key-id", variable: 'secret_key'),
Expand Down
2 changes: 1 addition & 1 deletion jenkins/tenant/aws/ecoeng_02/PolicyJenkinsfileDaily
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
account = ['appeng': "[email protected], [email protected], [email protected]",
accounts_list = ['appeng': "[email protected], [email protected], [email protected]",
'fsi-partner': "[email protected], [email protected], [email protected]",
'fsi-ecosystem': "[email protected], [email protected], [email protected]"]
pipeline {
Expand Down

0 comments on commit 7142858

Please sign in to comment.