Skip to content

Commit 6e8e6a0

Browse files
authored
Improve warehouse_id attribute naming (#318)
1 parent ce18def commit 6e8e6a0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/resources/service.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ resource "clickhouse_service" "service" {
7474
- `release_channel` (String) Release channel to use for this service. Either 'default' or 'fast'. Switching from 'fast' to 'default' release channel is not supported.
7575
- `tier` (String) Tier of the service: 'development', 'production'. Required for organizations using the Legacy ClickHouse Cloud Tiers, must be omitted for organizations using the new ClickHouse Cloud Tiers.
7676
- `transparent_data_encryption` (Attributes) Configuration of the Transparent Data Encryption (TDE) feature. Requires an organization with the Enterprise plan. (see [below for nested schema](#nestedatt--transparent_data_encryption))
77-
- `warehouse_id` (String) UUID of the primary service to share the data with. Must be in the same cloud and region.
77+
- `warehouse_id` (String) Set it to the 'warehouse_id' attribute of another service to share the data with it. The service must be in the same cloud and region.
7878

7979
### Read-Only
8080

pkg/resource/service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ func (r *ServiceResource) Schema(_ context.Context, _ resource.SchemaRequest, re
8888
},
8989
},
9090
"warehouse_id": schema.StringAttribute{
91-
Description: "UUID of the primary service to share the data with. Must be in the same cloud and region.",
91+
Description: "Set it to the 'warehouse_id' attribute of another service to share the data with it. The service must be in the same cloud and region.",
9292
Optional: true,
9393
Computed: true,
9494
PlanModifiers: []planmodifier.String{

0 commit comments

Comments
 (0)