mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-29 18:21:10 +00:00
* feat(file)!: safer snippets upload using SSH input stream * fixes for acceptance tests on windows * enable other OS-es for acceptance tests * update example templates to use api token auth --------- Signed-off-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
10 lines
216 B
HCL
10 lines
216 B
HCL
provider "proxmox" {
|
|
endpoint = var.virtual_environment_endpoint
|
|
api_token = var.virtual_environment_api_token
|
|
insecure = true
|
|
ssh {
|
|
agent = true
|
|
username = var.virtual_environment_ssh_username
|
|
}
|
|
}
|