Skip to content

Commit 0e878e3

Browse files
micheleRPgene-redpanda
authored andcommitted
update consistent with cloud-docs update
1 parent dd3f91c commit 0e878e3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/resources/cluster.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Enables the provisioning and management of Redpanda clusters on AWS and GCP. A c
2323
- `network_id` (String) Network ID where cluster is placed.
2424
- `region` (String) Cloud provider region. Region represents the name of the region where the cluster will be provisioned.
2525
- `resource_group_id` (String) Resource group ID of the cluster.
26-
- `throughput_tier` (String) Usage tier of the cluster. Changing this value will destroy and recreate the cluster.
26+
- `throughput_tier` (String) Usage tier of the cluster. WARNING: Do not modify after it is set. When allow_deletion is true, modifying this forces replacement of the cluster - Terraform will destroy the existing cluster and create a new one, causing data loss.
2727
- `zones` (List of String) Zones of the cluster. Must be valid zones within the selected region. If multiple zones are used, the cluster is a multi-AZ cluster.
2828

2929
### Optional

redpanda/resources/cluster/schema_resource.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ func resourceClusterSchema() schema.Schema {
5656
},
5757
"throughput_tier": schema.StringAttribute{
5858
Required: true,
59-
Description: "Usage tier of the cluster. Changing this value will destroy and recreate the cluster.",
59+
Description: "Usage tier of the cluster. WARNING: Do not modify after it is set. When allow_deletion is true, modifying this forces replacement of the cluster - Terraform will destroy the existing cluster and create a new one, causing data loss.",
6060
PlanModifiers: []planmodifier.String{stringplanmodifier.RequiresReplace()},
6161
},
6262
"region": schema.StringAttribute{

0 commit comments

Comments
 (0)