Skip to content
This repository has been archived by the owner on Oct 7, 2022. It is now read-only.

Commit

Permalink
v3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MattSurabian committed Jan 5, 2018
1 parent 50de4f4 commit c29a255
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Vault Playground V3.0.0 Makefile
# Vault Playground V3.0.1 Makefile

# Help Helper matches comments at the start of the task block so make help gives users information about each task
.PHONY: help
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Vault Playground V3.0.0
# Vault Playground V3.0.1

This repo is meant to make it easier for developers, operators, and CI servers to work locally with a production-like Vault environment.
The Makefile contained in this repository will allow users to spin up (by default) a local DynamoDB server, and 2 Vault servers running
Expand Down
2 changes: 1 addition & 1 deletion tasks/creds
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

# Vault Playground V3.0.0 creds
# Vault Playground V3.0.1 creds
#
# This is a helper task that looks in the cache for any initialization dumps from the currently running Vault instance
# and outputs them to the screen.
Expand Down
2 changes: 1 addition & 1 deletion tasks/destroy
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

# Vault Playground V3.0.0 destroy
# Vault Playground V3.0.1 destroy
#
# This script terminates and removes all containers deployed in the Vault Playground docker network (vp).
#
Expand Down
2 changes: 1 addition & 1 deletion tasks/init
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env bash
# Vault Playground V3.0.0 init
# Vault Playground V3.0.1 init
#
# This script creates a dedicated docker network (called vp) and spins up the configured number of Vault servers and a
# local DynamoDB instance to serve as their data store.
Expand Down
2 changes: 1 addition & 1 deletion tasks/purge
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

# Vault Playground V3.0.0 purge
# Vault Playground V3.0.1 purge
#
# This script deletes all cached credentials and snapshots by removing the $HOME/.vault-playground directory
#
Expand Down
2 changes: 1 addition & 1 deletion tasks/restore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

# Vault Playground V3.0.0 restore
# Vault Playground V3.0.1 restore
#
# Unless a snapshot file is specified this script will list all snapshots in its cache and prompt the user to select one.
# Once the snapshot is restored the script will attempt to locate a valid initialization dump file in its cache if one
Expand Down
2 changes: 1 addition & 1 deletion tasks/snapshot
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

# Vault Playground V3.0.0 snapshot
# Vault Playground V3.0.1 snapshot
#
# This script creates a snapshot in the local cache ($HOME/.vault-playground/snapshots) that by default is named with a
# timestamp but also supports vanity naming via an environment variable. If used against a real AWS hosted instance of DynamoDB
Expand Down
2 changes: 1 addition & 1 deletion tasks/status
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

# Vault Playground V3.0.0 status
# Vault Playground V3.0.1 status
#
# This is a helper task that makes a call to docker ps with relevant filters applied
#
Expand Down
2 changes: 1 addition & 1 deletion tasks/vault-leader
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

# Vault Playground V3.0.0 vault-leader
# Vault Playground V3.0.1 vault-leader
#
# This script outputs the current leader and the port it's exporting on the host. Useful for setting the VAULT_ADDR
# environment variable VAULT_ADDR=$(make vault-leader)
Expand Down

0 comments on commit c29a255

Please sign in to comment.