mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
38 lines
676 B
HCL
38 lines
676 B
HCL
variable "proxmox_reisen_endpoint" {
|
|
type = string
|
|
}
|
|
|
|
variable "proxmox_reisen_username" {
|
|
type = string
|
|
}
|
|
|
|
variable "proxmox_reisen_password" {
|
|
type = string
|
|
}
|
|
|
|
variable "proxmox_reisen_ssh_username" {
|
|
type = string
|
|
}
|
|
|
|
variable "proxmox_reisen_ssh_host" {
|
|
type = string
|
|
}
|
|
|
|
variable "proxmox_reisen_ssh_port" {
|
|
type = number
|
|
}
|
|
|
|
provider "proxmox" {
|
|
endpoint = var.proxmox_reisen_endpoint
|
|
username = var.proxmox_reisen_username
|
|
password = var.proxmox_reisen_password
|
|
|
|
ssh {
|
|
username = var.proxmox_reisen_ssh_username
|
|
node {
|
|
name = "reisen"
|
|
address = var.proxmox_reisen_ssh_host
|
|
port = var.proxmox_reisen_ssh_port
|
|
}
|
|
}
|
|
}
|