diff --git a/buildspec_publish_ssm.yml b/buildspec_publish_ssm.yml index 185c9d9f497..1fc771b394c 100644 --- a/buildspec_publish_ssm.yml +++ b/buildspec_publish_ssm.yml @@ -8,7 +8,7 @@ phases: - echo Publish SSM parameters build: commands: - - './scripts/publish_test.sh cicd-publish-ssm ${AWS_REGION}' + - './scripts/publish.sh cicd-publish-ssm ${AWS_REGION}' # Assume role to verify, get the credentials, and set them as environment variables. # Verification should be done using the credentials from a different account. It ensures that @@ -18,7 +18,7 @@ phases: - export AWS_SECRET_ACCESS_KEY=`echo $CREDS | jq -r .Credentials.SecretAccessKey` - export AWS_SESSION_TOKEN=`echo $CREDS | jq -r .Credentials.SessionToken` - - './scripts/publish_test.sh cicd-verify-ssm ${AWS_REGION}' + - './scripts/publish.sh cicd-verify-ssm ${AWS_REGION}' artifacts: files: - '**/*'