-
-
Notifications
You must be signed in to change notification settings - Fork 351
/
outputs.tf
36 lines (29 loc) · 1.05 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
output "url" {
description = "URL of Atlantis"
value = local.atlantis_url
}
################################################################################
# Load Balancer
################################################################################
output "alb" {
description = "ALB created and all of its associated outputs"
value = module.alb
}
################################################################################
# ECS
################################################################################
output "cluster" {
description = "ECS cluster created and all of its associated outputs"
value = module.ecs_cluster
}
output "service" {
description = "ECS service created and all of its associated outputs"
value = module.ecs_service
}
################################################################################
# EFS
################################################################################
output "efs" {
description = "EFS created and all of its associated outputs"
value = module.efs
}