mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-06-30 10:33:46 +00:00
* chore: add agent configuration bool * feat: add ssh-agent authentication mechanism for linux * chore: make sure ssh-agent auth is only executed on linux * chore: add ssh user override * chore: add ssh configuration block, check ssh config during VirtualEnvironmentClient creation * fix: handle case of empty ssh config block * chore: add ssh password auth fallback logic * fix: remove not needed runtime * fix linter errors & re-format * allow ssh agent on all POSIX systems * add `agent_socket` parameter * update docs and examples --------- Co-authored-by: zoop <zoop@zoop.li> Co-authored-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
10 lines
208 B
HCL
10 lines
208 B
HCL
provider "proxmox" {
|
|
endpoint = var.virtual_environment_endpoint
|
|
username = var.virtual_environment_username
|
|
password = var.virtual_environment_password
|
|
insecure = true
|
|
ssh {
|
|
agent = true
|
|
}
|
|
}
|