Coder Social home page Coder Social logo

cmateiasmypulse / terraform-aws-encrypted-bucket Goto Github PK

View Code? Open in Web Editor NEW

This project forked from infrablocks/terraform-aws-encrypted-bucket

0.0 0.0 0.0 444 KB

A terraform module for creating an encrypted bucket in S3

License: MIT License

Shell 6.78% Ruby 71.75% Smarty 0.45% HCL 21.01%

terraform-aws-encrypted-bucket's Introduction

Terraform AWS Encrypted Bucket

Atomic Logo

Built with ❤️ by Atomic


A Terraform module for building an encrypted bucket in AWS S3.

Build Status License Release

Usage

To use the module, include something like the following in your Terraform configuration:

module "encrypted_bucket" {
  source = "[email protected]:infrablocks/terraform-aws-encrypted-bucket.git//src"

  bucket_name = "my-organisations-encrypted-bucket"
}

See the Terraform registry entry for more details.

Inputs

Name Description Default Required
bucket_name The name to use for the encrypted S3 bucket. - yes
source_policy_document A source policy document for the bucket, additional statements to enable encryption will be added to the policy. "" no
acl The canned ACL to apply. "private" no
tags A map of additional tags to set on the bucket {} no
kms_key_arn If provided, "aws:kms" encryption will be enforced using the KMS key with the provided ARN. By default, "AES-256" encryption is used. "" no
access_log_bucket_name The name of the bucket to use for access logging, required when enable_access_logging is "yes". "" no
access_log_object_key_prefix The key prefix to use for log objects for access logging. "" no
public_access_block An object of public access block settings to apply to the bucket see below no
public_access_block.block_public_acls Whether to block public ACLs false no
public_access_block.block_public_policy Whether to block public bucket policies false no
public_access_block.ignore_public_acls Whether to ignore public ACLs false no
public_access_block.restrict_public_buckets Whether to restrict public buckets false no
enable_mfa_delete Whether or not to enable MFA delete on the bucket. false no
enable_versioning Whether or not to enable versioning on the bucket. true no
enable_access_logging Whether or not to enable access logging on the bucket. false no
enable_bucket_key Whether or not to use an Amazon S3 Bucket Key for SSE-KMS.. false no
allow_destroy_when_objects_present Whether or not to allow the bucket to be destroyed if it still contains objects. false no
include_deny_unencrypted_inflight_operations_statement Whether or not to include a bucket policy statement to deny unencrypted inflight operations. true no
include_deny_encryption_using_incorrect_algorithm_statement Whether or not to include a bucket policy statement to deny encryption using the incorrect algorithm. true no
include_deny_encryption_using_incorrect_key_statement Whether or not to include a bucket policy statement to deny encryption using the incorrect key. true no

By default, a bucket policy that enforces encrypted inflight operations, encryption using the correct algorithm, and encryption using the correct key is applied to the bucket.

In the case that further statements need to be applied, a source_policy_document can be provided and the additional statements will be added to this policy before being attached to the bucket

The provided tags map, when present will be merged with a compulsory tags map containing a Name tag equal to the bucket name.

Outputs

Name Description
bucket_name The name of the created bucket
bucket_arn The ARN of the created bucket

Compatibility

This module is compatible with Terraform versions greater than or equal to Terraform 1.0.

Required Permissions

  • s3:CreateBucket
  • s3:ListBucket
  • s3:GetBucketCORS
  • s3:GetBucketVersioning
  • s3:GetAccelerateConfiguration
  • s3:GetBucketRequestPayment
  • s3:GetBucketLogging
  • s3:GetLifecycleConfiguration
  • s3:GetReplicationConfiguration
  • s3:GetBucketLocation
  • s3:GetBucketTagging
  • s3:PutBucketTagging
  • s3:PutBucketVersioning
  • s3:PutBucketPolicy
  • s3:PutBucketAcl
  • s3:DeleteBucketPolicy
  • s3:DeleteBucket

If public access block settings are specified

  • s3:GetBucketPolicyStatus
  • s3:GetBucketPublicAccessBlock
  • s3:PutBucketPublicAccessBlock

Development

Machine Requirements

In order for the build to run correctly, a few tools will need to be installed on your development machine:

  • Ruby (3.1.1)
  • Bundler
  • git
  • git-crypt
  • gnupg
  • direnv
  • aws-vault

Mac OS X Setup

Installing the required tools is best managed by homebrew.

To install homebrew:

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Then, to install the required tools:

# ruby
brew install rbenv
brew install ruby-build
echo 'eval "$(rbenv init - bash)"' >> ~/.bash_profile
echo 'eval "$(rbenv init - zsh)"' >> ~/.zshrc
eval "$(rbenv init -)"
rbenv install 3.1.1
rbenv rehash
rbenv local 3.1.1
gem install bundler

# git, git-crypt, gnupg
brew install git
brew install git-crypt
brew install gnupg

# aws-vault
brew cask install

# direnv
brew install direnv
echo "$(direnv hook bash)" >> ~/.bash_profile
echo "$(direnv hook zsh)" >> ~/.zshrc
eval "$(direnv hook $SHELL)"

direnv allow <repository-directory>

Running the build

Running the build requires an AWS account and AWS credentials. You are free to configure credentials however you like as long as an access key ID and secret access key are available. These instructions utilise aws-vault which makes credential management easy and secure.

To provision module infrastructure, run tests and then destroy that infrastructure, execute:

aws-vault exec <profile> -- ./go

To provision the module prerequisites:

aws-vault exec <profile> -- ./go deployment:prerequisites:provision[<deployment_identifier>]

To provision the module contents:

aws-vault exec <profile> -- ./go deployment:root:provision[<deployment_identifier>]

To destroy the module contents:

aws-vault exec <profile> -- ./go deployment:root:destroy[<deployment_identifier>]

To destroy the module prerequisites:

aws-vault exec <profile> -- ./go deployment:prerequisites:destroy[<deployment_identifier>]

Configuration parameters can be overridden via environment variables:

DEPLOYMENT_IDENTIFIER=testing aws-vault exec <profile> -- ./go

When a deployment identifier is provided via an environment variable, infrastructure will not be destroyed at the end of test execution. This can be useful during development to avoid lengthy provision and destroy cycles.

By default, providers will be downloaded for each terraform execution. To cache providers between calls:

TF_PLUGIN_CACHE_DIR="$HOME/.terraform.d/plugin-cache" aws-vault exec <profile> -- ./go

Common Tasks

Generating an SSH key pair

To generate an SSH key pair:

ssh-keygen -m PEM -t rsa -b 4096 -C [email protected] -N '' -f config/secrets/keys/bastion/ssh

Generating a self-signed certificate

To generate a self signed certificate:

openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365

To decrypt the resulting key:

openssl rsa -in key.pem -out ssl.key

Managing CircleCI keys

To encrypt a GPG key for use by CircleCI:

openssl aes-256-cbc \
  -e \
  -md sha1 \
  -in ./config/secrets/ci/gpg.private \
  -out ./.circleci/gpg.private.enc \
  -k "<passphrase>"

To check decryption is working correctly:

openssl aes-256-cbc \
  -d \
  -md sha1 \
  -in ./.circleci/gpg.private.enc \
  -k "<passphrase>"

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/infrablocks/terraform-aws-encrypted-bucket. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The library is available as open source under the terms of the MIT License.

terraform-aws-encrypted-bucket's People

Contributors

tobyclemson avatar gryff avatar dependabot[bot] avatar infrablocks-maintainers avatar jonassvalin avatar corinchappy avatar claudiodavid-ai avatar aslam-kroo avatar vlad-ro avatar kishananjanakharwar avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.