{"id":20017120,"url":"https://github.com/blackbird-cloud/terraform-aws-eks-helm-release","last_synced_at":"2026-05-14T02:33:24.588Z","repository":{"id":178920725,"uuid":"662553182","full_name":"blackbird-cloud/terraform-aws-eks-helm-release","owner":"blackbird-cloud","description":"Terraform module to assist in deploying Helm releases on your AWS EKS cluster.","archived":false,"fork":false,"pushed_at":"2025-01-31T14:08:52.000Z","size":26,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-31T14:32:31.143Z","etag":null,"topics":["aws","eks","helm","terraform"],"latest_commit_sha":null,"homepage":"","language":"HCL","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/blackbird-cloud.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-07-05T11:33:21.000Z","updated_at":"2024-09-19T14:23:52.000Z","dependencies_parsed_at":null,"dependency_job_id":"631a3b82-0243-49f0-9bbc-becfc3486c51","html_url":"https://github.com/blackbird-cloud/terraform-aws-eks-helm-release","commit_stats":null,"previous_names":["blackbird-cloud/terraform-aws-eks-helm-release"],"tags_count":6,"template":false,"template_full_name":"blackbird-cloud/terraform-module-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackbird-cloud%2Fterraform-aws-eks-helm-release","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackbird-cloud%2Fterraform-aws-eks-helm-release/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackbird-cloud%2Fterraform-aws-eks-helm-release/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blackbird-cloud%2Fterraform-aws-eks-helm-release/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blackbird-cloud","download_url":"https://codeload.github.com/blackbird-cloud/terraform-aws-eks-helm-release/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241451677,"owners_count":19964901,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["aws","eks","helm","terraform"],"created_at":"2024-11-13T08:14:30.454Z","updated_at":"2026-05-14T02:33:19.568Z","avatar_url":"https://github.com/blackbird-cloud.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!-- BEGIN_TF_DOCS --\u003e\n# Terraform Aws Eks Helm Release Module\nTerraform module to assist in deploying Helm releases on your AWS EKS cluster.\n\n[![blackbird-logo](https://raw.githubusercontent.com/blackbird-cloud/terraform-module-template/main/.config/logo_simple.png)](https://blackbird.cloud)\n\n## Example\n```hcl\nprovider \"aws\" {}\n\nmodule \"helm_release\" {\n  source  = \"blackbird-cloud/eks-helm-release/aws\"\n  version = \"~\u003e 1\"\n\n  cluster_name = \"my-develop-cluster\"\n\n  name             = \"prometheus\"\n  repository       = \"https://prometheus-community.github.io/helm-charts\"\n  chart            = \"kube-prometheus-stack\"\n  chart_version    = \"44.4.1\"\n  namespace        = \"prometheus\"\n  create_namespace = true\n\n  values = [\n    yamlencode({\n      grafana : {\n        enabled : false\n      }\n      prometheus : {\n        prometheusSpec : {\n          storageSpec : {\n            volumeClaimTemplate : {\n              spec : {\n                storageClassName : \"gp3\"\n                accessModes : [\"ReadWriteOnce\"]\n                resources : {\n                  requests : {\n                    storage : \"50Gi\"\n                  }\n                }\n              }\n            }\n          }\n        }\n      }\n    })\n  ]\n\n  cleanup_on_fail = true\n  force_update    = true\n}\n```\n\n## Requirements\n\n| Name | Version |\n|------|---------|\n| \u003ca name=\"requirement_terraform\"\u003e\u003c/a\u003e [terraform](#requirement\\_terraform) | \u003e= 1.2 |\n| \u003ca name=\"requirement_aws\"\u003e\u003c/a\u003e [aws](#requirement\\_aws) | ~\u003e 5 |\n| \u003ca name=\"requirement_helm\"\u003e\u003c/a\u003e [helm](#requirement\\_helm) | ~\u003e 2 |\n\n## Providers\n\n| Name | Version |\n|------|---------|\n| \u003ca name=\"provider_aws\"\u003e\u003c/a\u003e [aws](#provider\\_aws) | ~\u003e 5 |\n\n## Resources\n\n| Name | Type |\n|------|------|\n| [aws_eks_cluster.cluster](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/eks_cluster) | data source |\n| [aws_eks_cluster_auth.cluster](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/eks_cluster_auth) | data source |\n\n## Inputs\n\n| Name | Description | Type | Default | Required |\n|------|-------------|------|---------|:--------:|\n| \u003ca name=\"input_atomic\"\u003e\u003c/a\u003e [atomic](#input\\_atomic) | If set, installation process purges chart on fail. The wait flag will be set automatically if atomic is used. Defaults to false. | `bool` | `false` | no |\n| \u003ca name=\"input_chart\"\u003e\u003c/a\u003e [chart](#input\\_chart) | Chart name to be installed. The chart name can be local path, a URL to a chart, or the name of the chart if repository is specified. It is also possible to use the \u003crepository\u003e/\u003cchart\u003e format here if you are running Terraform on a system that the repository has been added to with helm repo add but this is not recommended. | `string` | `\"\"` | no |\n| \u003ca name=\"input_chart_version\"\u003e\u003c/a\u003e [chart\\_version](#input\\_chart\\_version) | Specify the exact chart version to install. If this is not specified, the latest version is installed. helm\\_release will not automatically grab the latest release, version must explicitly upgraded when upgrading an installed chart. | `string` | `null` | no |\n| \u003ca name=\"input_cleanup_on_fail\"\u003e\u003c/a\u003e [cleanup\\_on\\_fail](#input\\_cleanup\\_on\\_fail) | Allow deletion of new resources created in this upgrade when upgrade fails. Defaults to true. | `bool` | `false` | no |\n| \u003ca name=\"input_cluster_name\"\u003e\u003c/a\u003e [cluster\\_name](#input\\_cluster\\_name) | The AWS EKS Cluster's name, in which the chart will be installed. | `string` | n/a | yes |\n| \u003ca name=\"input_create_namespace\"\u003e\u003c/a\u003e [create\\_namespace](#input\\_create\\_namespace) | Create the namespace if it does not yet exist. Defaults to false. | `bool` | `false` | no |\n| \u003ca name=\"input_description\"\u003e\u003c/a\u003e [description](#input\\_description) | Set release description attribute (visible in the history). | `string` | `null` | no |\n| \u003ca name=\"input_disable_webhooks\"\u003e\u003c/a\u003e [disable\\_webhooks](#input\\_disable\\_webhooks) | Prevent hooks from running. Defaults to false. | `bool` | `false` | no |\n| \u003ca name=\"input_force_update\"\u003e\u003c/a\u003e [force\\_update](#input\\_force\\_update) | Force resource update through delete/recreate if needed. Defaults to false. | `bool` | `false` | no |\n| \u003ca name=\"input_name\"\u003e\u003c/a\u003e [name](#input\\_name) | Release name. | `string` | n/a | yes |\n| \u003ca name=\"input_namespace\"\u003e\u003c/a\u003e [namespace](#input\\_namespace) | The namespace to install the release into. Defaults to default. | `string` | `\"default\"` | no |\n| \u003ca name=\"input_recreate_pods\"\u003e\u003c/a\u003e [recreate\\_pods](#input\\_recreate\\_pods) | Perform pods restart during upgrade/rollback. Defaults to false. | `bool` | `false` | no |\n| \u003ca name=\"input_repository\"\u003e\u003c/a\u003e [repository](#input\\_repository) | Repository URL where to locate the requested chart. | `string` | `null` | no |\n| \u003ca name=\"input_repository_password\"\u003e\u003c/a\u003e [repository\\_password](#input\\_repository\\_password) | Password for HTTP basic authentication against the repository. | `string` | `null` | no |\n| \u003ca name=\"input_repository_username\"\u003e\u003c/a\u003e [repository\\_username](#input\\_repository\\_username) | Username for HTTP basic authentication against the repository. | `string` | `null` | no |\n| \u003ca name=\"input_sensitive_values\"\u003e\u003c/a\u003e [sensitive\\_values](#input\\_sensitive\\_values) | Which sensitive values to install for the helm chart. | `list(string)` | `[]` | no |\n| \u003ca name=\"input_timeout\"\u003e\u003c/a\u003e [timeout](#input\\_timeout) | Time in seconds to wait for any individual kubernetes operation (like Jobs for hooks). Defaults to 300 seconds. | `number` | `300` | no |\n| \u003ca name=\"input_values\"\u003e\u003c/a\u003e [values](#input\\_values) | Which values to install for the helm chart. | `list(string)` | `[]` | no |\n| \u003ca name=\"input_wait\"\u003e\u003c/a\u003e [wait](#input\\_wait) | Will wait until all resources are in a ready state before marking the release as successful. It will wait for as long as timeout. Defaults to true. | `bool` | `true` | no |\n| \u003ca name=\"input_wait_for_jobs\"\u003e\u003c/a\u003e [wait\\_for\\_jobs](#input\\_wait\\_for\\_jobs) | If wait is enabled, will wait until all Jobs have been completed before marking the release as successful. It will wait for as long as timeout. Defaults to false. | `bool` | `true` | no |\n\n## Outputs\n\n| Name | Description |\n|------|-------------|\n| \u003ca name=\"output_helm_release\"\u003e\u003c/a\u003e [helm\\_release](#output\\_helm\\_release) | The installed Helm release. |\n\n## About\n\nWe are [Blackbird Cloud](https://blackbird.cloud), Amsterdam based cloud consultancy, and cloud management service provider. We help companies build secure, cost efficient, and scale-able solutions.\n\nCheckout our other :point\\_right: [terraform modules](https://registry.terraform.io/namespaces/blackbird-cloud)\n\n## Copyright\n\nCopyright © 2017-2024 [Blackbird Cloud](https://blackbird.cloud)\n\u003c!-- END_TF_DOCS --\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblackbird-cloud%2Fterraform-aws-eks-helm-release","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblackbird-cloud%2Fterraform-aws-eks-helm-release","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblackbird-cloud%2Fterraform-aws-eks-helm-release/lists"}