Skip to content

Commit a43c423

Browse files
authored
Update 'helm_template' documentation (#1027)
1 parent 169ff94 commit a43c423

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

website/docs/d/template.html.markdown

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ For further details on the `helm template` command, refer to the [Helm documenta
2020

2121
### Render all chart templates
2222

23-
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`.
23+
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`.
2424

2525
```hcl
2626
data "helm_template" "mariadb_instance" {
@@ -49,8 +49,8 @@ resource "local_file" "mariadb_manifests" {
4949
content = each.value
5050
}
5151
52-
output "mariadb_instance_manifest_bundle" {
53-
value = data.helm_template.mariadb_instance.manifest_bundle
52+
output "mariadb_instance_manifest" {
53+
value = data.helm_template.mariadb_instance.manifest
5454
}
5555
5656
output "mariadb_instance_manifests" {
@@ -98,8 +98,8 @@ resource "local_file" "mariadb_manifests" {
9898
content = each.value
9999
}
100100
101-
output "mariadb_instance_manifest_bundle" {
102-
value = data.helm_template.mariadb_instance.manifest_bundle
101+
output "mariadb_instance_manifest" {
102+
value = data.helm_template.mariadb_instance.manifest
103103
}
104104
105105
output "mariadb_instance_manifests" {

0 commit comments

Comments
 (0)