Files
coder/provisioner/terraform/testdata/resources/calling-module/module/module.tf
T
2025-03-24 16:34:56 +02:00

16 lines
211 B
Terraform

variable "script" {
type = string
}
data "null_data_source" "script" {
inputs = {
script = var.script
}
}
resource "null_resource" "example" {
depends_on = [
data.null_data_source.script
]
}