Skip to content

Commit 8350381

Browse files
author
Nikita Dugar
committed
change output syntax
1 parent 5d66d6c commit 8350381

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

outputs.tf

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
#Description : This terraform module creates set of Security Group and Security Group Rules
33
# resources in various combinations.
44
output "security_group_ids" {
5-
value = concat(
6-
aws_security_group.default.*.id
7-
)[0]
5+
value = join("", aws_security_group.default.*.id)
86
description = "IDs on the AWS Security Groups associated with the instance."
97
}
108

0 commit comments

Comments
 (0)