Skip to content

Commit daddc99

Browse files
Merge pull request #3 from DeanBDean/replace_list
replace list with tolist
2 parents 0e7b829 + 633cbf8 commit daddc99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

outputs.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ output "arn" {
1010

1111
output "groups" {
1212
description = "The groups to which policy is attached"
13-
value = element(concat(aws_iam_group_policy_attachment.to_groups.*.group, list("")), 0)
13+
value = element(concat(aws_iam_group_policy_attachment.to_groups.*.group, tolist([""])), 0)
1414
}
1515

1616
output "policy_json" {

0 commit comments

Comments
 (0)