Skip to content

Commit

Permalink
Release-0.6.2 Pin application version 0.6.2 in production (#803)
Browse files Browse the repository at this point in the history
- Enable production's container insights
  • Loading branch information
webit4me authored Oct 22, 2024
1 parent 2f8f9cd commit b8c94fb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion terragrunt/components/terragrunt.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ locals {
account_id = 471112843276
canary_schedule_expression = "rate(15 minutes)"
name = "production"
pinned_service_version = "0.6.0"
pinned_service_version = "0.6.2"
postgres_instance_type = "db.t4g.micro"
private_subnets = [
"10.${local.cidr_b_production}.101.0/24",
Expand Down
9 changes: 9 additions & 0 deletions terragrunt/modules/ecs/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,14 @@ resource "aws_ecs_cluster" "this" {
}
}

dynamic "setting" {
for_each = var.is_production ? [0] : []
content {
name = "containerInsights"
value = "enabled"
}
}


tags = var.tags
}

0 comments on commit b8c94fb

Please sign in to comment.