mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-12 16:36:18 -06:00
16 lines
292 B
HCL
16 lines
292 B
HCL
output "security_group" {
|
|
value = "${aws_security_group.default.id}"
|
|
}
|
|
|
|
output "launch_configuration" {
|
|
value = "${aws_launch_configuration.web-lc.id}"
|
|
}
|
|
|
|
output "asg_name" {
|
|
value = "${aws_autoscaling_group.web-asg.id}"
|
|
}
|
|
|
|
output "elb_name" {
|
|
value = "${aws_elb.web-elb.dns_name}"
|
|
}
|