Skip to content

Commit

Permalink
Update module to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
felladrin committed Nov 9, 2024
1 parent d1a9ab6 commit e4116c3
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
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 e4116c3

Please sign in to comment.