mirror of
https://github.com/outbackdingo/terraform-libvirt-talos.git
synced 2026-01-27 10:20:31 +00:00
44 lines
1.2 KiB
HCL
44 lines
1.2 KiB
HCL
# see https://github.com/hashicorp/terraform
|
|
terraform {
|
|
required_version = "1.12.2"
|
|
required_providers {
|
|
# see https://registry.terraform.io/providers/hashicorp/random
|
|
# see https://github.com/hashicorp/terraform-provider-random
|
|
random = {
|
|
source = "hashicorp/random"
|
|
version = "3.7.2"
|
|
}
|
|
# see https://registry.terraform.io/providers/dmacvicar/libvirt
|
|
# see https://github.com/dmacvicar/terraform-provider-libvirt
|
|
libvirt = {
|
|
source = "dmacvicar/libvirt"
|
|
version = "0.8.3"
|
|
}
|
|
# see https://registry.terraform.io/providers/siderolabs/talos
|
|
# see https://github.com/siderolabs/terraform-provider-talos
|
|
talos = {
|
|
source = "siderolabs/talos"
|
|
version = "0.8.1"
|
|
}
|
|
# see https://registry.terraform.io/providers/hashicorp/helm
|
|
# see https://github.com/hashicorp/terraform-provider-helm
|
|
helm = {
|
|
source = "hashicorp/helm"
|
|
version = "3.0.2"
|
|
}
|
|
# see https://registry.terraform.io/providers/rgl/kustomizer
|
|
# see https://github.com/rgl/terraform-provider-kustomizer
|
|
kustomizer = {
|
|
source = "rgl/kustomizer"
|
|
version = "0.0.2"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "libvirt" {
|
|
uri = "qemu:///system"
|
|
}
|
|
|
|
provider "talos" {
|
|
}
|