Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 853 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 853 Bytes

Swiss Army Kube Cert-manager module

How it use

This module was created to deploy Certificate Manager within Swiss Army Kube cluster with ease and simplicity. Check out main repo of Swiss Army Kube for more information about the project in general.

Swiss Army Kube

Contributing Guide

Requirements

terraform >= 1.1

Example of how to use

module "cert-manager" {
  depends_on   = [module.argocd]

  source       = "github.com/provectus/sak-cert-manager"
  cluster_name = module.eks.cluster_id
  argocd       = module.argocd.state
  email        = "[email protected]"
  zone_id      = data.aws_route53_zone.this.zone_id
  vpc_id       = module.network.vpc_id
  domains      = local.domain
}