Skip to content

Commit

Permalink
Merge pull request #78 from bparvizi-aws/master
Browse files Browse the repository at this point in the history
Updated deploy.sh scripts to remove regional extension
  • Loading branch information
brtrvn authored Feb 26, 2024
2 parents 29f0ca4 + e2294a4 commit f51df64
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Lab2/Part1/product-manager/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ print_dots () {
AWS_REGION=$(aws configure list | grep region | awk '{print $2}')
CODEBUILD_PROJECT="saas-bootcamp-product-svc"
CODE_PIPELINE="saas-bootcamp-product-svc"
BOOTCAMP_BUCKET=$(aws ssm get-parameter --name "saas-bootcamp-bucket-${AWS_REGION}" | jq -r '.Parameter.Value')
BOOTCAMP_BUCKET=$(aws ssm get-parameter --name "saas-bootcamp-bucket" | jq -r '.Parameter.Value')
DEPLOY_MONITOR_QUEUE=$(aws ssm get-parameter --name "saas-bootcamp-ci-cd-queue-${AWS_REGION}" | jq -r '.Parameter.Value')

if [ -z "$BOOTCAMP_BUCKET" ]; then
Expand Down
2 changes: 1 addition & 1 deletion Lab2/Part2/product-manager/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ print_dots () {
AWS_REGION=$(aws configure list | grep region | awk '{print $2}')
CODEBUILD_PROJECT="saas-bootcamp-product-svc"
CODE_PIPELINE="saas-bootcamp-product-svc"
BOOTCAMP_BUCKET=$(aws ssm get-parameter --name "saas-bootcamp-bucket-${AWS_REGION}" | jq -r '.Parameter.Value')
BOOTCAMP_BUCKET=$(aws ssm get-parameter --name "saas-bootcamp-bucket" | jq -r '.Parameter.Value')
DEPLOY_MONITOR_QUEUE=$(aws ssm get-parameter --name "saas-bootcamp-ci-cd-queue-${AWS_REGION}" | jq -r '.Parameter.Value')

if [ -z "$BOOTCAMP_BUCKET" ]; then
Expand Down
2 changes: 1 addition & 1 deletion Lab2/Part3/product-manager/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ print_dots () {
AWS_REGION=$(aws configure list | grep region | awk '{print $2}')
CODEBUILD_PROJECT="saas-bootcamp-product-svc"
CODE_PIPELINE="saas-bootcamp-product-svc"
BOOTCAMP_BUCKET=$(aws ssm get-parameter --name "saas-bootcamp-bucket-${AWS_REGION}" | jq -r '.Parameter.Value')
BOOTCAMP_BUCKET=$(aws ssm get-parameter --name "saas-bootcamp-bucket" | jq -r '.Parameter.Value')
DEPLOY_MONITOR_QUEUE=$(aws ssm get-parameter --name "saas-bootcamp-ci-cd-queue-${AWS_REGION}" | jq -r '.Parameter.Value')

if [ -z "$BOOTCAMP_BUCKET" ]; then
Expand Down
2 changes: 1 addition & 1 deletion Lab3/Part1/product-manager/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ print_dots () {
AWS_REGION=$(aws configure list | grep region | awk '{print $2}')
CODEBUILD_PROJECT="saas-bootcamp-product-svc"
CODE_PIPELINE="saas-bootcamp-product-svc"
BOOTCAMP_BUCKET=$(aws ssm get-parameter --name "saas-bootcamp-bucket-${AWS_REGION}" | jq -r '.Parameter.Value')
BOOTCAMP_BUCKET=$(aws ssm get-parameter --name "saas-bootcamp-bucket" | jq -r '.Parameter.Value')
DEPLOY_MONITOR_QUEUE=$(aws ssm get-parameter --name "saas-bootcamp-ci-cd-queue-${AWS_REGION}" | jq -r '.Parameter.Value')

if [ -z "$BOOTCAMP_BUCKET" ]; then
Expand Down
2 changes: 1 addition & 1 deletion Lab3/Part4/product-manager/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ print_dots () {
AWS_REGION=$(aws configure list | grep region | awk '{print $2}')
CODEBUILD_PROJECT="saas-bootcamp-product-svc"
CODE_PIPELINE="saas-bootcamp-product-svc"
BOOTCAMP_BUCKET=$(aws ssm get-parameter --name "saas-bootcamp-bucket-${AWS_REGION}" | jq -r '.Parameter.Value')
BOOTCAMP_BUCKET=$(aws ssm get-parameter --name "saas-bootcamp-bucket" | jq -r '.Parameter.Value')
DEPLOY_MONITOR_QUEUE=$(aws ssm get-parameter --name "saas-bootcamp-ci-cd-queue-${AWS_REGION}" | jq -r '.Parameter.Value')

if [ -z "$BOOTCAMP_BUCKET" ]; then
Expand Down
2 changes: 1 addition & 1 deletion Lab3/Part5/product-manager/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ print_dots () {
AWS_REGION=$(aws configure list | grep region | awk '{print $2}')
CODEBUILD_PROJECT="saas-bootcamp-product-svc"
CODE_PIPELINE="saas-bootcamp-product-svc"
BOOTCAMP_BUCKET=$(aws ssm get-parameter --name "saas-bootcamp-bucket-${AWS_REGION}" | jq -r '.Parameter.Value')
BOOTCAMP_BUCKET=$(aws ssm get-parameter --name "saas-bootcamp-bucket" | jq -r '.Parameter.Value')
DEPLOY_MONITOR_QUEUE=$(aws ssm get-parameter --name "saas-bootcamp-ci-cd-queue-${AWS_REGION}" | jq -r '.Parameter.Value')

if [ -z "$BOOTCAMP_BUCKET" ]; then
Expand Down

0 comments on commit f51df64

Please sign in to comment.