mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-17 20:22:58 -06:00
aa6a758f6b
/cc @pearkes - Here is that validation
8 lines
105 B
HCL
8 lines
105 B
HCL
resource "aws_instance" "web" {
|
|
count = 5
|
|
}
|
|
|
|
output "ip" {
|
|
value = "${aws_instance.web.id}"
|
|
}
|