mirror of
https://github.com/khuedoan/homelab.git
synced 2024-12-23 01:14:38 +07:00
043329c5e6
For charts that requires external resources
30 lines
483 B
HCL
30 lines
483 B
HCL
terraform {
|
|
required_version = "~> 1.0.0"
|
|
|
|
backend "remote" {
|
|
hostname = "app.terraform.io"
|
|
organization = "khuedoan"
|
|
|
|
workspaces {
|
|
name = "homelab-external"
|
|
}
|
|
}
|
|
|
|
required_providers {
|
|
cloudflare = {
|
|
source = "cloudflare/cloudflare"
|
|
version = "~> 3.4.0"
|
|
}
|
|
|
|
b2 = {
|
|
source = "Backblaze/b2"
|
|
version = "~> 0.7.0"
|
|
}
|
|
|
|
kubernetes = {
|
|
source = "hashicorp/kubernetes"
|
|
version = "~> 2.7.0"
|
|
}
|
|
}
|
|
}
|