diff --git a/terraform/backend.tf b/terraform/backend.tf index 80d5841..81d8d16 100644 --- a/terraform/backend.tf +++ b/terraform/backend.tf @@ -1,7 +1,7 @@ terraform { backend "s3" { bucket = "terraform" - key = "template/terraform.tfstate" + key = "n8n/terraform.tfstate" access_key = "GK242d456c0692a9d4cc102206" secret_key = "1d7e22b7a8892cb11b569017659aa511b37b53287c4d1699c310d9f8ac76df09" region = "garage" diff --git a/terraform/modules/proxmox_ubuntu_cloudinit_template/providers.tf b/terraform/modules/proxmox_ubuntu_cloudinit_template/providers.tf new file mode 100644 index 0000000..e1b697d --- /dev/null +++ b/terraform/modules/proxmox_ubuntu_cloudinit_template/providers.tf @@ -0,0 +1,13 @@ +terraform { + required_providers { + proxmox = { + source = "bpg/proxmox" + version = "0.106.0" + #url = https://registry.terraform.io/providers/bpg/proxmox/latest/docs/guides/clone-vm + }, + aws = { + source = "hashicorp/aws" + version = "6.38.0" + } + } +}