mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-15 17:00:40 -05: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}"
|
|
}
|