-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
44 lines (36 loc) · 1.3 KB
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
output "subnets" {
description = "Subnets for the application"
value = data.aws_subnets.private.ids
}
output "vpc_id" {
description = "VPC ID for the application"
value = data.aws_vpc.default.id
}
output "service_account_name" {
description = "Service Account Name for the application"
value = module.application_service_account.iam_role_name
}
output "service_account_arn" {
description = "Service Account ARN for the application"
value = module.application_service_account.iam_role_arn
}
output "route53_zone_arn" {
description = "Route53 Zone ARN for the application"
value = data.aws_route53_zone.existing_route53_zone.arn
}
output "route53_zone_id" {
description = "Route53 Zone ID for the application"
value = data.aws_route53_zone.existing_route53_zone.zone_id
}
output "route53_zone_name" {
description = "Route53 Zone Name for the application"
value = data.aws_route53_zone.existing_route53_zone.name
}
output "apprunner_service_id" {
description = "App Runner Service ID for the application"
value = module.example_app_runner.service_id
}
output "certificate_validation_records" {
description = "Certificate Validation Records for the application"
value = module.example_app_runner.custom_domain_association_certificate_validation_records
}