-
Notifications
You must be signed in to change notification settings - Fork 17
/
output.tf
56 lines (43 loc) · 1.35 KB
/
output.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
54
55
56
output "region" {
value = "${var.region}"
}
output "film_ratings_vpc_id" {
value = "${aws_vpc.film_ratings_vpc.id}"
}
output "film_ratings_public_sn_01_id" {
value = "${aws_subnet.film_ratings_public_sn_01.id}"
}
output "film_ratings_public_sn_02_id" {
value = "${aws_subnet.film_ratings_public_sn_02.id}"
}
output "film_ratings_public_sg_id" {
value = "${aws_security_group.film_ratings_public_sg.id}"
}
output "ecs-service-role-arn" {
value = "${aws_iam_role.ecs-service-role.arn}"
}
output "ecs-instance-role-name" {
value = "${aws_iam_role.ecs-instance-role.name}"
}
output "app-alb-load-balancer-name" {
value = "${aws_alb.film_ratings_alb_load_balancer.name}"
}
output "app-alb-load-balancer-dns-name" {
value = "${aws_alb.film_ratings_alb_load_balancer.dns_name}"
}
output "nw-lb-load-balancer-dns-name" {
value = "${aws_lb.film_ratings_nw_load_balancer.dns_name}"
}
output "nw-lb-load-balancer-name" {
value = "${aws_lb.film_ratings_nw_load_balancer.name}"
}
output "film-ratings-app-target-group-arn" {
value = "${aws_alb_target_group.film_ratings_app_target_group.arn}"
}
output "film-ratings-db-target-group-arn" {
value = "${aws_lb_target_group.film_ratings_db_target_group.arn}"
}
output "mount-target-dns" {
description = "Address of the mount target provisioned"
value = "${aws_efs_mount_target.filmdbefs-mnt.0.dns_name}"
}