Terraform module which creates s3 resources on AWS.
These types of resources are supported:
Root module calls these modules which can also be used separately to create independent resources:
- bucket - Provides a S3 bucket resource.
- notification - Provides a S3 bucket notification resource.
- policy - Attaches a policy to an S3 bucket resource.
module "s3module" {
source = "github.com/javilac/terraform-aws-s3"
bucket = "examplebucket"
region = "eu-west-1"
tags {
env = "pre"
app = "example"
country = "ES"
project = "example"
}
}Module created by Javier Avila.
Apache 2 Licensed. See LICENSE for full details.