diff --git a/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md
similarity index 100%
rename from CODE_OF_CONDUCT.md
rename to .github/CODE_OF_CONDUCT.md
diff --git a/CONTRIBUTING.md b/.github/CONTRIBUTING.md
similarity index 89%
rename from CONTRIBUTING.md
rename to .github/CONTRIBUTING.md
index 63d4fe8b..f74cffe4 100644
--- a/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -1,9 +1,4 @@
-# Contribution Code
-| for guideline := range guidelines {
- Do Contribution
-}
-
-## Welcome
+# Contributing to this Provider
Thank you so much for considering to contribute!
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated** ♥.
diff --git a/.gitpod.yml b/.gitpod.yml
deleted file mode 100644
index e5245ae3..00000000
--- a/.gitpod.yml
+++ /dev/null
@@ -1,37 +0,0 @@
-tasks:
- - command: >
- export DOCKER_COMPOSE_GITPOD_PATH=/tmp/docker-compose.gitpod.yml &&
- cp docker-compose.yml ${DOCKER_COMPOSE_GITPOD_PATH} &&
- sed -i 's/http:\/\/localhost:8080/$API_BASE_URL/g' ${DOCKER_COMPOSE_GITPOD_PATH} &&
- export API_BASE_URL=`gp url 8080` &&
- docker-compose -f ${DOCKER_COMPOSE_GITPOD_PATH} up
- - init: go get -v -t -d ./...
- command: >
- (cd /tmp && brew install hashicorp/tap/terraform go-task/tap/go-task minio-mc) &&
- task install &&
- gp ports await 9000 &&
- gp ports await 8080 &&
- gp ports await 8000 &&
- mc alias set local http://localhost:9000 minio minio123 &&
- echo "MinIO Local Server Stats:" &&
- mc admin info local
-
-ports:
- - port: 9000
- name: MinIO Server
- onOpen: ignore
- - port: 9001
- name: MinIO Server Console
- onOpen: ignore
- - port: 8080
- name: AdminIO Server
- onOpen: ignore
- - port: 8000
- name: AdminIO-UI Server
- onOpen: open-preview
-
-vscode:
- extensions:
- - golang.go
- - hashicorp.terraform
- - streetsidesoftware.code-spell-checker
diff --git a/README.md b/README.md
index 322e11a6..de0fd616 100644
--- a/README.md
+++ b/README.md
@@ -10,9 +10,6 @@
-
-
-
@@ -46,7 +43,7 @@ Made with ♥ using [Go](https://golang
## Supported Versions
-- Terraform v1.3
+- Terraform v1.4
- Go v1.19
It doesn't mean that this provider won't run on previous versions of Terraform or Go, though.
@@ -113,15 +110,15 @@ For testing locally, run the docker compose to spin up a minio server:
docker-compose up
```
-Access localhost:8000 on your browser, apply your terraform templates and watch them going live.
+Access `http://localhost:8000` on your browser, apply your terraform templates and watch them going live.
## Usage
-See our [Examples](./examples/) folder.
+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](./CONTRIBUTING.md) for more information.
+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.
## License
diff --git a/docker-compose.yml b/docker-compose.yml
index 0e43d536..0de55667 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -1,7 +1,7 @@
version: "3"
services:
minio:
- image: docker.io/minio/minio:RELEASE.2022-10-21T22-37-48Z
+ image: minio/minio:RELEASE.2023-03-13T19-46-17Z
ports:
- "9000:9000"
- "9001:9001"
@@ -13,7 +13,7 @@ services:
MINIO_NOTIFY_WEBHOOK_ENDPOINT_primary: https://webhook.example.com
command: server --console-address :9001 /data{0...3}
adminio-ui:
- image: docker.io/rzrbld/adminio-ui:v1.93
+ image: rzrbld/adminio-ui:v1.93-210123
environment:
API_BASE_URL: "http://localhost:8080"
ADMINIO_MULTI_BACKEND: "false"
@@ -22,7 +22,7 @@ services:
ports:
- "8000:80"
adminio-api:
- image: docker.io/rzrbld/adminio-api:v1.84
+ image: rzrbld/adminio-api:v1.84-210123
environment:
MINIO_ACCESS: minio
MINIO_SECRET: minio123