Implemented identities datasource

This commit is contained in:
Julien Dessaux 2023-07-31 00:31:43 +02:00
parent ec8e96003f
commit 6642a66a1d
Signed by: adyxax
GPG key ID: F92E51B86E07177E
6 changed files with 262 additions and 0 deletions

View file

@ -76,6 +76,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{
NewIdentitiesDataSource,
NewJobsDataSource,
NewProjectsDataSource,
}