11 lines
319 B
Terraform
11 lines
319 B
Terraform
|
|
# Child modules must declare required_providers for non-hashicorp providers, or
|
||
|
|
# Terraform infers `hashicorp/proxmox` (which does not exist). The root env pins the
|
||
|
|
# version; the module only maps the local name to the source.
|
||
|
|
terraform {
|
||
|
|
required_providers {
|
||
|
|
proxmox = {
|
||
|
|
source = "bpg/proxmox"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|