diff options
author | Julien Dessaux | 2023-11-05 10:31:30 +0100 |
---|---|---|
committer | Julien Dessaux | 2023-11-05 10:32:59 +0100 |
commit | e7657b305de45b17d94d22e43debf077cc788d99 (patch) | |
tree | e277cac87014b348f8ba81960a423deb227a1344 /internal | |
parent | Preparing for release (diff) | |
download | terraform-provider-eventline-e7657b305de45b17d94d22e43debf077cc788d99.tar.gz terraform-provider-eventline-e7657b305de45b17d94d22e43debf077cc788d99.tar.bz2 terraform-provider-eventline-e7657b305de45b17d94d22e43debf077cc788d99.zip |
Eventline 1.1.0 compatibilityv0.2.0
Diffstat (limited to 'internal')
-rw-r--r-- | internal/provider/identities_data_source.go | 2 | ||||
-rw-r--r-- | internal/provider/identity_resource.go | 2 | ||||
-rw-r--r-- | internal/provider/jobs_data_source.go | 2 | ||||
-rw-r--r-- | internal/provider/project_resource.go | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/internal/provider/identities_data_source.go b/internal/provider/identities_data_source.go index 07d8e0e..928517a 100644 --- a/internal/provider/identities_data_source.go +++ b/internal/provider/identities_data_source.go @@ -5,7 +5,7 @@ import ( "fmt" "git.adyxax.org/adyxax/terraform-provider-eventline/external/evcli" - "github.com/exograd/go-daemon/ksuid" + "github.com/exograd/eventline/pkg/ksuid" "github.com/hashicorp/terraform-plugin-framework/datasource" "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-framework/types" diff --git a/internal/provider/identity_resource.go b/internal/provider/identity_resource.go index 4df4219..1b9ef4c 100644 --- a/internal/provider/identity_resource.go +++ b/internal/provider/identity_resource.go @@ -8,7 +8,7 @@ import ( "strings" "git.adyxax.org/adyxax/terraform-provider-eventline/external/evcli" - "github.com/exograd/go-daemon/ksuid" + "github.com/exograd/eventline/pkg/ksuid" "github.com/hashicorp/terraform-plugin-framework/path" "github.com/hashicorp/terraform-plugin-framework/resource" "github.com/hashicorp/terraform-plugin-framework/resource/schema" diff --git a/internal/provider/jobs_data_source.go b/internal/provider/jobs_data_source.go index d3c3dcb..4cea2f8 100644 --- a/internal/provider/jobs_data_source.go +++ b/internal/provider/jobs_data_source.go @@ -5,7 +5,7 @@ import ( "fmt" "git.adyxax.org/adyxax/terraform-provider-eventline/external/evcli" - "github.com/exograd/go-daemon/ksuid" + "github.com/exograd/eventline/pkg/ksuid" "github.com/hashicorp/terraform-plugin-framework/datasource" "github.com/hashicorp/terraform-plugin-framework/datasource/schema" "github.com/hashicorp/terraform-plugin-framework/types" diff --git a/internal/provider/project_resource.go b/internal/provider/project_resource.go index 776c065..118768d 100644 --- a/internal/provider/project_resource.go +++ b/internal/provider/project_resource.go @@ -7,7 +7,7 @@ import ( "git.adyxax.org/adyxax/terraform-provider-eventline/external/evcli" "github.com/exograd/eventline/pkg/eventline" - "github.com/exograd/go-daemon/ksuid" + "github.com/exograd/eventline/pkg/ksuid" "github.com/hashicorp/terraform-plugin-framework/path" "github.com/hashicorp/terraform-plugin-framework/resource" "github.com/hashicorp/terraform-plugin-framework/resource/schema" |