Skip to content
Merged
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: 2 additions & 0 deletions stackit/internal/services/ske/cluster/resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -552,10 +552,12 @@ func (r *clusterResource) Schema(_ context.Context, _ resource.SchemaRequest, re
"network": schema.SingleNestedAttribute{
Description: "Network block as defined below.",
Optional: true,
Computed: true,
Attributes: map[string]schema.Attribute{
"id": schema.StringAttribute{
Description: "ID of the STACKIT Network Area (SNA) network into which the cluster will be deployed.",
Optional: true,
Computed: true,
Validators: []validator.String{
validate.UUID(),
},
Expand Down
Loading