# terraform-helm-oci-release **Repository Path**: mirrors_datastax/terraform-helm-oci-release ## Basic Information - **Project Name**: terraform-helm-oci-release - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-05-25 - **Last Updated**: 2025-12-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # OCI Helm Release Terraform Module ## Description This module enables you to deploy Helm releases based on charts stored in OCI compliant registries. ## Example ```hcl module "helm-oci-release" { source = "github.com/FRosner/terraform-helm-oci-release" helm_login_command = "echo $REGISTRY_PW | helm registry login -u AWS --password-stdin" # This will pull the chart 123456.dkr.ecr.us-east-1.amazonaws.com/mycorp/helm/my-chart:1.0.0 oci_repository = "123456.dkr.ecr.us-east-1.amazonaws.com" chart_prefix = "mycorp/helm" chart_name = "my-chart" chart_version = 1.0.0 } ```