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
description="(Optional, Default:false) Boolean that indicates all objects (including any locked objects) should be deleted from the bucket when the bucket is destroyed so that the bucket can be destroyed without error."
Copy file name to clipboardExpand all lines: modules/alb/.header.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
This sub-module creates:
4
4
5
-
1. Application Load Balancer in the given subnets
5
+
1. Application Load Balancer in the given subnets with logging configuration
6
6
2. Target Groups with Health Check configuration
7
7
3. Listeners with Default Action configuration, and
8
8
4. Listener Rules with Actions with `forward` and `authenticate-oidc` types, and Conditions involving `host_header`, `path_pattern`, and `http_request_method`.
description="(Optional) Creates S3 bucket for storing ALB Access and Connection Logs."
128
+
type=bool
129
+
nullable=false
130
+
default=true
131
+
}
132
+
133
+
variable"s3_bucket_name" {
134
+
description="(Optional, Forces new resource) Name of the bucket."
135
+
type=string
136
+
default=null
137
+
}
138
+
139
+
variable"s3_bucket_force_destroy" {
140
+
description="(Optional, Default:false) Boolean that indicates all objects (including any locked objects) should be deleted from the bucket when the bucket is destroyed so that the bucket can be destroyed without error."
141
+
type=bool
142
+
nullable=false
143
+
default=false
144
+
}
145
+
146
+
variable"s3_bucket_policy_id_prefix" {
147
+
description="(Optional) - Prefix of the ID for the policy document."
148
+
type=string
149
+
nullable=false
150
+
default="ecs-deployment-alb-"
151
+
}
152
+
153
+
variable"s3_bucket_access_logs_prefix" {
154
+
description="(Optional) - Prefix for storing ALB access logs in the S3 bucket."
155
+
type=string
156
+
nullable=false
157
+
default="alb-access-logs"
158
+
}
159
+
160
+
variable"s3_bucket_connection_logs_prefix" {
161
+
description="(Optional) - Prefix for storing ALB connection logs in the S3 bucket."
162
+
type=string
163
+
nullable=false
164
+
default="alb-connection-logs"
165
+
}
166
+
167
+
variable"s3_bucket_tags" {
168
+
description="(Optional) Map of tags to assign to the bucket."
0 commit comments