mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-17 18:24:14 +02:00
29 lines
518 B
HCL
29 lines
518 B
HCL
terraform {
|
|
cloud {
|
|
hostname = "app.terraform.io"
|
|
organization = "onedr0p"
|
|
workspaces {
|
|
name = "arpa-home-storage"
|
|
}
|
|
}
|
|
required_providers {
|
|
kubernetes = {
|
|
source = "hashicorp/kubernetes"
|
|
version = "2.23.0"
|
|
}
|
|
sops = {
|
|
source = "carlpett/sops"
|
|
version = "1.0.0"
|
|
}
|
|
time = {
|
|
source = "hashicorp/time"
|
|
version = "0.9.1"
|
|
}
|
|
}
|
|
required_version = ">= 1.3.0"
|
|
}
|
|
|
|
data "sops_file" "secrets" {
|
|
source_file = "secrets.sops.yaml"
|
|
}
|