updated syntax for arguments to terraform
This commit is contained in:
parent
832ab98094
commit
62dc7320c5
|
@ -5,8 +5,8 @@ set -o errexit -o nounset
|
||||||
HOSTNAME=$(cat /dev/urandom | tr -cd 'a-f0-9' | head -c 16)
|
HOSTNAME=$(cat /dev/urandom | tr -cd 'a-f0-9' | head -c 16)
|
||||||
|
|
||||||
terraform get
|
terraform get
|
||||||
terraform plan
|
terraform plan -var 'dns_name=$HOSTNAME'
|
||||||
terraform apply HOSTNAME
|
terraform apply -var 'dns_name=$HOSTNAME'
|
||||||
|
|
||||||
# echo "Setting git user name"
|
# echo "Setting git user name"
|
||||||
# git config user.name $GH_USER_NAME
|
# git config user.name $GH_USER_NAME
|
||||||
|
|
Loading…
Reference in New Issue