Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update repository URL #520

Merged
merged 1 commit into from
Sep 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Contributions are what make the open source community such an amazing place to b
2. Create your Feature Branch (`git checkout -b feature/TerraformFeature`)
3. Commit your Changes (`git commit -m 'Add some TerraformFeature'`)
4. Push to the Branch (`git push origin feature/TerraformFeature`)
5. Open a [Pull Request](https://github.com/aminueza/terraform-provider-minio/pulls)
5. Open a [Pull Request](https://github.com/terraform-provider-minio/terraform-provider-minio/pulls)

### Merging

Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
<p align="center">
<a href="https://github.com/aminueza/terraform-provider-minio">
<a href="https://github.com/terraform-provider-minio/terraform-provider-minio">
<img src="https://i.imgur.com/yijdDec.png" alt="minio-provider-terraform" width="200">
</a>
<h3 align="center" style="font-weight: bold">Terraform Provider for MinIO</h3>
<p align="center">
<a href="https://github.com/aminueza/terraform-provider-minio/graphs/contributors">
<img alt="Contributors" src="https://img.shields.io/github/contributors/aminueza/terraform-provider-minio">
<a href="https://github.com/terraform-provider-minio/terraform-provider-minio/graphs/contributors">
<img alt="Contributors" src="https://img.shields.io/github/contributors/terraform-provider-minio/terraform-provider-minio">
</a>
<a href="https://golang.org/doc/devel/release.html">
<img alt="GitHub go.mod Go version" src="https://img.shields.io/github/go-mod/go-version/aminueza/terraform-provider-minio">
<img alt="GitHub go.mod Go version" src="https://img.shields.io/github/go-mod/go-version/terraform-provider-minio/terraform-provider-minio">
</a>
<a href="https://github.com/aminueza/terraform-provider-minio/actions?query=workflow%3A%22Terraform+Provider+CI%22">
<img alt="GitHub Workflow Status" src="https://img.shields.io/github/actions/workflow/status/aminueza/terraform-provider-minio/go.yml?branch=master">
<a href="https://github.com/terraform-provider-minio/terraform-provider-minio/actions?query=workflow%3A%22Terraform+Provider+CI%22">
<img alt="GitHub Workflow Status" src="https://img.shields.io/github/actions/workflow/status/terraform-provider-minio/terraform-provider-minio/go.yml?branch=master">
</a>
<a href="https://github.com/aminueza/terraform-provider-minio/releases">
<img alt="GitHub release (latest by date including pre-releases)" src="https://img.shields.io/github/v/release/aminueza/terraform-provider-minio?include_prereleases">
<a href="https://github.com/terraform-provider-minio/terraform-provider-minio/releases">
<img alt="GitHub release (latest by date including pre-releases)" src="https://img.shields.io/github/v/release/terraform-provider-minio/terraform-provider-minio?include_prereleases">
</a>
</p>
<p align="center">
<a href="https://github.com/aminueza/terraform-provider-minio/tree/master/docs"><strong>Explore the docs »</strong></a>
<a href="https://github.com/terraform-provider-minio/terraform-provider-minio/tree/master/docs"><strong>Explore the docs »</strong></a>
</p>
</p>

Expand Down Expand Up @@ -51,7 +51,7 @@ It just means that we can't guarantee backward compatibility.

## Building and Installing

Prebuilt versions of this provider are available on the [releases page](https://github.com/aminueza/terraform-provider-minio/releases/latest).
Prebuilt versions of this provider are available on the [releases page](https://github.com/terraform-provider-minio/terraform-provider-minio/releases/latest).

But if you need to build it yourself, just download this repository, [install](https://taskfile.dev/#/installation) [Task](https://taskfile.dev/):

Expand Down Expand Up @@ -118,7 +118,7 @@ See our [examples](./examples/) folder.

## Roadmap

See the [open issues](https://github.com/aminueza/terraform-provider-minio/issues) for a list of proposed features (and known issues). See [CONTRIBUTING](./.github/CONTRIBUTING.md) for more information.
See the [open issues](https://github.com/terraform-provider-minio/terraform-provider-minio/issues) for a list of proposed features (and known issues). See [CONTRIBUTING](./.github/CONTRIBUTING.md) for more information.

## License

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
module github.com/terraform-provider-minio/terraform-provider-minio

go 1.19

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package main
import (
"flag"

"github.com/aminueza/terraform-provider-minio/minio"
"github.com/hashicorp/terraform-plugin-sdk/v2/plugin"
"github.com/terraform-provider-minio/terraform-provider-minio/minio"
)

func main() {
Expand Down