Files
mgmt/examples/hil.hcl
2017-06-15 22:53:55 -07:00

10 lines
164 B
HCL

resource "file" "file1" {
path = "/tmp/mgmt-hello-world"
content = "${exec.sleep.Output}"
state = "exists"
}
resource "exec" "sleep" {
cmd = "echo hello"
}