Adding rocky linux 9

main
Jaromir Rivera 2023-10-30 14:37:56 -04:00
parent c4173509e2
commit be67b411f4
2 changed files with 19 additions and 1 deletions

3
.gitignore vendored
View File

@ -1,6 +1,7 @@
# ---> Packer
credentials.auto.tfvars
template-credential.pkr.hcl
credentials.pkr.hcl
template-credentials.pkr.hcl
# Cache objects
packer_cache/

View File

@ -0,0 +1,17 @@
# Rocky Linux 9 Server
# ---
# Packer Template to create an Rocky Linux 9 Server on Proxmox
# Variable Definitions
variable "proxmox_api_url" {
type = string
}
variable "proxmox_api_token_id" {
type = string
}
variable "proxmox_api_token_secret" {
type = string
sensitive = true
}