You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- `name` - (Required) Name of the Data Warehouse deployment.
48
-
- `version` - (Required) ClickHouse version to use (e.g., "v25").
48
+
- `version` - (Required, Forces new resource) ClickHouse version to use (e.g., "v25"). Changing this forces recreation of the deployment.
49
49
- `replica_count` - (Required) Number of replicas.
50
-
- `cpu_min` - (Required) Minimum CPU count.
51
-
- `cpu_max` - (Required) Maximum CPU count.
50
+
- `cpu_min` - (Required) Minimum CPU count. Must be less than or equal to `cpu_max`.
51
+
- `cpu_max` - (Required) Maximum CPU count. Must be greater than or equal to `cpu_min`.
52
52
- `ram_per_cpu` - (Required) RAM per CPU in GB.
53
-
- `password` - (Optional) Password for the first user of the deployment. If not specified, a random password will be generated.
53
+
- `password` - (Optional) Password for the first user of the deployment. If not specified, a random password will be generated. Note: password is only used during deployment creation.
54
54
- `tags` - (Optional) List of tags to apply to the deployment.
55
55
- `region` - (Defaults to [provider](../index.md#region) `region`) The [region](../guides/regions_and_zones.md#regions) in which the deployment should be created.
56
56
- `project_id` - (Defaults to [provider](../index.md#project_id) `project_id`) The ID of the project the deployment is associated with.
57
57
58
-
~> **Important:** Private endpoints are not yet supported by the API. A public endpoint is always created.
58
+
~> **Important:** Private endpoints are not yet supported by the API. A public endpoint is always created automatically.
59
59
60
60
~> **Note:** During the private beta phase, modifying `cpu_min`, `cpu_max`, and `replica_count` has no effect until the feature is launched in general availability.
61
61
@@ -64,11 +64,15 @@ The following arguments are supported:
64
64
In addition to all arguments above, the following attributes are exported:
65
65
66
66
- `id` - The ID of the deployment.
67
-
- `public_network` - Public endpoint information.
67
+
- `status` - The status of the deployment (e.g., "ready", "provisioning").
68
+
- `created_at` - Date and time of deployment creation (RFC 3339 format).
69
+
- `updated_at` - Date and time of deployment last update (RFC 3339 format).
70
+
- `public_network` - Public endpoint information (always created automatically).
68
71
- `id` - The ID of the public endpoint.
69
72
- `dns_record` - DNS record for the public endpoint.
70
-
- `protocol` - Service protocol (e.g., "tcp", "https", "mysql").
71
-
- `port` - TCP port number for the public endpoint.
73
+
- `services` - List of services exposed on the public endpoint.
74
+
- `protocol` - Service protocol (e.g., "tcp", "https", "mysql").
0 commit comments