You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: ecs-cluster/variables.tf
+18
Original file line number
Diff line number
Diff line change
@@ -87,6 +87,24 @@ variable "desired-count" {
87
87
default=1
88
88
}
89
89
90
+
variable"loadbalancer-logging-iam-principal" {
91
+
type=map(string)
92
+
description="IAM principal type and identifier for the elastic load balancer logger. This is complicated, see https://docs.aws.amazon.com/elasticloadbalancing/latest/application/enable-access-logging.html#attach-bucket-policy"
93
+
94
+
# For eu-west-2 this is a hard-coded AWS account ID belonging to AWS
95
+
# and not Service: logdelivery.elasticloadbalancing.amazonaws.com
96
+
default={
97
+
type ="AWS"
98
+
identifier ="arn:aws:iam::652711504416:root"
99
+
}
100
+
}
101
+
102
+
variable"expire-access-logs-days" {
103
+
type=number
104
+
description="Automatically delete access logs after this number of days"
0 commit comments