provision image through Terraform

This commit is contained in:
2025-04-22 14:09:27 +02:00
parent e7a3587501
commit 2304a5f7c7
9 changed files with 169 additions and 0 deletions

9
examples/raspios/main.tf Normal file
View File

@@ -0,0 +1,9 @@
module "raspios" {
source = "../../"
packer_config = "packer/raspios.pkr.hcl"
provisioning_scripts = [
"scripts/pi.sh",
"scripts/docker.sh",
"scripts/hashi.sh"
]
}