Skip to content

Commit

Permalink
fix(services): Frontend (web-ui) using incorrect variables for cpu/me…
Browse files Browse the repository at this point in the history
…mory (#54)
  • Loading branch information
codyfletcher authored Jan 21, 2023
1 parent 3ba336b commit e0c8a6a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions modules/ad-hoc/app/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ module "web-ui" {
env_vars = []
image = local.fe_image
region = var.region
cpu = var.api_cpu
memory = var.api_memory
cpu = var.frontend_cpu
memory = var.frontend_memory
port = 80
path_patterns = ["/*"]
health_check_path = "/"
Expand Down
4 changes: 2 additions & 2 deletions modules/prod/app/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ module "web-ui" {
env_vars = []
image = local.fe_image
region = var.region
cpu = var.api_cpu
memory = var.api_memory
cpu = var.frontend_cpu
memory = var.frontend_memory
port = 80
path_patterns = ["/*"]
health_check_path = "/"
Expand Down

0 comments on commit e0c8a6a

Please sign in to comment.