From 099837601e324bb521d8ff7c80a48f9557866d77 Mon Sep 17 00:00:00 2001 From: Aleksandr Rybolovlev Date: Thu, 12 Jan 2023 09:45:35 +0100 Subject: [PATCH] Update 'helm_template' documentation --- website/docs/d/template.html.markdown | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/website/docs/d/template.html.markdown b/website/docs/d/template.html.markdown index 97c650c621..fc2b4eb5ff 100644 --- a/website/docs/d/template.html.markdown +++ b/website/docs/d/template.html.markdown @@ -20,7 +20,7 @@ For further details on the `helm template` command, refer to the [Helm documenta ### Render all chart templates -The following example renders all templates of the `mariadb` chart of the official Helm stable repository. Concatenated manifests are exposed as output variable `mariadb_instance_manifest_bundle`. +The following example renders all templates of the `mariadb` chart of the official Helm stable repository. Concatenated manifests are exposed as output variable `mariadb_instance_manifest`. ```hcl data "helm_template" "mariadb_instance" { @@ -49,8 +49,8 @@ resource "local_file" "mariadb_manifests" { content = each.value } -output "mariadb_instance_manifest_bundle" { - value = data.helm_template.mariadb_instance.manifest_bundle +output "mariadb_instance_manifest" { + value = data.helm_template.mariadb_instance.manifest } output "mariadb_instance_manifests" { @@ -98,8 +98,8 @@ resource "local_file" "mariadb_manifests" { content = each.value } -output "mariadb_instance_manifest_bundle" { - value = data.helm_template.mariadb_instance.manifest_bundle +output "mariadb_instance_manifest" { + value = data.helm_template.mariadb_instance.manifest } output "mariadb_instance_manifests" {