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/packer_test/dag_tests/templates/mixed_data_local.pkr.hcl

24 lines
272 B

data "null" "head" {
input = "foo"
}
locals {
loc = "${data.null.head.output}"
}
data "null" "tail" {
input = "${local.loc}"
}
locals {
last = "final - ${data.null.tail.output}"
}
source "null" "test" {
communicator = "none"
}
build {
sources = ["null.test"]
}