2018-04-05 20:28:39 +00:00
|
|
|
---
|
2020-01-18 00:18:09 +00:00
|
|
|
layout: guides
|
|
|
|
page_title: Vault Auto-unseal using AWS KMS - Guides
|
2018-04-05 20:28:39 +00:00
|
|
|
description: |-
|
|
|
|
In this guide, we'll show an example of how to use Terraform to provision an
|
|
|
|
instance that can utilize an encryption key from AWS Key Management Services
|
|
|
|
to unseal Vault.
|
|
|
|
---
|
|
|
|
|
|
|
|
# Vault Auto-unseal using AWS Key Management Service
|
|
|
|
|
|
|
|
~> **Enterprise Only:** Vault auto-unseal feature is a part of _Vault Enterprise Pro_.
|
|
|
|
|
|
|
|
When a Vault server is started, it starts in a
|
2020-01-22 20:05:41 +00:00
|
|
|
[**_sealed_**](/docs/concepts/seal) state and it does not know how to
|
2018-04-05 20:28:39 +00:00
|
|
|
decrypt data. Before any operation can be performed on the Vault, it must be
|
|
|
|
unsealed. Unsealing is the process of constructing the master key necessary to
|
|
|
|
decrypt the data encryption key.
|
|
|
|
|
New Docs Website (#5535)
* conversion stage 1
* correct image paths
* add sidebar title to frontmatter
* docs/concepts and docs/internals
* configuration docs and multi-level nav corrections
* commands docs, index file corrections, small item nav correction
* secrets converted
* auth
* add enterprise and agent docs
* add extra dividers
* secret section, wip
* correct sidebar nav title in front matter for apu section, start working on api items
* auth and backend, a couple directory structure fixes
* remove old docs
* intro side nav converted
* reset sidebar styles, add hashi-global-styles
* basic styling for nav sidebar
* folder collapse functionality
* patch up border length on last list item
* wip restructure for content component
* taking middleman hacking to the extreme, but its working
* small css fix
* add new mega nav
* fix a small mistake from the rebase
* fix a content resolution issue with middleman
* title a couple missing docs pages
* update deps, remove temporary markup
* community page
* footer to layout, community page css adjustments
* wip downloads page
* deps updated, downloads page ready
* fix community page
* homepage progress
* add components, adjust spacing
* docs and api landing pages
* a bunch of fixes, add docs and api landing pages
* update deps, add deploy scripts
* add readme note
* update deploy command
* overview page, index title
* Update doc fields
Note this still requires the link fields to be populated -- this is solely related to copy on the description fields
* Update api_basic_categories.yml
Updated API category descriptions. Like the document descriptions you'll still need to update the link headers to the proper target pages.
* Add bottom hero, adjust CSS, responsive friendly
* Add mega nav title
* homepage adjustments, asset boosts
* small fixes
* docs page styling fixes
* meganav title
* some category link corrections
* Update API categories page
updated to reflect the second level headings for api categories
* Update docs_detailed_categories.yml
Updated to represent the existing docs structure
* Update docs_detailed_categories.yml
* docs page data fix, extra operator page remove
* api data fix
* fix makefile
* update deps, add product subnav to docs and api landing pages
* Rearrange non-hands-on guides to _docs_
Since there is no place for these on learn.hashicorp, we'll put them
under _docs_.
* WIP Redirects for guides to docs
* content and component updates
* font weight hotfix, redirects
* fix guides and intro sidenavs
* fix some redirects
* small style tweaks
* Redirects to learn and internally to docs
* Remove redirect to `/vault`
* Remove `.html` from destination on redirects
* fix incorrect index redirect
* final touchups
* address feedback from michell for makefile and product downloads
2018-10-19 15:40:11 +00:00
|
|
|
![Unseal with Shamir's Secret Sharing](/img/vault-autounseal.png)
|
2018-04-05 20:28:39 +00:00
|
|
|
|
|
|
|
This guide demonstrates an example of how to use Terraform to provision an
|
|
|
|
instance that can utilize an encryption key from [AWS Key Management Services
|
|
|
|
(KMS)](https://aws.amazon.com/kms/) to unseal Vault.
|
|
|
|
|
|
|
|
## Reference Material
|
|
|
|
|
2020-01-22 20:05:41 +00:00
|
|
|
- [Vault Auto Unseal](/docs/configuration/seal)
|
|
|
|
- [Configuration: `awskms` Seal](/docs/configuration/seal/awskms)
|
2018-04-05 20:28:39 +00:00
|
|
|
|
|
|
|
## Estimated Time to Complete
|
|
|
|
|
|
|
|
10 minutes
|
|
|
|
|
|
|
|
## Personas
|
|
|
|
|
|
|
|
The steps described in this guide are typically performed by **operations**
|
|
|
|
persona.
|
|
|
|
|
|
|
|
## Challenge
|
|
|
|
|
|
|
|
Vault unseal operation requires a quorum of existing unseal keys split by
|
|
|
|
Shamir's Secret sharing algorithm. This is done so that the "_keys to the
|
2020-01-18 00:18:09 +00:00
|
|
|
kingdom_" won't fall into one person's hand. However, this process is manual
|
2018-04-05 20:28:39 +00:00
|
|
|
and can become painful when you have many Vault clusters as there are now
|
|
|
|
many different key holders with many different keys.
|
|
|
|
|
|
|
|
## Solution
|
|
|
|
|
2018-09-20 20:58:29 +00:00
|
|
|
Vault Enterprise supports opt-in automatic unsealing via cloud technologies:
|
|
|
|
Amazon KMS, Azure Key Vault or GCP Cloud KMS. This feature enables operators to
|
|
|
|
delegate the unsealing process to trusted cloud providers to ease operations in
|
|
|
|
the event of partial failure and to aid in the creation of new or ephemeral
|
|
|
|
clusters.
|
2018-04-05 20:28:39 +00:00
|
|
|
|
New Docs Website (#5535)
* conversion stage 1
* correct image paths
* add sidebar title to frontmatter
* docs/concepts and docs/internals
* configuration docs and multi-level nav corrections
* commands docs, index file corrections, small item nav correction
* secrets converted
* auth
* add enterprise and agent docs
* add extra dividers
* secret section, wip
* correct sidebar nav title in front matter for apu section, start working on api items
* auth and backend, a couple directory structure fixes
* remove old docs
* intro side nav converted
* reset sidebar styles, add hashi-global-styles
* basic styling for nav sidebar
* folder collapse functionality
* patch up border length on last list item
* wip restructure for content component
* taking middleman hacking to the extreme, but its working
* small css fix
* add new mega nav
* fix a small mistake from the rebase
* fix a content resolution issue with middleman
* title a couple missing docs pages
* update deps, remove temporary markup
* community page
* footer to layout, community page css adjustments
* wip downloads page
* deps updated, downloads page ready
* fix community page
* homepage progress
* add components, adjust spacing
* docs and api landing pages
* a bunch of fixes, add docs and api landing pages
* update deps, add deploy scripts
* add readme note
* update deploy command
* overview page, index title
* Update doc fields
Note this still requires the link fields to be populated -- this is solely related to copy on the description fields
* Update api_basic_categories.yml
Updated API category descriptions. Like the document descriptions you'll still need to update the link headers to the proper target pages.
* Add bottom hero, adjust CSS, responsive friendly
* Add mega nav title
* homepage adjustments, asset boosts
* small fixes
* docs page styling fixes
* meganav title
* some category link corrections
* Update API categories page
updated to reflect the second level headings for api categories
* Update docs_detailed_categories.yml
Updated to represent the existing docs structure
* Update docs_detailed_categories.yml
* docs page data fix, extra operator page remove
* api data fix
* fix makefile
* update deps, add product subnav to docs and api landing pages
* Rearrange non-hands-on guides to _docs_
Since there is no place for these on learn.hashicorp, we'll put them
under _docs_.
* WIP Redirects for guides to docs
* content and component updates
* font weight hotfix, redirects
* fix guides and intro sidenavs
* fix some redirects
* small style tweaks
* Redirects to learn and internally to docs
* Remove redirect to `/vault`
* Remove `.html` from destination on redirects
* fix incorrect index redirect
* final touchups
* address feedback from michell for makefile and product downloads
2018-10-19 15:40:11 +00:00
|
|
|
![Unseal with AWS KMS](/img/vault-autounseal-2.png)
|
2018-04-05 20:28:39 +00:00
|
|
|
|
|
|
|
## Prerequisites
|
|
|
|
|
2020-01-18 00:18:09 +00:00
|
|
|
This guide assumes the following:
|
2018-04-05 20:28:39 +00:00
|
|
|
|
2020-01-18 00:18:09 +00:00
|
|
|
- Access to **Vault Enterprise 0.9.0 or later**
|
2018-04-05 20:28:39 +00:00
|
|
|
- A URL to download Vault Enterprise from (an Amazon S3 bucket will suffice)
|
|
|
|
- AWS account for provisioning cloud resources
|
2020-01-22 20:05:41 +00:00
|
|
|
- [Terraform installed](https://www.terraform.io/intro/getting-started/install)
|
2020-01-18 00:18:09 +00:00
|
|
|
and basic understanding of its usage
|
2018-04-05 20:28:39 +00:00
|
|
|
|
|
|
|
### Download demo assets
|
|
|
|
|
|
|
|
Clone or download the demo assets from the
|
2018-07-20 18:46:12 +00:00
|
|
|
[hashicorp/vault-guides](https://github.com/hashicorp/vault-guides/tree/master/operations/aws-kms-unseal/terraform-aws)
|
2018-04-05 20:28:39 +00:00
|
|
|
GitHub repository to perform the steps described in this guide.
|
|
|
|
|
|
|
|
## Steps
|
|
|
|
|
|
|
|
This guide demonstrates how to implement and use the Auto-unseal feature using
|
2020-01-18 00:18:09 +00:00
|
|
|
AWS KMS. Included is a Terraform configuration that has the following:
|
2018-04-05 20:28:39 +00:00
|
|
|
|
2020-01-18 00:18:09 +00:00
|
|
|
- Ubuntu 16.04 LTS with Vault Enterprise
|
|
|
|
- An instance profile granting the Amazon EC2 instance to an AWS KMS key
|
|
|
|
- Vault configured with access to an AWS KMS key
|
2018-04-05 20:28:39 +00:00
|
|
|
|
New Docs Website (#5535)
* conversion stage 1
* correct image paths
* add sidebar title to frontmatter
* docs/concepts and docs/internals
* configuration docs and multi-level nav corrections
* commands docs, index file corrections, small item nav correction
* secrets converted
* auth
* add enterprise and agent docs
* add extra dividers
* secret section, wip
* correct sidebar nav title in front matter for apu section, start working on api items
* auth and backend, a couple directory structure fixes
* remove old docs
* intro side nav converted
* reset sidebar styles, add hashi-global-styles
* basic styling for nav sidebar
* folder collapse functionality
* patch up border length on last list item
* wip restructure for content component
* taking middleman hacking to the extreme, but its working
* small css fix
* add new mega nav
* fix a small mistake from the rebase
* fix a content resolution issue with middleman
* title a couple missing docs pages
* update deps, remove temporary markup
* community page
* footer to layout, community page css adjustments
* wip downloads page
* deps updated, downloads page ready
* fix community page
* homepage progress
* add components, adjust spacing
* docs and api landing pages
* a bunch of fixes, add docs and api landing pages
* update deps, add deploy scripts
* add readme note
* update deploy command
* overview page, index title
* Update doc fields
Note this still requires the link fields to be populated -- this is solely related to copy on the description fields
* Update api_basic_categories.yml
Updated API category descriptions. Like the document descriptions you'll still need to update the link headers to the proper target pages.
* Add bottom hero, adjust CSS, responsive friendly
* Add mega nav title
* homepage adjustments, asset boosts
* small fixes
* docs page styling fixes
* meganav title
* some category link corrections
* Update API categories page
updated to reflect the second level headings for api categories
* Update docs_detailed_categories.yml
Updated to represent the existing docs structure
* Update docs_detailed_categories.yml
* docs page data fix, extra operator page remove
* api data fix
* fix makefile
* update deps, add product subnav to docs and api landing pages
* Rearrange non-hands-on guides to _docs_
Since there is no place for these on learn.hashicorp, we'll put them
under _docs_.
* WIP Redirects for guides to docs
* content and component updates
* font weight hotfix, redirects
* fix guides and intro sidenavs
* fix some redirects
* small style tweaks
* Redirects to learn and internally to docs
* Remove redirect to `/vault`
* Remove `.html` from destination on redirects
* fix incorrect index redirect
* final touchups
* address feedback from michell for makefile and product downloads
2018-10-19 15:40:11 +00:00
|
|
|
[![YouTube](/img/vault-autounseal-4.png)](https://youtu.be/iRyqOEDFIiY)
|
2018-04-05 20:28:39 +00:00
|
|
|
|
|
|
|
You are going to perform the following steps:
|
|
|
|
|
|
|
|
1. [Provision the Cloud Resources](#step-1-provision-the-cloud-resources)
|
|
|
|
1. [Test the Auto-unseal Feature](#step-2-test-the-auto-unseal-feature)
|
|
|
|
1. [Clean Up](#step-3-clean-up)
|
|
|
|
|
|
|
|
### Step 1: Provision the Cloud Resources
|
|
|
|
|
|
|
|
**Task 1:** Be sure to set your working directory to where the
|
2018-07-20 18:46:12 +00:00
|
|
|
[`/operations/aws-kms-unseal/terraform-aws`](#download-demo-assets) folder is
|
|
|
|
located.
|
2018-04-05 20:28:39 +00:00
|
|
|
|
|
|
|
The working directory should contain the provided Terraform files:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
~/git/vault-guides/operations/aws-kms-unseal/terraform$ tree
|
|
|
|
.
|
|
|
|
├── README.md
|
|
|
|
├── instance-profile.tf
|
|
|
|
├── instance.tf
|
|
|
|
├── main.tf
|
|
|
|
├── ssh-key.tf
|
|
|
|
├── terraform.tfvars.example
|
|
|
|
├── userdata.tpl
|
|
|
|
└── variables.tf
|
|
|
|
```
|
|
|
|
|
|
|
|
**Task 2:** Set your AWS credentials as environment variables:
|
|
|
|
|
2020-05-21 17:18:17 +00:00
|
|
|
```shell-session
|
2018-04-05 20:28:39 +00:00
|
|
|
$ export AWS_ACCESS_KEY_ID = "<YOUR_AWS_ACCESS_KEY_ID>"
|
|
|
|
|
|
|
|
$ export AWS_SECRET_ACCESS_KEY = "<YOUR_AWS_SECRET_ACCESS_KEY>"
|
|
|
|
```
|
|
|
|
|
2018-07-20 18:46:12 +00:00
|
|
|
Create a file named **`terraform.tfvars`** and specify your Vault Enterprise
|
2018-09-20 20:58:29 +00:00
|
|
|
binary download URL.
|
2018-04-05 20:28:39 +00:00
|
|
|
|
2018-07-20 18:46:12 +00:00
|
|
|
**Example:**
|
2018-04-05 20:28:39 +00:00
|
|
|
|
|
|
|
```plaintext
|
2018-07-20 18:46:12 +00:00
|
|
|
vault_url = "https://s3-us-west-2.amazonaws.com/hc-enterprise-binaries/vault/ent/0.10.3/vault-enterprise_0.10.3%2Bent_linux_amd64.zip"
|
2018-04-05 20:28:39 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
**Task 3:** Perform a **`terraform init`** to pull down the necessary provider
|
|
|
|
resources. Then **`terraform plan`** to verify your changes and the resources that
|
|
|
|
will be created. If all looks good, then perform a **`terraform apply`** to
|
|
|
|
provision the resources.
|
|
|
|
|
2020-05-21 17:18:17 +00:00
|
|
|
```shell-session
|
2018-04-05 20:28:39 +00:00
|
|
|
$ terraform init
|
|
|
|
Initializing provider plugins...
|
|
|
|
...
|
|
|
|
Terraform has been successfully initialized!
|
|
|
|
|
|
|
|
|
|
|
|
$ terraform plan
|
|
|
|
...
|
|
|
|
Plan: 15 to add, 0 to change, 0 to destroy.
|
|
|
|
|
|
|
|
|
|
|
|
$ terraform apply
|
|
|
|
...
|
|
|
|
Apply complete! Resources: 15 added, 0 changed, 0 destroyed.
|
|
|
|
|
|
|
|
Outputs:
|
|
|
|
|
|
|
|
connections = Connect to Vault via SSH ssh ubuntu@192.0.2.1 -i private.key
|
|
|
|
Vault Enterprise web interface http://192.0.2.1:8200/ui
|
|
|
|
```
|
|
|
|
|
|
|
|
**NOTE:** The Terraform output will display the public IP address to SSH into
|
|
|
|
your server as well as the Vault Enterprise web interface address.
|
|
|
|
|
|
|
|
### Step 2: Test the Auto-unseal Feature
|
|
|
|
|
|
|
|
SSH into the provisioned EC2 instance.
|
|
|
|
|
2020-05-21 17:18:17 +00:00
|
|
|
```shell-session
|
2018-04-05 20:28:39 +00:00
|
|
|
$ ssh ubuntu@192.0.2.1 -i private.key
|
|
|
|
...
|
|
|
|
Are you sure you want to continue connecting (yes/no)? yes
|
|
|
|
```
|
2020-01-18 00:18:09 +00:00
|
|
|
|
2018-04-05 20:28:39 +00:00
|
|
|
When you are prompted, enter "yes" to continue.
|
|
|
|
|
|
|
|
To verify that Vault has been installed, run `vault status` command which should
|
|
|
|
return "_server is not yet initialized_" message.
|
|
|
|
|
2020-05-21 17:18:17 +00:00
|
|
|
```shell-session
|
2018-04-05 20:28:39 +00:00
|
|
|
$ export VAULT_ADDR=http://127.0.0.1:8200
|
|
|
|
|
|
|
|
$ vault status
|
|
|
|
Error checking seal status: Error making API request.
|
|
|
|
|
|
|
|
URL: GET http://127.0.0.1:8200/v1/sys/seal-status
|
|
|
|
Code: 400. Errors:
|
|
|
|
|
|
|
|
* server is not yet initialized
|
|
|
|
```
|
|
|
|
|
|
|
|
Run the **`vault operator init`** command to initialize the Vault server by
|
|
|
|
setting its key share to be **`1`** as follow:
|
|
|
|
|
2020-05-21 17:18:17 +00:00
|
|
|
```shell-session
|
2018-04-05 20:28:39 +00:00
|
|
|
$ vault operator init -stored-shares=1 -recovery-shares=1 -recovery-threshold=1 -key-shares=1 -key-threshold=1
|
|
|
|
Recovery Key 1: oOxAQfxcZitjqZfF3984De8rUckPeahQDUvmJ1A4JrQ=
|
|
|
|
Initial Root Token: 54c4dbe3-d45b-79d9-18d0-602831a6a991
|
|
|
|
|
|
|
|
Vault initialized successfully.
|
|
|
|
|
|
|
|
Recovery key initialized with 1 keys and a key threshold of 1. Please
|
|
|
|
securely distribute the above keys.
|
|
|
|
```
|
|
|
|
|
|
|
|
Stop and start the Vault server:
|
|
|
|
|
2020-05-21 17:18:17 +00:00
|
|
|
```shell-session
|
2018-04-05 20:28:39 +00:00
|
|
|
$ sudo systemctl stop vault
|
|
|
|
|
|
|
|
$ vault status
|
|
|
|
Error checking seal status: Get http://127.0.0.1:8200/v1/sys/seal-status: dial tcp 127.0.0.1:8200: getsockopt: connection refused
|
|
|
|
|
|
|
|
$ sudo systemctl start vault
|
|
|
|
```
|
|
|
|
|
|
|
|
Check the Vault status to verify that it has been started and unsealed.
|
|
|
|
|
2020-05-21 17:18:17 +00:00
|
|
|
```shell-session
|
2018-04-05 20:28:39 +00:00
|
|
|
$ vault status
|
|
|
|
Type: shamir
|
|
|
|
Sealed: false
|
|
|
|
Key Shares: 1
|
|
|
|
Key Threshold: 1
|
|
|
|
Unseal Progress: 0
|
|
|
|
Unseal Nonce:
|
|
|
|
Version: 0.9.6+prem.hsm
|
|
|
|
Cluster Name: vault-cluster-01cf6f33
|
|
|
|
Cluster ID: fb787d8a-b882-fee8-b461-445320cde311
|
|
|
|
|
|
|
|
High-Availability Enabled: false
|
|
|
|
```
|
|
|
|
|
|
|
|
Log into Vault using the generated initial root token:
|
|
|
|
|
2020-05-21 17:18:17 +00:00
|
|
|
```shell-session
|
2018-04-05 20:28:39 +00:00
|
|
|
$ vault login 54c4dbe3-d45b-79d9-18d0-602831a6a991
|
|
|
|
Successfully authenticated! You are now logged in.
|
|
|
|
token: 54c4dbe3-d45b-79d9-18d0-602831a6a991
|
|
|
|
token_duration: 0
|
|
|
|
token_policies: [root]
|
|
|
|
```
|
|
|
|
|
|
|
|
Review the Vault configuration file (`/etc/vault.d/vault.hcl`).
|
|
|
|
|
2020-05-21 17:18:17 +00:00
|
|
|
```shell-session
|
2018-04-05 20:28:39 +00:00
|
|
|
$ cat /etc/vault.d/vault.hcl
|
|
|
|
storage "file" {
|
|
|
|
path = "/opt/vault"
|
|
|
|
}
|
|
|
|
listener "tcp" {
|
|
|
|
address = "0.0.0.0:8200"
|
|
|
|
tls_disable = 1
|
|
|
|
}
|
|
|
|
seal "awskms" {
|
|
|
|
kms_key_id = "d7c1ffd9-8cce-45e7-be4a-bb38dd205966"
|
|
|
|
}
|
|
|
|
ui=true
|
|
|
|
```
|
|
|
|
|
|
|
|
Notice the Vault configuration file defines the [`awskms`
|
2020-01-22 20:05:41 +00:00
|
|
|
stanza](/docs/configuration/seal/awskms) which sets the AWS KMS key ID to
|
2018-04-05 20:28:39 +00:00
|
|
|
use for encryption and decryption.
|
|
|
|
|
|
|
|
At this point, you should be able to launch the Vault Enterprise UI by entering
|
|
|
|
the address provided in the `terraform apply` outputs (e.g. http://192.0.2.1:8200/ui)
|
|
|
|
and log in with your initial root token.
|
|
|
|
|
New Docs Website (#5535)
* conversion stage 1
* correct image paths
* add sidebar title to frontmatter
* docs/concepts and docs/internals
* configuration docs and multi-level nav corrections
* commands docs, index file corrections, small item nav correction
* secrets converted
* auth
* add enterprise and agent docs
* add extra dividers
* secret section, wip
* correct sidebar nav title in front matter for apu section, start working on api items
* auth and backend, a couple directory structure fixes
* remove old docs
* intro side nav converted
* reset sidebar styles, add hashi-global-styles
* basic styling for nav sidebar
* folder collapse functionality
* patch up border length on last list item
* wip restructure for content component
* taking middleman hacking to the extreme, but its working
* small css fix
* add new mega nav
* fix a small mistake from the rebase
* fix a content resolution issue with middleman
* title a couple missing docs pages
* update deps, remove temporary markup
* community page
* footer to layout, community page css adjustments
* wip downloads page
* deps updated, downloads page ready
* fix community page
* homepage progress
* add components, adjust spacing
* docs and api landing pages
* a bunch of fixes, add docs and api landing pages
* update deps, add deploy scripts
* add readme note
* update deploy command
* overview page, index title
* Update doc fields
Note this still requires the link fields to be populated -- this is solely related to copy on the description fields
* Update api_basic_categories.yml
Updated API category descriptions. Like the document descriptions you'll still need to update the link headers to the proper target pages.
* Add bottom hero, adjust CSS, responsive friendly
* Add mega nav title
* homepage adjustments, asset boosts
* small fixes
* docs page styling fixes
* meganav title
* some category link corrections
* Update API categories page
updated to reflect the second level headings for api categories
* Update docs_detailed_categories.yml
Updated to represent the existing docs structure
* Update docs_detailed_categories.yml
* docs page data fix, extra operator page remove
* api data fix
* fix makefile
* update deps, add product subnav to docs and api landing pages
* Rearrange non-hands-on guides to _docs_
Since there is no place for these on learn.hashicorp, we'll put them
under _docs_.
* WIP Redirects for guides to docs
* content and component updates
* font weight hotfix, redirects
* fix guides and intro sidenavs
* fix some redirects
* small style tweaks
* Redirects to learn and internally to docs
* Remove redirect to `/vault`
* Remove `.html` from destination on redirects
* fix incorrect index redirect
* final touchups
* address feedback from michell for makefile and product downloads
2018-10-19 15:40:11 +00:00
|
|
|
![Vault Enterprise UI Login](/img/vault-autounseal-3.png)
|
2018-04-05 20:28:39 +00:00
|
|
|
|
|
|
|
### Step 3: Clean Up
|
|
|
|
|
|
|
|
Once completed, execute the following commands to clean up:
|
|
|
|
|
2020-05-21 17:18:17 +00:00
|
|
|
```shell-session
|
2018-04-05 20:28:39 +00:00
|
|
|
$ terraform destroy -force
|
|
|
|
|
|
|
|
$ rm -rf .terraform terraform.tfstate* private.key
|
|
|
|
```
|
|
|
|
|
|
|
|
## Next steps
|
|
|
|
|
|
|
|
Once you have a Vault environment setup, the next step is to write policies.
|
2020-01-22 20:05:41 +00:00
|
|
|
Read [Policies](/guides/identity/policies) to learn how to write policies
|
2018-04-05 20:28:39 +00:00
|
|
|
to govern the behavior of clients.
|