47 lines
746 B
HCL
47 lines
746 B
HCL
variable "proxmox_api_endpoint" {
|
|
type = string
|
|
description = "Proxmox cluster API endpoint"
|
|
}
|
|
|
|
variable "proxmox_api_token" {
|
|
type = string
|
|
description = "Proxmox API token bpg proxmox provider with ID and token"
|
|
}
|
|
|
|
variable "gateway" {
|
|
type = string
|
|
}
|
|
|
|
variable "s3_backend_endpoint" {
|
|
type = string
|
|
# example = "http://s3.local"
|
|
}
|
|
|
|
variable "s3_access_key" {
|
|
type = string
|
|
}
|
|
|
|
variable "s3_secret_key" {
|
|
type = string
|
|
}
|
|
|
|
variable "proxmox_image_storage" {
|
|
type = string
|
|
# example = "local-lvm"
|
|
}
|
|
|
|
variable "proxmox_vm_storage" {
|
|
type = string
|
|
# example = "local-lvm"
|
|
}
|
|
|
|
variable "username" {
|
|
type = string
|
|
# example = "tony"
|
|
}
|
|
|
|
variable "ssh_import_id" {
|
|
type = string
|
|
# example = "gh:tonyd33"
|
|
}
|