mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-20 11:48:24 -06:00
13 lines
180 B
HCL
13 lines
180 B
HCL
variable "foo" {}
|
|
|
|
variable "bar" {}
|
|
|
|
resource "aws_instance" "foo" {
|
|
ami = "${var.foo}"
|
|
instance_type = "${var.bar}"
|
|
|
|
lifecycle {
|
|
ignore_changes = ["*"]
|
|
}
|
|
}
|