Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update helm_template documentation #1027

Merged
merged 1 commit into from
Jan 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions website/docs/d/template.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down Expand Up @@ -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" {
Expand Down Expand Up @@ -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" {
Expand Down