mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
11 lines
178 B
HCL
11 lines
178 B
HCL
resource "aws_instance" "web" {
|
|
require_new = "ami-new"
|
|
lifecycle {
|
|
create_before_destroy = true
|
|
}
|
|
}
|
|
|
|
resource "aws_instance" "lb" {
|
|
instance = aws_instance.web.id
|
|
}
|