Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions terraform/ecs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module "backend" {
# checkov:skip=CKV_SECRET_4:Skip secret check as these have to be used within the Github Action
# checkov:skip=CKV_TF_1: We're using semantic versions instead of commit hash
#source = "../../i-dot-ai-core-terraform-modules//modules/ecs" # For testing local changes
source = "git::https://github.com/i-dot-ai/i-dot-ai-core-terraform-modules.git//modules/infrastructure/ecs?ref=v5.7.0-ecs"
source = "git::https://github.com/i-dot-ai/i-dot-ai-core-terraform-modules.git//modules/infrastructure/ecs?ref=v5.8.0-ecs"
image_tag = var.image_tag
ecr_repository_uri = "${data.aws_caller_identity.current.account_id}.dkr.ecr.${var.region}.amazonaws.com/minute-backend"
vpc_id = data.terraform_remote_state.vpc.outputs.vpc_id
Expand Down Expand Up @@ -96,7 +96,7 @@ module "frontend" {
# checkov:skip=CKV_SECRET_4:Skip secret check as these have to be used within the Github Action
name = "${local.name}-frontend"
# source = "../../i-dot-ai-core-terraform-modules//modules/infrastructure/ecs" # For testing local changes
source = "git::https://github.com/i-dot-ai/i-dot-ai-core-terraform-modules.git//modules/infrastructure/ecs?ref=v5.4.0-ecs"
source = "git::https://github.com/i-dot-ai/i-dot-ai-core-terraform-modules.git//modules/infrastructure/ecs?ref=v5.8.0-ecs"
image_tag = var.image_tag
ecr_repository_uri = "${data.aws_caller_identity.current.account_id}.dkr.ecr.${var.region}.amazonaws.com/minute-frontend"
vpc_id = data.terraform_remote_state.vpc.outputs.vpc_id
Expand Down Expand Up @@ -155,7 +155,7 @@ module "worker" {

# checkov:skip=CKV_SECRET_4:Skip secret check as these have to be used within the Github Action
# checkov:skip=CKV_TF_1: We're using semantic versions instead of commit hash
source = "git::https://github.com/i-dot-ai/i-dot-ai-core-terraform-modules.git//modules/infrastructure/ecs?ref=v5.7.0-ecs"
source = "git::https://github.com/i-dot-ai/i-dot-ai-core-terraform-modules.git//modules/infrastructure/ecs?ref=v5.8.0-ecs"
desired_app_count = terraform.workspace == "prod" ? 2 : 1
image_tag = var.image_tag
ecr_repository_uri = "${data.aws_caller_identity.current.account_id}.dkr.ecr.${var.region}.amazonaws.com/minute-worker"
Expand Down
Loading