mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-27 09:21:14 -06:00
18 lines
255 B
HCL
18 lines
255 B
HCL
resource "aws_instance" "web" {
|
|
ami = "foo"
|
|
lifecycle {
|
|
ignore_changes = ["ami"]
|
|
}
|
|
}
|
|
|
|
resource "aws_instance" "bar" {
|
|
ami = "foo"
|
|
lifecycle {
|
|
ignore_changes = []
|
|
}
|
|
}
|
|
|
|
resource "aws_instance" "baz" {
|
|
ami = "foo"
|
|
}
|