mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-16 02:00:51 -05:00
20 lines
263 B
HCL
20 lines
263 B
HCL
variable "ref" {
|
|
default = "foo"
|
|
}
|
|
|
|
resource "foo" "bar" {
|
|
depends_on = ["dep"]
|
|
provider = "foo-west"
|
|
count = 2
|
|
attr = "value"
|
|
ref = "${var.ref}"
|
|
|
|
provisioner "shell" {
|
|
inline = "echo"
|
|
}
|
|
|
|
lifecycle {
|
|
ignore_changes = ["config"]
|
|
}
|
|
}
|