This Terraform module creates an S3 bucket as well as an IAM user and key with access to the bucket.
- name - S3 Bucket name. This name will also be used create the IAM user.
- iam_access_key_id - IAM access key
- iam_access_key_secret - IAM access secret
module "s3" {
source = "github.com/mondorobot/terraform-s3"
name = "S3-bucket-name"
}