summaryrefslogtreecommitdiff
path: root/internal/provider/provider.go
diff options
context:
space:
mode:
authorJulien Dessaux2023-07-31 00:31:43 +0200
committerJulien Dessaux2023-07-31 00:31:43 +0200
commit6642a66a1df5db5f2f9780905e83ba2c412128f6 (patch)
tree35d04ade200db806152bc80cd6cf33ed6bf23052 /internal/provider/provider.go
parentUpgrade notes (diff)
downloadterraform-provider-eventline-0.0.5.tar.gz
terraform-provider-eventline-0.0.5.tar.bz2
terraform-provider-eventline-0.0.5.zip
Implemented identities datasourcev0.0.5
Diffstat (limited to 'internal/provider/provider.go')
-rw-r--r--internal/provider/provider.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/provider/provider.go b/internal/provider/provider.go
index 6f3bb65..8f1808e 100644
--- a/internal/provider/provider.go
+++ b/internal/provider/provider.go
@@ -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,
}