We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dff0cf commit 179cf0bCopy full SHA for 179cf0b
main.tf
@@ -14,7 +14,7 @@ resource "aws_ecs_task_definition" "task" {
14
initProcessEnabled = var.init_process_enabled
15
}
16
readonlyRootFilesystem = var.readonlyRootFilesystem
17
- user = var.user
+ user = var.user != "" ? var.user : null
18
19
], var.additional_container_definitions) : merge(s, {
20
environment = [for k in sort(keys(var.environment)) : { "name" : k, "value" : var.environment[k] }]
0 commit comments