Terraform module which creates an S3 bucket with logging and a policy for secure connections only
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
}