You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/examples/aws-ecs-alb/outputs.tf

16 lines
299 B

output "instance_security_group" {
value = "${aws_security_group.instance_sg.id}"
}
output "launch_configuration" {
value = "${aws_launch_configuration.app.id}"
}
output "asg_name" {
value = "${aws_autoscaling_group.app.id}"
}
output "elb_hostname" {
value = "${aws_alb.main.dns_name}"
}