OpenTofu/variables.tf
2025-09-30 17:00:17 +03:00

12 lines
501 B
HCL

variable "pm_api_url" {}
variable "pm_api_token_id" {}
variable "pm_api_token_secret" {}
variable "target_node" { default = "nexus" }
variable "name" { default = "otf-vm-1" }
variable "vmid" { default = 101 }
variable "clone_template" { default = "cloud-init-ubuntu" }
variable "bridge" { default = "vmbr0" }
variable "ci_user" { default = "alex" }
variable "ci_password" { default = "470389" }
variable "ipconfig0" { default = "ip=dhcp" }
variable "ssh_pubkey_path" { default = "~/.ssh/id_rsa.pub" }