mirror of
https://github.com/bpg/terraform-provider-proxmox.git
synced 2025-07-01 11:02:59 +00:00
* feat: migrate `version` datasource to tf framework * set up documentation generator * add generated docs for network resources * fix test mux server, add import examples to network resources * fix network tests * fix shell examples
18 lines
301 B
HCL
18 lines
301 B
HCL
terraform {
|
|
required_providers {
|
|
datadog = {
|
|
source = "bpg/proxmox"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "proxmox" {
|
|
endpoint = var.virtual_environment_endpoint
|
|
username = var.virtual_environment_username
|
|
password = var.virtual_environment_password
|
|
insecure = true
|
|
ssh {
|
|
agent = true
|
|
}
|
|
}
|