Files
audiobookshelf/terraform/providers.tf

33 lines
723 B
Terraform
Raw Permalink Normal View History

2026-06-17 13:52:04 +00:00
terraform {
required_providers {
proxmox = {
source = "bpg/proxmox"
version = "0.106.0"
2026-06-19 08:47:47 +01:00
#url = https://registry.terraform.io/providers/bpg/proxmox/latest/docs/guides/clone-vm
2026-06-17 13:52:04 +00:00
}
aws = {
source = "hashicorp/aws"
version = "6.38.0"
}
}
}
provider "proxmox" {
endpoint = var.pm_api_url
api_token = var.pm_api_token
2026-06-19 08:47:47 +01:00
insecure = true
2026-06-17 13:52:04 +00:00
# === FIX THIS ===
ssh {
agent = true
username = "root"
password = "Ishimaru17"
}
}
provider "aws" {
region = "garage"
2026-06-19 08:47:47 +01:00
access_key = "GK242d456c0692a9d4cc102206"
2026-06-17 13:52:04 +00:00
secret_key = "1d7e22b7a8892cb11b569017659aa511b37b53287c4d1699c310d9f8ac76df09"
2026-06-19 08:47:47 +01:00
# shared_credentials_files = ["$HOME/.aws/credentials"]
2026-06-17 13:52:04 +00:00
}