diff --git a/pkg/provider/common.go b/pkg/provider/common.go index 223d694e..0cbcc659 100644 --- a/pkg/provider/common.go +++ b/pkg/provider/common.go @@ -36,7 +36,7 @@ func buildAPIReqAssignTags(tfRsrcTags []commonTerraform.Tag) []commonApi.Tag { } var resourceWal = schema.SingleNestedAttribute{ - Description: "Write-Ahead Logs (WAL) Storage.", + Description: "Use a separate storage volume for Write-Ahead Logs (Recommended for high write workloads)", Optional: true, Attributes: map[string]schema.Attribute{ "iops": schema.StringAttribute{ diff --git a/pkg/provider/resource_cluster.go b/pkg/provider/resource_cluster.go index 4c2ffd6f..5855ae53 100644 --- a/pkg/provider/resource_cluster.go +++ b/pkg/provider/resource_cluster.go @@ -273,7 +273,7 @@ func (c *clusterResource) Schema(ctx context.Context, req resource.SchemaRequest Required: true, }, "volume_type": schema.StringAttribute{ - Description: "Volume type. For Azure: \"azurepremiumstorage\" or \"ultradisk\". For AWS: \"gp3\", \"io2\", org s \"io2-block-express\". For Google Cloud: only \"pd-ssd\".", + Description: "Volume type. For Azure: \"azurepremiumstorage\" or \"ultradisk\". For AWS: \"gp3\", \"io2\", or \"io2-block-express\". For Google Cloud: only \"pd-ssd\".", Required: true, }, },