Kasper Juul Hermansen c3ce67abbb
Some checks reported errors
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/pr Build encountered an error
Update Terraform flux to v1.2.3
2024-02-05 16:35:58 +00:00

31 lines
426 B
HCL

terraform {
required_providers {
flux = {
source = "fluxcd/flux"
version = "1.2.3"
}
kubectl = {
source = "gavinbunney/kubectl"
version = ">= 1.7.0"
}
kubernetes = {
source = "hashicorp/kubernetes"
version = ">= 2.0.2"
}
}
}
provider "flux" {
# Configuration options
}
provider "kubectl" {
}
provider "kubernetes" {
config_path = "~/.kube/config"
}