We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d66d6c commit 8350381Copy full SHA for 8350381
outputs.tf
@@ -2,9 +2,7 @@
2
#Description : This terraform module creates set of Security Group and Security Group Rules
3
# resources in various combinations.
4
output "security_group_ids" {
5
- value = concat(
6
- aws_security_group.default.*.id
7
- )[0]
+ value = join("", aws_security_group.default.*.id)
8
description = "IDs on the AWS Security Groups associated with the instance."
9
}
10
0 commit comments