This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
iac/terraform/flux/main.tf

21 lines
No EOL
487 B
HCL

data "bitwarden-secrets_secret" "git_flux_password" {
id = "e507c0be-cc1e-4d5b-90a7-b2710067c651"
}
provider "flux" {
kubernetes = {
config_path = "~/.kube/config"
}
git = {
url = "https://git.mafyuh.dev/mafyuh/iac"
http = {
username = "mafyuh"
password = data.bitwarden-secrets_secret.git_flux_password.value
}
}
}
resource "flux_bootstrap_git" "flux" {
path = "kubernetes/cluster/production"
version = "v2.5.0"
}