Skip to content

Commit 40aee44

Browse files
committed
use list and convert to set
1 parent e8cb3d0 commit 40aee44

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

infra/app-flask/service/bda.tf

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,6 @@ module "bda_test" {
4040
tags = [{ key = "example_tag_key", value = "example_tag_value" }]
4141
}
4242
}
43-
name_prefix = "bda_module_test"
44-
bucket_policy_arns = set(
45-
module.bda_input_bucket.arn,
46-
module.bda_output_bucket.arn
47-
)
43+
name_prefix = "bda_module_test"
44+
bucket_policy_arns = set([module.bda_input_bucket.arn, module.bda_output_bucket.arn])
4845
}

0 commit comments

Comments
 (0)