add terraform project
This commit is contained in:
26
terraform/versions.tf
Normal file
26
terraform/versions.tf
Normal file
@@ -0,0 +1,26 @@
|
||||
terraform {
|
||||
required_providers {
|
||||
talos = {
|
||||
source = "siderolabs/talos"
|
||||
version = "0.9.0"
|
||||
}
|
||||
proxmox = {
|
||||
source = "bpg/proxmox"
|
||||
version = "~> 0.69"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
provider "talos" {}
|
||||
|
||||
provider "proxmox" {
|
||||
endpoint = var.proxmox_endpoint
|
||||
username = var.proxmox_username
|
||||
password = var.proxmox_password
|
||||
insecure = var.proxmox_insecure
|
||||
|
||||
ssh {
|
||||
agent = true
|
||||
username = var.proxmox_ssh_user
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user