feat(provider): add organizations data-source

This commit is contained in:
Julien Dessaux 2025-05-10 00:57:55 +02:00
parent 3735e9ba01
commit f2e3a750ce
Signed by: adyxax
GPG key ID: F92E51B86E07177E
6 changed files with 207 additions and 0 deletions

View file

@ -80,6 +80,7 @@ func (p *Provider) Resources(ctx context.Context) []func() resource.Resource {
func (p *Provider) DataSources(ctx context.Context) []func() datasource.DataSource {
return []func() datasource.DataSource{
NewOrganizationsDataSource,
NewUsersDataSource,
}
}