-
Notifications
You must be signed in to change notification settings - Fork 8
/
providers.tf
43 lines (41 loc) · 1.21 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
# see https://github.com/hashicorp/terraform
terraform {
required_version = "1.9.8"
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.3"
}
# see https://registry.terraform.io/providers/dmacvicar/libvirt
# see https://github.com/dmacvicar/terraform-provider-libvirt
libvirt = {
source = "dmacvicar/libvirt"
version = "0.8.1"
}
# see https://registry.terraform.io/providers/siderolabs/talos
# see https://github.com/siderolabs/terraform-provider-talos
talos = {
source = "siderolabs/talos"
version = "0.6.1"
}
# see https://registry.terraform.io/providers/hashicorp/helm
# see https://github.com/hashicorp/terraform-provider-helm
helm = {
source = "hashicorp/helm"
version = "2.16.1"
}
# 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 "libvirt" {
uri = "qemu:///system"
}
provider "talos" {
}