12 lines
181 B
Terraform
12 lines
181 B
Terraform
|
|
variable "proxmox_api_url" {
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "proxmox_api_token_id" {
|
||
|
|
type = string
|
||
|
|
}
|
||
|
|
|
||
|
|
variable "proxmox_api_token_secret" {
|
||
|
|
type = string
|
||
|
|
sensitive = true
|
||
|
|
}
|