15 lines
338 B
HCL
15 lines
338 B
HCL
provider "proxmox" {
|
|
pm_api_url = var.pm_api_url
|
|
pm_user = var.pm_user
|
|
pm_password = var.pm_password
|
|
pm_tls_insecure = true
|
|
}
|
|
|
|
module "vm" {
|
|
source = "./modules/vm"
|
|
|
|
vm_name = var.vm_name
|
|
#vm_template = var.vm_template
|
|
target_node = var.target_node
|
|
ssh_public_key = var.ssh_public_key
|
|
} |