Allow specifying network ID in SKE cluster (#368)
This commit is contained in:
parent
e2e5f19a29
commit
ac0840fceb
6 changed files with 204 additions and 7 deletions
|
|
@ -228,6 +228,20 @@ func (r *clusterDataSource) Schema(_ context.Context, _ datasource.SchemaRequest
|
|||
},
|
||||
},
|
||||
|
||||
"network": schema.SingleNestedAttribute{
|
||||
Description: "Network block as defined below.",
|
||||
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.",
|
||||
Computed: true,
|
||||
Validators: []validator.String{
|
||||
validate.UUID(),
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
"hibernations": schema.ListNestedAttribute{
|
||||
Description: "One or more hibernation block as defined below.",
|
||||
Computed: true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue