updated syntax for arguments to terraform

This commit is contained in:
Scott Nowicki 2017-04-19 12:43:18 -05:00
parent 832ab98094
commit 62dc7320c5
1 changed files with 2 additions and 2 deletions

View File

@ -5,8 +5,8 @@ set -o errexit -o nounset
HOSTNAME=$(cat /dev/urandom | tr -cd 'a-f0-9' | head -c 16)
terraform get
terraform plan
terraform apply HOSTNAME
terraform plan -var 'dns_name=$HOSTNAME'
terraform apply -var 'dns_name=$HOSTNAME'
# echo "Setting git user name"
# git config user.name $GH_USER_NAME