Yandex Cloud
Search
Contact UsTry it for free
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
  • Marketplace
    • Featured
    • Infrastructure & Network
    • Data Platform
    • AI for business
    • Security
    • DevOps tools
    • Serverless
    • Monitoring & Resources
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
    • Price calculator
    • Pricing plans
  • Customer Stories
  • Documentation
  • Blog
© 2026 Direct Cursus Technology L.L.C.
Terraform in Yandex Cloud
  • Getting started
  • Solution library
    • Overview
    • Release notes
          • kubernetes_marketplace_helm_release

In this article:

  • Example usage
  • Arguments & Attributes Reference
  • Import
  1. Terraform reference
  2. Resources
  3. Kubernetes Marketplace
  4. Resources
  5. kubernetes_marketplace_helm_release

yandex_kubernetes_marketplace_helm_release (Resource)

Written by
Yandex Cloud
Updated at February 12, 2026
  • Example usage
  • Arguments & Attributes Reference
  • Import

Allows management of Kubernetes product installed from Yandex Cloud Marketplace.
For more information, see official documentation.

Example usageExample usage

//
// Create a new Kubernetes Marketplace Helm Release. 
//
resource "yandex_kubernetes_marketplace_helm_release" "gatekeeper_helm_release" {
  cluster_id = yandex_kubernetes_cluster.cluster_resource_name.id

  product_version = "f2ecif2vt62k2637tgus" // Gatekeeper 3.12.0

  name      = "gatekeeper"
  namespace = kubernetes_namespace.namespace_resource_name.name

  user_values = {
    auditInterval             = "90"
    constraintViolationsLimit = "30"
  }
}

Arguments & Attributes ReferenceArguments & Attributes Reference

  • cluster_id (Required)(String). The ID of the Kubernetes cluster where the product will be installed.
  • created_at (Read-Only) (String). The Helm Release creation (first installation) timestamp.
  • id (Read-Only) (String). The resource identifier.
  • name (Required)(String). The name of the deployment.
  • namespace (Required)(String). The Kubernetes namespace where the product will be installed.
  • product_id (Read-Only) (String). The ID of the Marketplace product.
  • product_name (Read-Only) (String). The name of the Marketplace product.
  • product_version (Required)(String). The ID of the product version to be installed.
  • status (Read-Only) (String). Status of the deployment.
  • user_values (Map Of String). Values to be passed for the installation of the product. The block consists of attributes that accept string values. The exact structure depends on the particular product and may differ for different versions of the same product. Depending on the product, some values may be required, and the installation may fail if they are not provided.

applicationName and namespace, if provided in this block, override name and namespace arguments, respectively.

ImportImport

The resource can be imported by using their resource ID. For getting it you can use Yandex Cloud Web Console or Yandex Cloud CLI.

# terraform import yandex_kubernetes_marketpalce_helm_release.<resource Name> <resource Id>
terraform import yandex_kubernetes_marketpalce_helm_release.default ...

Was the article helpful?

Previous
kms_symmetric_key_iam_member
Next
loadtesting_agent
© 2026 Direct Cursus Technology L.L.C.