Skip to content

Commit

Permalink
BAU: Fixes resource constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
willfish committed Nov 3, 2023
1 parent 1860eb4 commit 224432d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions terraform/config_development.tfvars
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
region = "eu-west-2"
environment = "development"
base_domain = "transformtariff.co.uk"
cpu = 512
memory = 1024
cpu = 1024
memory = 2048
service_count = 2
min_capacity = 1
max_capacity = 3
4 changes: 2 additions & 2 deletions terraform/config_production.tfvars
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
region = "eu-west-2"
environment = "production"
base_domain = "ott-production.co.uk"
cpu = 512
memory = 1024
cpu = 1024
memory = 2048
service_count = 3
min_capacity = 2
max_capacity = 5
4 changes: 2 additions & 2 deletions terraform/config_staging.tfvars
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
region = "eu-west-2"
environment = "staging"
base_domain = "ott-staging.co.uk"
cpu = 512
memory = 1024
cpu = 1024
memory = 2048
service_count = 3
min_capacity = 2
max_capacity = 5

0 comments on commit 224432d

Please sign in to comment.