Skip to content

peteski22/terraform-aws-vault-ent-starter

 
 

Repository files navigation

Vault Enterprise AWS Module

This is a Terraform module for provisioning Vault Enterprise with integrated storage on AWS. This module defaults to setting up a cluster with 5 Vault nodes (as recommended by the Vault with Integrated Storage Reference Architecture).

About This Module

This module implements the Vault with Integrated Storage Reference Architecture on AWS using the Enterprise version of Vault 1.8+.

How to Use This Module

  • Ensure your AWS credentials are configured correctly and have permission to use the following AWS services:

    • Amazon Certificate Manager (ACM)
    • Amazon EC2
    • Amazon Elastic Load Balancing (ALB)
    • AWS Identity & Access Management (IAM)
    • AWS Key Management System (KMS)
    • Amazon Simple Storage Service (S3)
    • Amazon Secrets Manager
    • AWS Systems Manager Session Manager (optional - used to connect to EC2 instances with session manager using the AWS CLI)
    • Amazon VPC
  • To deploy without an existing VPC, use the example VPC code to build out the pre-requisite environment. Ensure you are selecting a region that has at least three AWS Availability Zones.

  • To deploy into an existing VPC, ensure the following components exist and are routed to each other correctly:

    • Three public subnets
    • Three NAT gateways (one in each public subnet)
    • Three private subnets (please make sure your private subnets are specifically tagged so you can identify them. The Vault module will use these tags to deploy the Vault servers into them.)
  • Use the example code to create TLS certs and store them in AWS Secrets Manager along with importing them into AWS Certificate Manager

  • Create a Terraform configuration that pulls in the Vault module and specifies values for the required variables:

provider "aws" {
  # your AWS region
  region = "us-east-1"
}

module "vault-ent" {
  source  = "hashicorp/vault-ent-starter/aws"
  version = "0.1.2"

  # prefix for tagging/naming AWS resources
  resource_name_prefix = "test"
  # VPC ID you wish to deploy into
  vpc_id = "vpc-abc123xxx"
  # private subnet tags are required and allow you to filter which
  # subnets you will deploy your Vault nodes into
  private_subnet_tags = {
    Vault = "deploy"
  }
  # AWS Secrets Manager ARN where TLS certs are stored
  secrets_manager_arn = "arn:aws::secretsmanager:abc123xxx"
  # The shared DNS SAN of the TLS certs being used
  leader_tls_servername = "vault.server.com"
  # The cert ARN to be used on the Vault LB listener
  lb_certificate_arn = "arn:aws:acm:abc123xxx"

  vault_license_filepath = "/home/test/vault.hclic"
}
  • Run terraform init and terraform apply

  • You must initialize your Vault cluster after you create it. Begin by logging into your Vault cluster using one of the following methods:

    • Using Session Manager
    • SSH (you must provide the optional SSH key pair through the key_name variable and set a value for the allowed_inbound_cidrs_ssh variable.
      • Please note this Vault cluster is not public-facing. If you want to use SSH from outside the VPC, you are required to establish your own connection to it (VPN, etc).
  • To initialize the Vault cluster, run the following commands:

$ sudo -i
# vault operator init
  • This should return back the following output which includes the recovery keys and initial root token (omitted here):
...
Success! Vault is initialized
  • Please securely store the recovery keys and initial root token that Vault returns to you.
  • To check the status of your Vault cluster, export your Vault token and run the list-peers command:
# export VAULT_TOKEN="<your Vault token>"
# vault operator raft list-peers
  • Please note that Vault does not enable dead server cleanup by default. You must enable this to avoid manually managing the Raft configuration every time there is a change in the Vault ASG. To enable dead server cleanup, run the following command:
# vault operator raft autopilot set-config \
   -cleanup-dead-servers=true \
   -dead-server-last-contact-threshold=10 \
   -min-quorum=3
  • You can verify these settings after you apply them by running the following command:
# vault operator raft autopilot get-config

License

This code is released under the Mozilla Public License 2.0. Please see LICENSE for more details.

About

A Terraform Module for provisioning an Enterprise Vault cluster (using integrated storage) in AWS as described by HashiCorp reference architecture.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HCL 90.9%
  • Shell 9.1%