mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-23 23:50:12 -06:00
12 lines
135 B
HCL
12 lines
135 B
HCL
variable "foo" {
|
|
sensitive = true
|
|
}
|
|
|
|
resource "aws_instance" "foo" {
|
|
ami = var.foo
|
|
|
|
lifecycle {
|
|
ignore_changes = [ami]
|
|
}
|
|
}
|