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/provisioner_tests/hcp-sbom/templates/source_is_dir.pkr.hcl

22 lines
302 B

packer {
required_plugins {
docker = {
version = ">= 1.0.0"
source = "github.com/hashicorp/docker"
}
}
}
source "docker" "ubuntu" {
image = "ubuntu:20.04"
commit = true
}
build {
sources = ["source.docker.ubuntu"]
provisioner "hcp-sbom" {
source = "/tmp"
}
}