blob: adcfc4b12e0862381e01800c3ef05e87d3855000 (
plain)
1
2
3
4
5
6
7
8
9
|
output "elastic_beanstalk_environment_hostname" {
description = "DNS hostname"
value = module.elastic_beanstalk_environment.cname
}
output "elastic_beanstalk_environment_name" {
description = "Name of the Elastic Beanstalk environment"
value = module.elastic_beanstalk_environment.envName
}
|