From 5e38c1c8feed10cd834715af312a84a99f0f7ef1 Mon Sep 17 00:00:00 2001 From: James Shubin Date: Sun, 24 Feb 2019 13:16:05 -0500 Subject: [PATCH] examples: Remove old hcl examples The hcl frontend was removed a while back. Might as well remove these examples too. --- examples/hcl/graph0.hcl | 14 -------------- examples/hcl/graph1.hcl | 4 ---- examples/hcl/hil.hcl | 9 --------- 3 files changed, 27 deletions(-) delete mode 100644 examples/hcl/graph0.hcl delete mode 100644 examples/hcl/graph1.hcl delete mode 100644 examples/hcl/hil.hcl 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" -}