-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathargocd.tf
19 lines (17 loc) · 1.11 KB
/
argocd.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module "argocd" {
source = "git@github.com:steled/terraformmodules.git//argocd?ref=v0.14"
# source = "../terraformmodules/argocd/"
# renovate: datasource=github-tags depName=argocd packageName=argoproj/argo-helm
argocd_version = "7.8.2" # check version here: https://github.com/argoproj/argo-helm/blob/main/charts/argo-cd/Chart.yaml#L6
# renovate: datasource=github-tags depName=argocd-apps packageName=argoproj/argo-helm
argocd_apps_version = "2.0.2" # check version here: https://github.com/argoproj/argo-helm/blob/main/charts/argocd-apps/Chart.yaml#L5
kubernetes_namespace_name = "argocd"
domain = var.argocd_domain_prd
environment = var.argocd_env_prd
argocd_values_yaml = "${path.root}/helm-values/argocd.yaml"
argocd_apps_values_yaml = "${path.root}/helm-values/argocd_apps.yaml"
telegram_bot_token = var.telegram_bot_token
argocd_accounts_steled_password = var.argocd_accounts_steled_password
argocd_apps_sshPrivateKey = var.argocd_apps_sshPrivateKey
depends_on = [module.cert_manager_cloudflare]
}