Implement bridges and fillout readme with current state
This commit is contained in:
7
environments/nonprod/providers.tf
Normal file
7
environments/nonprod/providers.tf
Normal file
@@ -0,0 +1,7 @@
|
||||
provider "proxmox" {
|
||||
endpoint = var.proxmox_endpoint
|
||||
api_token = var.proxmox_api_token
|
||||
|
||||
# Set to true if using a self-signed certificate (common on home labs)
|
||||
insecure = var.proxmox_insecure
|
||||
}
|
||||
10
environments/nonprod/terraform.tf
Normal file
10
environments/nonprod/terraform.tf
Normal file
@@ -0,0 +1,10 @@
|
||||
terraform {
|
||||
required_version = ">= 1.0"
|
||||
|
||||
required_providers {
|
||||
proxmox = {
|
||||
source = "bpg/proxmox"
|
||||
version = "~> 0.73"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user