Skip to content

Commit

Permalink
fix: missing space_id on user schema
Browse files Browse the repository at this point in the history
  • Loading branch information
domenicsim1 committed Oct 23, 2023
1 parent 902154a commit 2db7a76
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions octopusdeploy/schema_user.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,12 @@ func getUserDataSchema() map[string]*schema.Schema {
setDataSchema(&dataSchema)

return map[string]*schema.Schema{
"filter": getQueryFilter(),
"id": getDataSchemaID(),
"ids": getQueryIDs(),
"skip": getQuerySkip(),
"take": getQueryTake(),
"filter": getQueryFilter(),
"id": getDataSchemaID(),
"ids": getQueryIDs(),
"skip": getQuerySkip(),
"take": getQueryTake(),
"space_id": getQuerySpaceID(),
"users": {
Computed: true,
Description: "A list of users that match the filter(s).",
Expand Down

0 comments on commit 2db7a76

Please sign in to comment.