Skip to content

Commit

Permalink
Update module to v3 (#593)
Browse files Browse the repository at this point in the history
  • Loading branch information
felladrin authored Nov 9, 2024
1 parent d1a9ab6 commit a3dadb6
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 10 deletions.
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3"
services:
minio:
image: minio/minio:RELEASE.2024-10-02T17-50-41Z
Expand Down
2 changes: 1 addition & 1 deletion examples/bucket/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
minio = {
source = "aminueza/minio"
version = ">= 2.0.0"
version = ">= 3.0.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/group/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
minio = {
source = "aminueza/minio"
version = ">= 2.0.0"
version = ">= 3.0.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/policy/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
minio = {
source = "aminueza/minio"
version = ">= 2.0.0"
version = ">= 3.0.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/minio_s3_bucket_replication/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
minio = {
source = "aminueza/minio"
version = ">= 2.0.0"
version = ">= 3.0.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/minio_s3_object/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
minio = {
source = "aminueza/minio"
version = ">= 2.0.0"
version = ">= 3.0.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/serviceaccount/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
minio = {
source = "aminueza/minio"
version = ">= 2.0.0"
version = ">= 3.0.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion examples/user/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
minio = {
source = "aminueza/minio"
version = ">= 2.0.0"
version = ">= 3.0.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/aminueza/terraform-provider-minio/v2
module github.com/aminueza/terraform-provider-minio/v3

go 1.20

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down

0 comments on commit a3dadb6

Please sign in to comment.