mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-27 09:21:14 -06:00
16 lines
299 B
Terraform
16 lines
299 B
Terraform
|
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}"
|
||
|
}
|