mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-08 23:23:59 -06:00
c6beaa7ce8
Signed-off-by: Valentin Pichard <valentin.pichard@corp.ovh.com>
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}"
|
|
}
|