mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-24 15:36:26 -06:00
13 lines
289 B
HCL
13 lines
289 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}"
|
|
}
|