{"id":20757624,"url":"https://github.com/dodevops/terraform-azure-certmanager","last_synced_at":"2026-03-09T12:38:10.104Z","repository":{"id":40302884,"uuid":"415990775","full_name":"dodevops/terraform-azure-certmanager","owner":"dodevops","description":"Highly opinionated Terraform management of cert manager on Azure Kubernetes Service (AKS)","archived":false,"fork":false,"pushed_at":"2025-07-10T07:02:16.000Z","size":11,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-03-02T02:41:52.874Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dodevops.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-10-11T15:45:28.000Z","updated_at":"2025-07-10T07:01:07.000Z","dependencies_parsed_at":"2022-08-09T16:54:45.422Z","dependency_job_id":null,"html_url":"https://github.com/dodevops/terraform-azure-certmanager","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/dodevops/terraform-azure-certmanager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodevops%2Fterraform-azure-certmanager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodevops%2Fterraform-azure-certmanager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodevops%2Fterraform-azure-certmanager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodevops%2Fterraform-azure-certmanager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dodevops","download_url":"https://codeload.github.com/dodevops/terraform-azure-certmanager/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dodevops%2Fterraform-azure-certmanager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30295554,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T11:12:22.024Z","status":"ssl_error","status_checked_at":"2026-03-09T11:10:54.577Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-17T09:43:25.984Z","updated_at":"2026-03-09T12:38:10.064Z","avatar_url":"https://github.com/dodevops.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Terraform management of cert-manager on AKS\n\n## Introduction\n\nThis module manages cert-manager on AKS (Azure Kubernetes Service)\n\n## Usage\n\nInstantiate the module by calling it from Terraform like this:\n\n```hcl\nmodule \"azure-basics\" {\n  source  = \"dodevops/certmanager/azure\"\n  version = \"\u003cversion\u003e\"\n}\n```\n\n\u003c!-- BEGIN_TF_DOCS --\u003e\n## Requirements\n\nThe following requirements are needed by this module:\n\n- helm (\u003e= 2.4.1)\n\n## Providers\n\nThe following providers are used by this module:\n\n- helm (\u003e= 2.4.1)\n\n- kubernetes\n\n## Modules\n\nNo modules.\n\n## Resources\n\nThe following resources are used by this module:\n\n- [helm_release.cert-manager](https://registry.terraform.io/providers/hashicorp/helm/latest/docs/resources/release) (resource)\n- [helm_release.cert-manager-issuers](https://registry.terraform.io/providers/hashicorp/helm/latest/docs/resources/release) (resource)\n- [kubernetes_namespace.cert-manager](https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs/resources/namespace) (resource)\n\n## Required Inputs\n\nNo required inputs.\n\n## Optional Inputs\n\nThe following input variables are optional (have default values):\n\n### cert-manager-issuers-version\n\nDescription: Version of the Cert-Manager-issuers helm chart to use\n\nType: `string`\n\nDefault: `\"0.2.2\"`\n\n### cert-manager-version\n\nDescription: Version of the Cert-Manager helm chart to use\n\nType: `string`\n\nDefault: `\"v1.5.4\"`\n\n### cluster-issuers-yaml\n\nDescription: The YAML code to define cluster issuers for cert-manager. Example: https://github.com/adfinis-sygroup/helm-charts/blob/master/charts/cert-manager-issuers/examples/letsencrypt-clusterissuers.yaml\n\nType: `string`\n\nDefault: `\"\"`\n\n### issuers-yaml\n\nDescription: The YAML code to define issuers for cert-manager. Example: https://github.com/adfinis-sygroup/helm-charts/blob/master/charts/cert-manager-issuers/examples/disable-issuers.yaml\n\nType: `string`\n\nDefault: `\"\"`\n\n### set-list\n\nDescription: A list of additional settings to apply to the helm chart using the terraform `set{}` parameter. Example:\n```\n  set-list = [\n    {\n      \"name\"  = \"prometheus.enabled\",\n      \"value\" = \"false\",\n      \"type\"  = \"auto\"\n    },\n  ]\n```\n\nType:\n\n```hcl\nlist(object({\n    name  = string,\n    value = string,\n    type  = string,\n  }))\n```\n\nDefault: `[]`\n\n### values\n\nDescription: A list of additional values to apply to the helm chart using the  'values = [...]' parameter. Example:\n```\n  values = [\n    \"\u003cyaml\u003e\",\n  ]\n```\n\nType: `list(string)`\n\nDefault: `[]`\n\n## Outputs\n\nNo outputs.\n\u003c!-- END_TF_DOCS --\u003e\n\n## Development\n\nUse [terraform-docs](https://terraform-docs.io/) to generate the API documentation by running\n\n    terraform fmt .\n    terraform-docs .\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdodevops%2Fterraform-azure-certmanager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdodevops%2Fterraform-azure-certmanager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdodevops%2Fterraform-azure-certmanager/lists"}