Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 507 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 507 Bytes

AWS S3 Bucket Terraform module

Terraform module which creates an S3 bucket with logging and a policy for secure connections only

Usage

module "s3" {
  source                = "shadbury/s3/aws"
  version               = "1.0.2"
  bucket_key            = "aws_bucket"
  logging_bucket        = "aws_log_bucket"
  create_logging_bucket = false # Set to false if a logging bucket already exists
  public_access         = false # If false, this apply public access restrictions to the bucket
}