Skip to content

Commit 633cbf8

Browse files
committed
replace list with tolist
1 parent 0e7b829 commit 633cbf8

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)