mirror of
https://github.com/coder/coder.git
synced 2026-06-04 13:38:21 +00:00
16 lines
211 B
Terraform
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
|
|
]
|
|
}
|