Last active
June 28, 2020 23:42
-
-
Save s-chb/378fc38fd65ff94ec49cf343b06b4855 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export OS_USERNAME=xxx | |
echo "Please enter your OpenStack Password: " | |
read -sr OS_PASSWORD_INPUT | |
export OS_PASSWORD=$OS_PASSWORD_INPUT | |
export OS_AUTH_URL="https://iam.xxx.com/v3" | |
export OS_REGION_NAME=xxx | |
export OS_TENANT_NAME=xxx | |
export OS_USER_DOMAIN_NAME=xxx | |
export SSH_USERNAME=xxx | |
export INSTANCE_NAME="packer-instance" | |
export SOURCE_ID=xxx | |
export FLAVOR=xxx | |
export NETWORK_ID=xxx | |
export FLOATING_ID=xxx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment