-
Notifications
You must be signed in to change notification settings - Fork 8
/
providers.tf
55 lines (53 loc) · 1.52 KB
/
providers.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# see https://github.com/hashicorp/terraform
terraform {
required_version = "1.9.5"
required_providers {
# see https://registry.terraform.io/providers/hashicorp/random
# see https://github.com/hashicorp/terraform-provider-random
random = {
source = "hashicorp/random"
version = "3.6.2"
}
# see https://registry.terraform.io/providers/hashicorp/cloudinit
# see https://github.com/hashicorp/terraform-provider-cloudinit
cloudinit = {
source = "hashicorp/cloudinit"
version = "2.3.4"
}
# see https://registry.terraform.io/providers/bpg/proxmox
# see https://github.com/bpg/terraform-provider-proxmox
proxmox = {
source = "bpg/proxmox"
version = "0.64.0"
}
# see https://registry.terraform.io/providers/siderolabs/talos
# see https://github.com/siderolabs/terraform-provider-talos
talos = {
source = "siderolabs/talos"
version = "0.5.0"
}
# see https://registry.terraform.io/providers/hashicorp/helm
# see https://github.com/hashicorp/terraform-provider-helm
helm = {
source = "hashicorp/helm"
version = "2.15.0"
}
# see https://registry.terraform.io/providers/rgl/kustomizer
# see https://github.com/rgl/terraform-provider-kustomizer
kustomizer = {
source = "rgl/kustomizer"
version = "0.0.1"
}
}
}
provider "proxmox" {
tmp_dir = "tmp"
ssh {
node {
name = var.proxmox_pve_node_name
address = var.proxmox_pve_node_address
}
}
}
provider "talos" {
}