Skip to content

Commit 6b6aaf4

Browse files
author
rahul-infra
committed
feat: added route53 arn and region in examples.
1 parent 67ee4f9 commit 6b6aaf4

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

examples/complete/main.tf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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 = {

examples/complete/variables.tf

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
}

0 commit comments

Comments
 (0)