Add ArgoCD as an optional module

This commit is contained in:
2024-03-14 17:00:30 +01:00
parent 4f744da328
commit 19da08cb1a
11 changed files with 128 additions and 4 deletions

View File

@@ -62,3 +62,14 @@ module "nlb" {
depends_on = [ module.oke ]
}
module "argocd" {
compartment_ocid = var.compartment_ocid
cluster_ocid = module.oke.cluster_ocid
count = var.install_argocd ? 1 : 0
source = "./argocd"
my_domain = var.my_domain
depends_on = [ module.nlb ]
}