13 lines
189 B
HCL
13 lines
189 B
HCL
provider "proxmox" {
|
|
endpoint = var.proxmox_endpoint
|
|
username = "root@pam"
|
|
password = var.proxmox_password
|
|
insecure = true
|
|
|
|
ssh {
|
|
agent = true
|
|
username = "root"
|
|
}
|
|
}
|
|
|