mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-09 23:25:33 -06:00
8 lines
138 B
HCL
8 lines
138 B
HCL
resource "aws_instance" "web" {
|
|
count = 3
|
|
}
|
|
|
|
resource "aws_load_balancer" "weblb" {
|
|
members = "${aws_instance.web.*.id}"
|
|
}
|