mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-06 14:13:16 -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}"
|
|
}
|