mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-24 07:26:26 -06:00
12 lines
196 B
HCL
12 lines
196 B
HCL
|
|
resource "aws_instance" "web" {
|
|
require_new = "ami-new"
|
|
lifecycle {
|
|
create_before_destroy = true
|
|
}
|
|
}
|
|
|
|
resource "aws_instance" "lb" {
|
|
instance = "${aws_instance.web.id}"
|
|
}
|