forked from cloudposse/terraform-aws-amplify-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
34 lines (28 loc) · 823 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
28
29
30
31
32
33
34
output "name" {
description = "Amplify App name"
value = module.amplify_app.name
}
output "arn" {
description = "Amplify App ARN"
value = module.amplify_app.arn
}
output "default_domain" {
description = "Amplify App domain (non-custom)"
value = module.amplify_app.default_domain
}
output "backend_environments" {
description = "Created backend environments"
value = module.amplify_app.backend_environments
}
output "branch_names" {
description = "The names of the created Amplify branches"
value = module.amplify_app.branch_names
}
output "webhooks" {
description = "Created webhooks"
value = module.amplify_app.webhooks
}
output "domain_associations" {
description = "Created domain associations"
value = module.amplify_app.domain_associations
}