Skip to content

hpsony94/terraform-module-minio

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

terraform-module-minio

Description

  • Create buckets
  • Create iam_user name with name of bucket and bind full permission to its bucket

Requirements

Name Version
terraform >= 0.13.0

Providers

Name Version
minio 1.10.2

Inputs

Ref: variables.tf

Example

Terragrunt

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