Skip to content
Closed
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ func schemaLoggingVariant() *schema.Schema {
return &schema.Schema{
Type: schema.TypeString,
Optional: true,
Computed: true,
Description: `Type of logging agent that is used as the default value for node pools in the cluster. Valid values include DEFAULT and MAX_THROUGHPUT.`,
Default: "DEFAULT",
ValidateFunc: validation.StringInSlice([]string{"DEFAULT", "MAX_THROUGHPUT"}, false),
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -294,15 +294,15 @@ var schemaNodePool = map[string]*schema.Schema{
"auto_repair": {
Type: schema.TypeBool,
Optional: true,
Default: false,
Description: `Whether the nodes will be automatically repaired.`,
Default: true,
Description: `Whether the nodes will be automatically repaired. Enabled by default.`,
},

"auto_upgrade": {
Type: schema.TypeBool,
Optional: true,
Default: false,
Description: `Whether the nodes will be automatically upgraded.`,
Default: true,
Description: `Whether the nodes will be automatically upgraded. Enabled by default.`,
},
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,9 +194,9 @@ cluster.

<a name="nested_management"></a>The `management` block supports:

* `auto_repair` - (Optional) Whether the nodes will be automatically repaired.
* `auto_repair` - (Optional) Whether the nodes will be automatically repaired. Enabled by default.

* `auto_upgrade` - (Optional) Whether the nodes will be automatically upgraded.
* `auto_upgrade` - (Optional) Whether the nodes will be automatically upgraded. Enabled by default.

<a name="nested_network_config"></a>The `network_config` block supports:

Expand Down