initial commit
This commit is contained in:
24
terraform/variables.tf
Normal file
24
terraform/variables.tf
Normal file
@@ -0,0 +1,24 @@
|
||||
variable "proxmox_endpoint" {
|
||||
description = "Proxmox API endpoint URL"
|
||||
}
|
||||
|
||||
variable "proxmox_api_token" {
|
||||
description = "Proxmox API token (user@realm!tokenid=secret)"
|
||||
sensitive = true
|
||||
}
|
||||
|
||||
variable "proxmox_node" {
|
||||
default = "proxmox03"
|
||||
}
|
||||
|
||||
variable "proxmox_pool" {
|
||||
default = "IaC"
|
||||
}
|
||||
|
||||
variable "gateway" {
|
||||
default = "192.168.1.1"
|
||||
}
|
||||
|
||||
variable "dns_server" {
|
||||
default = "192.168.1.1"
|
||||
}
|
||||
Reference in New Issue
Block a user