mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-05-13 16:00:47 -04:00
10 lines
122 B
HCL
10 lines
122 B
HCL
variable "foo" {}
|
|
|
|
resource "aws_instance" "foo" {
|
|
ami = "${var.foo}"
|
|
|
|
lifecycle {
|
|
ignore_changes = ["ami"]
|
|
}
|
|
}
|