From e4116c348ae036cb44f4502511e8d4c0aa3a3d0b Mon Sep 17 00:00:00 2001 From: Victor Nogueira Date: Sat, 9 Nov 2024 11:39:52 +0100 Subject: [PATCH 1/2] Update module to v3 --- examples/bucket/main.tf | 2 +- examples/group/main.tf | 2 +- examples/policy/main.tf | 2 +- examples/resources/minio_s3_bucket_replication/main.tf | 2 +- examples/resources/minio_s3_object/main.tf | 2 +- examples/serviceaccount/main.tf | 2 +- examples/user/main.tf | 2 +- go.mod | 2 +- main.go | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/examples/bucket/main.tf b/examples/bucket/main.tf index c7878642..2afcbbdc 100755 --- a/examples/bucket/main.tf +++ b/examples/bucket/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { minio = { source = "aminueza/minio" - version = ">= 2.0.0" + version = ">= 3.0.0" } } } diff --git a/examples/group/main.tf b/examples/group/main.tf index c7878642..2afcbbdc 100755 --- a/examples/group/main.tf +++ b/examples/group/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { minio = { source = "aminueza/minio" - version = ">= 2.0.0" + version = ">= 3.0.0" } } } diff --git a/examples/policy/main.tf b/examples/policy/main.tf index c7878642..2afcbbdc 100755 --- a/examples/policy/main.tf +++ b/examples/policy/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { minio = { source = "aminueza/minio" - version = ">= 2.0.0" + version = ">= 3.0.0" } } } diff --git a/examples/resources/minio_s3_bucket_replication/main.tf b/examples/resources/minio_s3_bucket_replication/main.tf index ce4ddd42..4356a94f 100755 --- a/examples/resources/minio_s3_bucket_replication/main.tf +++ b/examples/resources/minio_s3_bucket_replication/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { minio = { source = "aminueza/minio" - version = ">= 2.0.0" + version = ">= 3.0.0" } } } diff --git a/examples/resources/minio_s3_object/main.tf b/examples/resources/minio_s3_object/main.tf index c7878642..2afcbbdc 100755 --- a/examples/resources/minio_s3_object/main.tf +++ b/examples/resources/minio_s3_object/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { minio = { source = "aminueza/minio" - version = ">= 2.0.0" + version = ">= 3.0.0" } } } diff --git a/examples/serviceaccount/main.tf b/examples/serviceaccount/main.tf index c7878642..2afcbbdc 100755 --- a/examples/serviceaccount/main.tf +++ b/examples/serviceaccount/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { minio = { source = "aminueza/minio" - version = ">= 2.0.0" + version = ">= 3.0.0" } } } diff --git a/examples/user/main.tf b/examples/user/main.tf index c7878642..2afcbbdc 100755 --- a/examples/user/main.tf +++ b/examples/user/main.tf @@ -2,7 +2,7 @@ terraform { required_providers { minio = { source = "aminueza/minio" - version = ">= 2.0.0" + version = ">= 3.0.0" } } } diff --git a/go.mod b/go.mod index 2d7e8b7a..c8ae9bd5 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/aminueza/terraform-provider-minio/v2 +module github.com/aminueza/terraform-provider-minio/v3 go 1.20 diff --git a/main.go b/main.go index a1392895..b4208b7f 100644 --- a/main.go +++ b/main.go @@ -3,7 +3,7 @@ package main import ( "flag" - "github.com/aminueza/terraform-provider-minio/v2/minio" + "github.com/aminueza/terraform-provider-minio/v3/minio" "github.com/hashicorp/terraform-plugin-sdk/v2/plugin" ) From d1a311bb4f3a6004e6458c42afc019ce8737fce1 Mon Sep 17 00:00:00 2001 From: Victor Nogueira Date: Sat, 9 Nov 2024 11:53:07 +0100 Subject: [PATCH 2/2] Remove the obsolete `version` property from `docker-compose.yml` --- docker-compose.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 5e8d9611..fbe48dd4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,4 +1,3 @@ -version: "3" services: minio: image: minio/minio:RELEASE.2024-10-02T17-50-41Z