diff --git a/examples/hcl/graph0.hcl b/examples/hcl/graph0.hcl deleted file mode 100644 index a9152178..00000000 --- a/examples/hcl/graph0.hcl +++ /dev/null @@ -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" -} diff --git a/examples/hcl/graph1.hcl b/examples/hcl/graph1.hcl deleted file mode 100644 index f4b5724f..00000000 --- a/examples/hcl/graph1.hcl +++ /dev/null @@ -1,4 +0,0 @@ -resource "exec" "exec1" { - cmd = "cat /tmp/mgmt-hello-world" - state = "present" -} diff --git a/examples/hcl/hil.hcl b/examples/hcl/hil.hcl deleted file mode 100644 index 3b938765..00000000 --- a/examples/hcl/hil.hcl +++ /dev/null @@ -1,9 +0,0 @@ -resource "file" "file1" { - path = "/tmp/mgmt-hello-world" - content = "${exec.sleep.Output}" - state = "exists" -} - -resource "exec" "sleep" { - cmd = "echo hello" -}