forked from cloudposse/terraform-aws-amplify-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
40 lines (32 loc) · 972 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
35
36
37
38
39
output "name" {
description = "Amplify App name"
value = one(aws_amplify_app.default[*].name)
}
output "arn" {
description = "Amplify App ARN"
value = one(aws_amplify_app.default[*].arn)
}
output "id" {
description = "Amplify App Id"
value = one(aws_amplify_app.default[*].id)
}
output "default_domain" {
description = "Amplify App domain (non-custom)"
value = one(aws_amplify_app.default[*].default_domain)
}
output "backend_environments" {
description = "Created backend environments"
value = aws_amplify_backend_environment.default
}
output "branch_names" {
description = "The names of the created Amplify branches"
value = values(aws_amplify_branch.default)[*].branch_name
}
output "webhooks" {
description = "Created webhooks"
value = aws_amplify_webhook.default
}
output "domain_associations" {
description = "Created domain associations"
value = awscc_amplify_domain.default
}