From acaea87c93e35a09cbc80065b56191a655386307 Mon Sep 17 00:00:00 2001 From: Scott Nowicki Date: Wed, 19 Apr 2017 19:02:39 -0500 Subject: [PATCH] nixed the numbers from string generation --- examples/azure-vm-simple-linux/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/azure-vm-simple-linux/deploy.sh b/examples/azure-vm-simple-linux/deploy.sh index 8bebe59bd7..f9bdb63c11 100755 --- a/examples/azure-vm-simple-linux/deploy.sh +++ b/examples/azure-vm-simple-linux/deploy.sh @@ -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