https://github.com/rongfengliang/terraform-minio-s3-provider-demo
terraform-minio-s3-provider-demo
https://github.com/rongfengliang/terraform-minio-s3-provider-demo
docker-compose ias minio s3 terraform
Last synced: 7 months ago
JSON representation
terraform-minio-s3-provider-demo
- Host: GitHub
- URL: https://github.com/rongfengliang/terraform-minio-s3-provider-demo
- Owner: rongfengliang
- Created: 2019-03-25T05:43:26.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-25T06:16:03.000Z (over 6 years ago)
- Last Synced: 2025-02-23T13:59:13.363Z (8 months ago)
- Topics: docker-compose, ias, minio, s3, terraform
- Language: HCL
- Size: 10.3 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# terraform with minio
## how to running
* install s3 provider
```code
go get github.com/negronjl/terraform-provider-s3
go install github.com/negronjl/terraform-provider-s3
```* start minio s3 server
> use docker-compose
```code
docker-compose up -d```
* add plugin
> note platform deps you os my os is mac so is will be darwin_amd64
```code
you must copy terraform-provider-s3 binary file to ./.terraform/plugins//
```* init terraform
```code
terraform init
```* view plan for this deploy
```code
terraform plan
```* deploy
```code
terraform deploy
```* change bucket policy for user view webpage
```code
with * Ready Only
```