mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-20 11:48:24 -06:00
10 lines
170 B
HCL
10 lines
170 B
HCL
resource "aws_instance" "web" {
|
|
lifecycle {
|
|
create_before_destroy = true
|
|
}
|
|
}
|
|
|
|
resource "aws_load_balancer" "lb" {
|
|
member = "${aws_instance.web.id}"
|
|
}
|