- Create buckets
- Create iam_user name with name of bucket and bind full permission to its bucket
Name | Version |
---|---|
terraform | >= 0.13.0 |
Name | Version |
---|---|
minio | 1.10.2 |
Ref: variables.tf
terragrunt.hcl
terraform {
source = "github.com/hpsony94/terraform-module-minio"
}
inputs = merge(
yamldecode(
file("${get_terragrunt_dir()}/values.yml"),
),
)
values.yml
minio_server: minio:9000
minio_access_key: admin
minio_secret_key: secretsecret
buckets:
- name: test01
acl: private
- name: test02
acl: public