File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -93,6 +93,9 @@ module "ecs_deployment" {
9393 record_zone_id = data.aws_route53_zone.base_domain.zone_id
9494 }
9595 }
96+ region = var. region
97+ # Cross-account role that ACM module will use for Route53 DNS record creation
98+ route53_assume_role_arn = var. route53_assume_role_arn
9699
97100 # Application Load Balancer
98101 load_balancer = {
Original file line number Diff line number Diff line change @@ -132,3 +132,13 @@ variable "domain_name" {
132132 description = " Domain name for ACM"
133133 type = string
134134}
135+
136+ variable "region" {
137+ description = " AWS region to deploy resources"
138+ type = string
139+ }
140+
141+ variable "route53_assume_role_arn" {
142+ description = " ARN of the cross-account role for Route53 DNS record creation"
143+ type = string
144+ }
You can’t perform that action at this time.
0 commit comments