Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/provectus/sak-cert-manager
SAK module with cert-manager
https://github.com/provectus/sak-cert-manager
Last synced: 4 days ago
JSON representation
SAK module with cert-manager
- Host: GitHub
- URL: https://github.com/provectus/sak-cert-manager
- Owner: provectus
- Created: 2021-04-12T16:37:46.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-06-16T07:43:02.000Z (over 1 year ago)
- Last Synced: 2024-03-26T11:17:31.224Z (8 months ago)
- Language: HCL
- Size: 26.4 KB
- Stars: 1
- Watchers: 7
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Swiss Army Kube Cert-manager module
## How it useThis 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](https://github.com/provectus/swiss-army-kube)**
**[Contributing Guide](https://github.com/provectus/swiss-army-kube/blob/master/CONTRIBUTING.md)**
## 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
}
```