You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/hcl2template/testdata/datasources/recursive.pkr.hcl

28 lines
417 B

data "null" "foo" {
input = "chocolate"
}
data "null" "yummy" {
input = "${data.null.bang.output}-and-sprinkles"
}
data "null" "bar" {
input = "vanilla"
}
data "null" "baz" {
input = "${data.null.foo.output}-${data.null.bar.output}-swirl"
}
data "null" "bang" {
input = "${data.null.baz.output}-with-marshmallows"
}
source "null" "test" {
communicator = "none"
}
build {
sources = ["null.test"]
}