We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9051f6 commit a57b32eCopy full SHA for a57b32e
env/dev/ecs.tf
@@ -38,6 +38,12 @@ variable "ecs_autoscale_max_instances" {
38
39
resource "aws_ecs_cluster" "app" {
40
name = "${var.app}-${var.environment}"
41
+
42
+ setting {
43
+ name = "containerInsights"
44
+ value = "enabled"
45
+ }
46
47
tags = "${var.tags}"
48
}
49
env/dev/main.tf
@@ -13,7 +13,7 @@ terraform {
13
variable "aws_profile" {}
14
15
provider "aws" {
16
- version = ">= 1.53.0"
+ version = ">= 2.27.0"
17
region = "${var.region}"
18
profile = "${var.aws_profile}"
19
0 commit comments