-
Notifications
You must be signed in to change notification settings - Fork 7
/
outputs.tf
45 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 "api_gateway_rest_api_arn" {
description = "Arn of the REST API."
value = aws_api_gateway_rest_api.this.arn
}
output "api_gateway_rest_api_name" {
description = "Name of the REST API."
value = aws_api_gateway_rest_api.this.name
}
output "api_gateway_rest_api_id" {
description = "Id of the REST API."
value = aws_api_gateway_rest_api.this.id
}
output "api_gateway_rest_api_execution_arn" {
description = "Execution Arn of the REST API."
value = aws_api_gateway_rest_api.this.execution_arn
}
output "api_gateway_rest_api_stage_arn" {
description = "Arn of the deployed stage(s)."
value = aws_api_gateway_stage.this[0].arn
}
output "api_gateway_rest_api_stage_id" {
description = "Id of the deployed stage(s)."
value = aws_api_gateway_stage.this[0].id
}
output "api_gateway_rest_api_stage_invoke_url" {
description = "Invoke URL of the deployed stage(s)."
value = aws_api_gateway_stage.this[0].invoke_url
}
output "api_gateway_rest_api_stage_execution_arn" {
description = "Execution arn of the deployed stage(s)."
value = aws_api_gateway_stage.this[0].execution_arn
}
output "api_gateway_rest_api_stage_web_acl" {
description = "WAF Access Control List for the stage(s)"
value = aws_api_gateway_stage.this[0].web_acl_arn
}