File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
modules/bedrock-data-automation Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,9 @@ 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 = toset ([module . bda_input_bucket . access_policy_arn , module . bda_output_bucket . access_policy_arn ])
43+ name_prefix = " bda_module_test"
44+ bucket_policy_arns = {
45+ input_bucket = module.bda_input_bucket.access_policy_arn,
46+ output_bucket = module.bda_output_bucket.access_policy_arn
47+ }
4548}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ variable "name_prefix" {
55
66variable "bucket_policy_arns" {
77 description = " The set of policy ARNs for the input and output buckets to attach to the BDA role."
8- type = set (string )
8+ type = map (string )
99}
1010
1111variable "bda_project_description" {
You can’t perform that action at this time.
0 commit comments