provision image through Terraform

This commit is contained in:
2025-04-22 14:12:07 +02:00
parent 2304a5f7c7
commit a783782187
11 changed files with 103 additions and 116 deletions

13
variables.tf Normal file
View File

@@ -0,0 +1,13 @@
variable "packer_image" {
type = string
default = "mkaczanowski/packer-builder-arm:latest"
}
variable "packer_config" {
type = string
}
variable "provisioning_scripts" {
type = list(string)
default = []
}