We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f647f2e commit 5fb903fCopy full SHA for 5fb903f
variables.tf
@@ -145,7 +145,7 @@ variable "name" {
145
}
146
147
variable "network_mode" {
148
- default = "bridge"
+ default = "awsvpc"
149
description = "The Docker networking mode to use for the containers in the task"
150
151
@@ -164,7 +164,7 @@ variable "placement_constraints" {
164
165
166
variable "portMappings" {
167
- default = []
+ default = [{ containerPort = 80 }]
168
description = "The list of port mappings for the container"
169
type = list(any)
170
@@ -196,7 +196,7 @@ variable "repositoryCredentials" {
196
197
198
variable "requires_compatibilities" {
199
+ default = ["FARGATE"]
200
description = "The launch type required by the task"
201
type = list(string)
202
0 commit comments