Skip to content

Commit 031e5c7

Browse files
authored
Fix description for set_list parameters (#1451)
This looks like copypasta from `set_sensitive`.
1 parent 40daddd commit 031e5c7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/data-sources/template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ For further details on the `helm template` command, refer to the [Helm documenta
5454
- `reset_values` (Boolean) When upgrading, reset the values to the ones built into the chart.Defaults to `false`.
5555
- `reuse_values` (Boolean) When upgrading, reuse the last release's values and merge in any overrides. If 'reset_values' is specified, this is ignored. Defaults to `false`.
5656
- `set` (Block Set) Custom values to be merged with the values. (see [below for nested schema](#nestedblock--set))
57-
- `set_list` (Block List) Custom sensitive values to be merged with the values. (see [below for nested schema](#nestedblock--set_list))
57+
- `set_list` (Block List) Custom list values to be merged with the values. (see [below for nested schema](#nestedblock--set_list))
5858
- `set_sensitive` (Block Set) Custom sensitive values to be merged with the values. (see [below for nested schema](#nestedblock--set_sensitive))
5959
- `set_string` (Block Set, Deprecated) Custom string values to be merged with the values. (see [below for nested schema](#nestedblock--set_string))
6060
- `show_only` (List of String) Only show manifests rendered from the given templates

docs/resources/release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ A Chart is a Helm package. It contains all of the resource definitions necessary
5050
- `reset_values` (Boolean) When upgrading, reset the values to the ones built into the chart. Defaults to `false`.
5151
- `reuse_values` (Boolean) When upgrading, reuse the last release's values and merge in any overrides. If 'reset_values' is specified, this is ignored. Defaults to `false`.
5252
- `set` (Block Set) Custom values to be merged with the values. (see [below for nested schema](#nestedblock--set))
53-
- `set_list` (Block List) Custom sensitive values to be merged with the values. (see [below for nested schema](#nestedblock--set_list))
53+
- `set_list` (Block List) Custom list values to be merged with the values. (see [below for nested schema](#nestedblock--set_list))
5454
- `set_sensitive` (Block Set) Custom sensitive values to be merged with the values. (see [below for nested schema](#nestedblock--set_sensitive))
5555
- `skip_crds` (Boolean) If set, no CRDs will be installed. By default, CRDs are installed if not already present. Defaults to `false`.
5656
- `timeout` (Number) Time in seconds to wait for any individual kubernetes operation. Defaults to 300 seconds.

helm/data_template.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ func dataTemplate() *schema.Resource {
133133
"set_list": {
134134
Type: schema.TypeList,
135135
Optional: true,
136-
Description: "Custom sensitive values to be merged with the values.",
136+
Description: "Custom list values to be merged with the values.",
137137
Elem: &schema.Resource{
138138
Schema: map[string]*schema.Schema{
139139
"name": {

helm/resource_release.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ func resourceRelease() *schema.Resource {
169169
"set_list": {
170170
Type: schema.TypeList,
171171
Optional: true,
172-
Description: "Custom sensitive values to be merged with the values.",
172+
Description: "Custom list values to be merged with the values.",
173173
Elem: &schema.Resource{
174174
Schema: map[string]*schema.Schema{
175175
"name": {

0 commit comments

Comments
 (0)