From 6f087e306a821d1f38703632ecc45c156ef1b6a4 Mon Sep 17 00:00:00 2001 From: badra001 Date: Wed, 17 Nov 2021 14:07:34 -0500 Subject: [PATCH] update readme --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ac22a46..935b4b4 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # About aws-s3 This module allows you to create an S3 bucket, either a standard bucket or a bucket used for FTI (Title26) -data. +data. You can also create a KMS key to be used by a bucket. This was formerly named `aws-t26-s3`. @@ -29,4 +29,15 @@ module "mybucket" { } ``` +* [KMS Key](kms_key) + +```hcl +module "simple-key" { + source = "git@github.e.it.census.gov:terraform-modules/aws-s3.git//kms_key" + key_name = "my-simple-key" +} +``` + See each section for additional information. + +