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:
@@ -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"
|
|
||||||
}
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
resource "exec" "exec1" {
|
|
||||||
cmd = "cat /tmp/mgmt-hello-world"
|
|
||||||
state = "present"
|
|
||||||
}
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
resource "file" "file1" {
|
|
||||||
path = "/tmp/mgmt-hello-world"
|
|
||||||
content = "${exec.sleep.Output}"
|
|
||||||
state = "exists"
|
|
||||||
}
|
|
||||||
|
|
||||||
resource "exec" "sleep" {
|
|
||||||
cmd = "echo hello"
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user