fix: add missing status attribute to schema (#639)

* fix: add missing status attribute to schema

* fix: added review suggestion
This commit is contained in:
Rüdiger Schmitz 2025-01-22 11:01:24 +01:00 committed by GitHub
parent a1e7890d86
commit 9b969ae583
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -180,6 +180,10 @@ func (r *serverDataSource) Schema(_ context.Context, _ datasource.SchemaRequest,
Description: "Date-time when the server was updated",
Computed: true,
},
"desired_status": schema.StringAttribute{
Description: "The desired status of the server resource." + utils.SupportedValuesDocumentation(desiredStatusOptions),
Computed: true,
},
},
}
}