mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
13 lines
168 B
HCL
13 lines
168 B
HCL
variable "foo" {}
|
|
|
|
variable "bar" {}
|
|
|
|
resource "aws_instance" "foo" {
|
|
ami = "${var.foo}"
|
|
instance = "${var.bar}"
|
|
|
|
lifecycle {
|
|
ignore_changes = all
|
|
}
|
|
}
|