Skip to content

Commit

Permalink
chore: ensure additional payer accounts are included in the data coll…
Browse files Browse the repository at this point in the history
…ection template
  • Loading branch information
gambol99 committed Nov 19, 2024
1 parent 72bc0a1 commit f00a130
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ resource "aws_cloudformation_stack" "cudos_data_collection" {
"IncludeRightsizingModule" = var.enable_rightsizing_module ? "yes" : "no",
"IncludeTAModule" = var.enable_tao_module ? "yes" : "no",
"IncludeTransitGatewayModule" = var.enable_transit_gateway_module ? "yes" : "no",
"ManagementAccountID" = local.management_account_id,
"ManagementAccountID" = join(",", local.payer_account_ids),
}

depends_on = [
Expand Down

0 comments on commit f00a130

Please sign in to comment.