<@UFPFMDBTK> what's the best example of a native p...
# golang
b
@orange-policeman-59119 what's the best example of a native package that's simple but not trivial, ideally something that manages a REST API style resource, and implements all the core functionality (create update delete and diff)? The typical xyz example is a bit too simple to help beyond the boilerplate imo.
b
I would love to know as well!
o
I've asked the team, the first that came to mind that's still relatively simple is https://github.com/pulumi/pulumi-command someone else on the team might weigh in
b
Thanks. Command is kinda complex but I'll try and figure it out from there.
o
a really simple CRUD resource would be a nice sample to have
I found a nice fake REST endpoint generator https://crudcrud.com/, would want to validate it but looks like something approximating this would be useful for showing folks how it works
b
Yeah. Another example would be the Label example from the GitHub repo - creating just that resource in a dedicated provider.