providers setup
This commit is contained in:
parent
7bf72b609f
commit
e1128fd67c
1 changed files with 36 additions and 0 deletions
36
providers.tf
Normal file
36
providers.tf
Normal 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" {}
|
||||||
Loading…
Add table
Reference in a new issue