Add cert-manager

This commit is contained in:
2024-03-17 13:01:08 +01:00
parent 9bb0b53a0b
commit 32f2087cea
8 changed files with 150 additions and 1 deletions

View File

@@ -63,6 +63,15 @@ module "nlb" {
depends_on = [ module.oke ]
}
module "cert-manager" {
compartment_ocid = var.compartment_ocid
cluster_ocid = module.oke.cluster_ocid
count = var.install_cert_manager ? 1 : 0
source = "./certmanager"
depends_on = [ module.oke ]
}
module "argocd" {
compartment_ocid = var.compartment_ocid
cluster_ocid = module.oke.cluster_ocid