mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-27 02:00:08 -04:00
8 lines
98 B
HCL
8 lines
98 B
HCL
resource "aws_instance" "web" {
|
|
count = 5
|
|
}
|
|
|
|
output "ip" {
|
|
value = "${aws_instance.web.id}"
|
|
}
|