Add flux
This commit is contained in:
30
modules/flux/providers.tf
Normal file
30
modules/flux/providers.tf
Normal file
@@ -0,0 +1,30 @@
|
||||
|
||||
terraform {
|
||||
required_providers {
|
||||
flux = {
|
||||
source = "fluxcd/flux"
|
||||
version = "0.14.1"
|
||||
}
|
||||
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"
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user