OpenTofu/variables.tf

13 lines
501 B
Terraform
Raw Normal View History

2025-09-30 09:06:27 +00:00
variable "pm_api_url" {}
variable "pm_api_token_id" {}
variable "pm_api_token_secret" {}
2025-09-30 14:00:17 +00:00
variable "target_node" { default = "nexus" }
2025-09-30 09:06:27 +00:00
variable "name" { default = "otf-vm-1" }
variable "vmid" { default = 101 }
2025-09-30 14:00:17 +00:00
variable "clone_template" { default = "cloud-init-ubuntu" }
2025-09-30 09:06:27 +00:00
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" }