Skip to content

Commit

Permalink
infra: update to v1.1.17 (#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreiio authored Jul 12, 2024
1 parent 7502068 commit 6899cc8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions terraform/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ locals {
images = {
api = {
image = "code4romania/rezultate-vot-api"
tag = "1.1.13"
tag = "1.1.17"
}

hangfire = {
image = "code4romania/rezultate-vot-hangfire"
tag = "1.1.13"
tag = "1.1.17"
}

importer = {
Expand Down
4 changes: 2 additions & 2 deletions terraform/service_hangfire.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ module "ecs_hangfire" {

name = "rezultatevot-hangfire-${var.env}"
cluster_name = module.ecs_cluster.cluster_name
min_capacity = 1
max_capacity = 1
min_capacity = 0
max_capacity = 0

image_repo = local.images.hangfire.image
image_tag = local.images.hangfire.tag
Expand Down
4 changes: 2 additions & 2 deletions terraform/service_importer.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ module "ecs_importer" {

name = "rezultatevot-importer-${var.env}"
cluster_name = module.ecs_cluster.cluster_name
min_capacity = 1
max_capacity = 1
min_capacity = 0
max_capacity = 0

image_repo = local.images.importer.image
image_tag = local.images.importer.tag
Expand Down

0 comments on commit 6899cc8

Please sign in to comment.