Skip to content

Commit

Permalink
Updating for Vault 1.0 (hashicorp#73)
Browse files Browse the repository at this point in the history
* Updating for Vault 1.0

* Changed stop & start --> restart

* Removed 'Enterprise' from the output text msg

* beta1 -> beta2
  • Loading branch information
yhyakuna authored Nov 15, 2018
1 parent 1cf7ba0 commit 9d19dc3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
7 changes: 2 additions & 5 deletions operations/aws-kms-unseal/terraform-aws/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Vault Auto-unseal using AWS KMS

These assets are provided to perform the tasks described in the [Vault Auto-unseal with AWS KMS](https://www.vaultproject.io/guides/operations/autounseal-aws-kms.html) guide.
These assets are provided to perform the tasks described in the [Vault Auto-unseal with AWS KMS](https://learn.hashicorp.com/vault/operations/ops-autounseal-aws-kms) guide.

---

Expand Down Expand Up @@ -35,11 +35,8 @@ $ vault status
# Initialize Vault
$ vault operator init -stored-shares=1 -recovery-shares=1 -recovery-threshold=1 -key-shares=1 -key-threshold=1

# Stop the Vault server
$ sudo systemctl stop vault

# Restart the Vault server
$ sudo systemctl start vault
$ sudo systemctl restart vault

# Check to verify that the Vault is auto-unsealed
$ vault status
Expand Down
2 changes: 1 addition & 1 deletion operations/aws-kms-unseal/terraform-aws/instance.tf
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ data "template_file" "format_ssh" {
output "connections" {
value = <<VAULT
Connect to Vault via SSH ssh ubuntu@${aws_instance.vault.public_ip} -i private.key
Vault Enterprise web interface http://${aws_instance.vault.public_ip}:8200/ui
Vault web interface http://${aws_instance.vault.public_ip}:8200/ui
VAULT
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
vault_url = "http://s3.amazonaws.com/some/path/to/vault-enterprise.zip"
vault_url = "https://releases.hashicorp.com/vault/1.0.0-beta2/vault_1.0.0-beta2_linux_amd64.zip"

0 comments on commit 9d19dc3

Please sign in to comment.