-
Notifications
You must be signed in to change notification settings - Fork 1
/
output.tf
34 lines (28 loc) · 957 Bytes
/
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
output "eb_instance_profile_role_name" {
value = "${module.elastic_beanstalk_environment.ec2_instance_profile_role_name}"
description = "Instance IAM role name for the EB environment"
}
output "eb_dns_name" {
value = "${module.elastic_beanstalk_environment.elb_dns_name}"
description = "EB technical host"
}
output "eb_zone_id" {
value = "${module.elastic_beanstalk_environment.elb_zone_id}"
description = "EB zone id"
}
output "eb_host" {
value = "${module.elastic_beanstalk_environment.host}"
description = "DNS hostname"
}
output "eb_name" {
value = "${module.elastic_beanstalk_environment.name}"
description = "Name of the EB environment"
}
output "eb_security_group_id" {
value = "${module.elastic_beanstalk_environment.security_group_id}"
description = "EB security group id"
}
output "vpc_id" {
value = "${module.vpc.vpc_id}"
description = "VCP id where metabase resides"
}