mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 17:01:04 -06:00
16 lines
299 B
HCL
16 lines
299 B
HCL
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}"
|
|
}
|