|
| 1 | +# helm template |
| 2 | + |
| 3 | +Generates kubernetes YAML manifests through helm |
| 4 | + |
| 5 | +<!-- BEGIN_TF_DOCS --> |
| 6 | +## Requirements |
| 7 | + |
| 8 | +| Name | Version | |
| 9 | +|------|---------| |
| 10 | +| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | ~> 1.3 | |
| 11 | +| <a name="requirement_helm"></a> [helm](#requirement\_helm) | >= 2.17.0, < 3.0.0 | |
| 12 | +| <a name="requirement_time"></a> [time](#requirement\_time) | ~> 0.9.1 | |
| 13 | + |
| 14 | +## Providers |
| 15 | + |
| 16 | +| Name | Version | |
| 17 | +|------|---------| |
| 18 | +| <a name="provider_helm"></a> [helm](#provider\_helm) | >= 2.17.0, < 3.0.0 | |
| 19 | +| <a name="provider_time"></a> [time](#provider\_time) | ~> 0.9.1 | |
| 20 | + |
| 21 | +## Modules |
| 22 | + |
| 23 | +No modules. |
| 24 | + |
| 25 | +## Resources |
| 26 | + |
| 27 | +| Name | Type | |
| 28 | +|------|------| |
| 29 | +| [time_static.last_update](https://registry.terraform.io/providers/hashicorp/time/latest/docs/resources/static) | resource | |
| 30 | +| [helm_template.main](https://registry.terraform.io/providers/hashicorp/helm/latest/docs/data-sources/template) | data source | |
| 31 | + |
| 32 | +## Inputs |
| 33 | + |
| 34 | +| Name | Description | Type | Default | Required | |
| 35 | +|------|-------------|------|---------|:--------:| |
| 36 | +| <a name="input_atomic"></a> [atomic](#input\_atomic) | Atomic deployment | `bool` | `false` | no | |
| 37 | +| <a name="input_chart"></a> [chart](#input\_chart) | Chart to use for the current deployment | `string` | `""` | no | |
| 38 | +| <a name="input_chart_version"></a> [chart\_version](#input\_chart\_version) | Version of the chart to use for the current deployment | `string` | `""` | no | |
| 39 | +| <a name="input_create_namespace"></a> [create\_namespace](#input\_create\_namespace) | Create namespace | `bool` | `true` | no | |
| 40 | +| <a name="input_customer"></a> [customer](#input\_customer) | Customer for the current deployment | `string` | `""` | no | |
| 41 | +| <a name="input_kubeconfig_context"></a> [kubeconfig\_context](#input\_kubeconfig\_context) | Kubeconfig context to use for the current deployment | `string` | `null` | no | |
| 42 | +| <a name="input_kubeconfig_paths"></a> [kubeconfig\_paths](#input\_kubeconfig\_paths) | List of kubeconfig paths to use for the current deployment | `list(string)` | `[]` | no | |
| 43 | +| <a name="input_name"></a> [name](#input\_name) | The name of the helm release | `string` | n/a | yes | |
| 44 | +| <a name="input_namespace"></a> [namespace](#input\_namespace) | Namespace to use for the current deployment | `string` | `""` | no | |
| 45 | +| <a name="input_repository"></a> [repository](#input\_repository) | Repository to use for the current deployment | `string` | `""` | no | |
| 46 | +| <a name="input_sets"></a> [sets](#input\_sets) | List of sets to use for the current deployment | `list(map(string))` | `[]` | no | |
| 47 | +| <a name="input_tags"></a> [tags](#input\_tags) | Default tags to add to resources | `map(any)` | `{}` | no | |
| 48 | +| <a name="input_values"></a> [values](#input\_values) | List of values to use for the current deployment | `list(string)` | `[]` | no | |
| 49 | +| <a name="input_wait"></a> [wait](#input\_wait) | Wait for deployment to complete | `bool` | `true` | no | |
| 50 | + |
| 51 | +## Outputs |
| 52 | + |
| 53 | +| Name | Description | |
| 54 | +|------|-------------| |
| 55 | +| <a name="output_manifest"></a> [manifest](#output\_manifest) | Rendered Kubernetes manifests generated by Helm | |
| 56 | +| <a name="output_name"></a> [name](#output\_name) | The name of the helm release | |
| 57 | +| <a name="output_namespace"></a> [namespace](#output\_namespace) | The namespace of the helm release | |
| 58 | +<!-- END_TF_DOCS --> |
0 commit comments