Skip to content

Commit

Permalink
fix(server): missing field primary_disk_size
Browse files Browse the repository at this point in the history
I missed that this field was not added to the resource schema in #801.

This bug causes e2e tests to fail in main.
  • Loading branch information
apricote committed Dec 7, 2023
1 parent 98c2f2d commit 2c5183d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions internal/server/resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,10 @@ func Resource() *schema.Resource {
Optional: true,
Default: false,
},
"primary_disk_size": {
Type: schema.TypeInt,
Computed: true,
},
},
}
}
Expand Down

0 comments on commit 2c5183d

Please sign in to comment.