mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-07-02 03:22:59 +00:00
refactor(provider): Allow specifying attributes outside of virtual_environment block Also deprecate virtual_environment block, update docs and examples. Fixes #117 Apparently CDKTF skips schemas without attributes, it has been fixed but it is available only in prerelease currently (https://github.com/hashicorp/terraform-cdk/pull/2736) Release-As: 0.17.0
7 lines
179 B
HCL
7 lines
179 B
HCL
provider "proxmox" {
|
|
endpoint = var.virtual_environment_endpoint
|
|
username = var.virtual_environment_username
|
|
password = var.virtual_environment_password
|
|
insecure = true
|
|
}
|