-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
29 lines (24 loc) · 704 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
output "host" {
value = "${module.tld.hostname}"
description = "DNS hostname"
}
output "name" {
value = "${aws_elastic_beanstalk_environment.default.name}"
description = "Name"
}
output "security_group_id" {
value = "${aws_security_group.default.id}"
description = "Security group id"
}
output "elb_dns_name" {
value = "${aws_elastic_beanstalk_environment.default.cname}"
description = "ELB technical host"
}
output "elb_zone_id" {
value = "${var.alb_zone_id[data.aws_region.default.name]}"
description = "ELB zone id"
}
output "ec2_instance_profile_role_name" {
value = "${aws_iam_role.ec2.name}"
description = "Instance IAM role name"
}