Skip to content
Open
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
2 changes: 1 addition & 1 deletion coreweave/cks/resource_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ func (r *ClusterResource) Schema(ctx context.Context, req resource.SchemaRequest
"public": schema.BoolAttribute{
Optional: true,
Computed: true,
MarkdownDescription: "Whether the cluster's api-server is publicly accessible from the internet.",
MarkdownDescription: "Whether the cluster's api-server is publicly accessible from the internet.\n\t> WARNING: Do not set this attribute to `false` at cluster creation. Additional setup is required before a cluster can be made private. Check with your CoreWeave account team for details.",
Default: booldefault.StaticBool(false),
},
"version": schema.StringAttribute{
Expand Down
1 change: 1 addition & 0 deletions docs/resources/cks_cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ The prefixes must exist in the cluster's VPC. This field is append-only.
- `node_port_range` (Attributes) Kubernetes Service NodePort range. NodePort range can be expanded in existing clusters but not shrunk. Updating the NodePort range to a smaller range will require a replacement of the cluster. (see [below for nested schema](#nestedatt--node_port_range))
- `oidc` (Attributes) OpenID Connect (OIDC) configuration for authentication to the api-server. (see [below for nested schema](#nestedatt--oidc))
- `public` (Boolean) Whether the cluster's api-server is publicly accessible from the internet.
> WARNING: Do not set this attribute to `false` at cluster creation. Additional setup is required before a cluster can be made private. Check with your CoreWeave account team for details.
- `shared_storage_cluster_id` (String) The `cluster_id` of the cluster to share storage with. Must be enabled by CoreWeave suppport. Contact CoreWeave support if you are interested in this feature.

### Read-Only
Expand Down
Loading