11 lines
183 B
HCL
Executable File
11 lines
183 B
HCL
Executable File
provider "proxmox" {
|
|
endpoint = var.pm_api_url
|
|
api_token = var.pm_api_token
|
|
insecure = true
|
|
|
|
ssh {
|
|
username = var.pm_user
|
|
password = var.pm_password
|
|
}
|
|
}
|