examples: Remove old hcl examples

The hcl frontend was removed a while back. Might as well remove these
examples too.
This commit is contained in:
James Shubin
2019-02-24 13:16:05 -05:00
parent ae7ebeedd1
commit 5e38c1c8fe
3 changed files with 0 additions and 27 deletions

View File

@@ -1,14 +0,0 @@
resource "file" "file1" {
path = "/tmp/mgmt-hello-world"
content = "hello, world"
state = "exists"
depends_on = ["noop.noop1", "exec.sleep"]
}
resource "noop" "noop1" {
test = "nil"
}
resource "exec" "sleep" {
cmd = "sleep 10s"
}

View File

@@ -1,4 +0,0 @@
resource "exec" "exec1" {
cmd = "cat /tmp/mgmt-hello-world"
state = "present"
}

View File

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