providers setup

This commit is contained in:
Stefan Le Breton 2024-11-19 21:45:00 +01:00
parent 7bf72b609f
commit e1128fd67c

36
providers.tf Normal file
View file

@ -0,0 +1,36 @@
terraform {
required_providers {
talos = {
source = "siderolabs/talos"
#version = "0.4.0"
}
hetznerdns = {
source = "timohirt/hetznerdns"
version = "2.2.0"
}
helm = {
source = "hashicorp/helm"
version = "2.16.1"
}
http = { source = "hashicorp/http"
version = "3.4.5"
}
}
}
# Configure the Hetzner Cloud Provider
provider "hcloud" {
token = var.hcloud_token
}
provider "hetznerdns" {
# Configuration options
}
provider "helm" {
# $KUBE_CONFIG_PATH
}
provider "http" {}