Skip to content

Commit

Permalink
EDSC-3982: Update EDSC so that allocated storage for the RDS instance
Browse files Browse the repository at this point in the history
* EDSC-3982: Update EDSC so that allocated storage for the RDS instance is a configured value
  • Loading branch information
eudoroolivares2016 authored Jan 29, 2024
1 parent 81568d7 commit f490989
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions bin/deploy-bamboo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ dockerRun() {
-e "AWS_SECRET_ACCESS_KEY=$bamboo_AWS_SECRET_ACCESS_KEY" \
-e "CLOUDFRONT_BUCKET_NAME=$bamboo_CLOUDFRONT_BUCKET_NAME" \
-e "COLORMAP_JOB_ENABLED=$bamboo_COLORMAP_JOB_ENABLED" \
-e "DB_ALLOCATED_STORAGE=$bamboo_DB_ALLOCATED_STORAGE" \
-e "DB_INSTANCE_CLASS=$bamboo_DB_INSTANCE_CLASS" \
-e "GIBS_JOB_ENABLED=$bamboo_GIBS_JOB_ENABLED" \
-e "LAMBDA_TIMEOUT=$bamboo_LAMBDA_TIMEOUT" \
Expand Down
2 changes: 1 addition & 1 deletion serverless-configs/aws-infrastructure-resources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Resources:
Type: AWS::RDS::DBInstance
Properties:
DBName: edsc_${self:provider.stage}
AllocatedStorage: '20'
AllocatedStorage: ${env:DB_ALLOCATED_STORAGE}
DBInstanceClass: ${env:DB_INSTANCE_CLASS}
Engine: postgres
EngineVersion: '14.4'
Expand Down

0 comments on commit f490989

Please sign in to comment.