mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-13 19:01:09 -04: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"
|
|
}
|