From bf5eadb981008eca2e3829c384337c2977b6588e Mon Sep 17 00:00:00 2001 From: jamesmaddox-cf <98417364+jamesmaddox-cf@users.noreply.github.com> Date: Tue, 26 Sep 2023 16:28:00 -0400 Subject: [PATCH] Updated README --- README.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 246a143..1dd3b8a 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,13 @@ -## ACE AWS S3 +# AWS S3 Terraform Module +## Description + +This module creates an S3 bucket with a bucket policy, versioning enabled, logging enabled, and a bucket lifecycle policy configured. + +FedRAMP Compliance: Moderate, High ## Dependencies @@ -13,13 +18,9 @@ ## Resource List -Insert a high-level list of resources created as a part of this module. E.g. - - S3 bucket - S3 bucket IAM policies -## Code Updates - ## Deployment Steps This module can be called as outlined below. @@ -38,10 +39,10 @@ provider "aws" { features {} } -module "core_sa" { - source = "github.com/Coalfire-CF/ACE-AWS-S3?ref=vX.X.X" - +module "s3_bucket" { + source = "github.com/Coalfire-CF/terraform-aws-s3" + name = "s3-bucket-name" } ```