0
0
mirror of https://github.com/bpg/terraform-provider-proxmox.git synced 2025-06-29 18:21:10 +00:00
terraform-provider-proxmox/example/provider_configuration.tf
2019-12-07 19:58:29 +01:00

24 lines
702 B
HCL

provider "proxmox" {
virtual_environment {
endpoint = "${var.virtual_environment_endpoint}"
username = "${var.virtual_environment_username}"
password = "${var.virtual_environment_password}"
insecure = true
}
}
variable "virtual_environment_endpoint" {
type = "string"
description = "The endpoint for the Proxmox Virtual Environment API (example: https://host:port)"
}
variable "virtual_environment_username" {
type = "string"
description = "The username for the Proxmox Virtual Environment API (example: root@pam)"
}
variable "virtual_environment_password" {
type = "string"
description = "The password for the Proxmox Virtual Environment API"
}