nixed the numbers from string generation

This commit is contained in:
Scott Nowicki 2017-04-19 19:02:39 -05:00
parent 1d7d3f1b45
commit acaea87c93
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
set -o errexit -o nounset
# generate a unique string for CI deployment
KEY=$(cat /dev/urandom | tr -cd 'a-f0-9' | head -c 16)
KEY=$(cat /dev/urandom | tr -cd 'a-z' | head -c 16)
terraform get