-
Notifications
You must be signed in to change notification settings - Fork 1
/
outputs.tf
53 lines (43 loc) · 1.38 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
45
46
47
48
49
50
51
52
53
# ------------------------------------------------------------------------------
# Output
# ------------------------------------------------------------------------------
output "name_prefix" {
value = var.name_prefix
}
output "tags" {
value = var.tags
}
output "aws_service_discovery_service_arn" {
value = aws_service_discovery_service.main.arn
}
output "aws_apigatewayv2_vpc_link_id" {
value = aws_apigatewayv2_vpc_link.main.id
}
output "task_role_arn" {
description = "The Amazon Resource Name (ARN) specifying the service role."
value = module.fargate.task_role_arn
}
output "task_role_name" {
description = "The name of the service role."
value = module.fargate.task_role_name
}
output "task_execution_role_arn" {
description = "The Amazon Resource Name (ARN) specifying the execution service role."
value = module.fargate.task_execution_role_arn
}
output "task_execution_role_name" {
description = "The name of the execution service role."
value = module.fargate.task_execution_role_name
}
output "service_arn" {
description = "The Amazon Resource Name (ARN) that identifies the service."
value = module.fargate.service_arn
}
output "api_id" {
description = "The id of the API"
value = aws_apigatewayv2_api.main.id
}
output "stage_id" {
description = "The id of the deployed stage"
value = aws_apigatewayv2_stage.main.id
}