You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Terraform AWS Classic Load Balancer (ELB-CLB) Outputs
output "elb_id" {
description = "The name of the ELB"
value = module.elb.elb_id
}
output "elb_name" {
description = "The name of the ELB"
value = module.elb.elb_name
}
output "elb_dns_name" {
description = "The DNS name of the ELB"
value = module.elb.elb_dns_name
}
output "elb_instances" {
description = "The list of instances in the ELB (if may be outdated, because instances are attached using elb_attachment resource)"
value = module.elb.elb_instances
}
output "elb_source_security_group_id" {
description = "The ID of the security group that you can use as part of your inbound rules for your load balancer's back-end application instances"
value = module.elb.elb_source_security_group_id
}
output "elb_zone_id" {
description = "The canonical hosted zone ID of the ELB (to be used in a Route 53 Alias record)"
value = module.elb.elb_zone_id
}