Skip to content

Commit 2cf83ce

Browse files
committed
get rid of string interpolation warning
1 parent 3d9f947 commit 2cf83ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/merge/outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
output "container_definitions" {
22
description = "A list of container definitions in JSON format that describe the different containers that make up your task"
3-
value = "${format("[%s]", join(",", var.container_definitions))}"
3+
value = format("[%s]", join(",", var.container_definitions))
44
}

0 commit comments

Comments
 (0)