-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
27 lines (25 loc) · 809 Bytes
/
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
# TODO - Add more outputs
# AWS Current Region
output "aws_current_region" {
value = data.aws_region.current
}
output "amplify_app_id" {
value = aws_amplify_app.sample_app.id
description = "The App ID for the Amplify App"
}
output "amplify_app_arn" {
value = aws_amplify_app.sample_app.arn
description = "The ARN for the Amplify App"
}
output "amplify_app_default_domain" {
value = aws_amplify_app.sample_app.default_domain
description = "The default domain for the Amplify App"
}
output "amplify_app_production_branch" {
value = aws_amplify_app.sample_app.default_domain
description = "The production branch for the Amplify App"
}
output "amplify_app_tags_all" {
value = aws_amplify_app.sample_app.tags_all
description = "All tags for the Amplify App"
}