44838a6d0a
Change-Id: Id6f0ffaa03bcbe82dd1b910c7bee5b55dfa25a42
16 lines
297 B
Bash
Executable File
16 lines
297 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# URL for authentication service
|
|
export OS_AUTH_URL=http://10.0.2.15:5000/v2.0
|
|
|
|
# Tenant name
|
|
export OS_TENANT_NAME="demo"
|
|
|
|
# Username
|
|
export OS_USERNAME="demo"
|
|
|
|
# Password
|
|
echo "Please enter your OpenStack Password: "
|
|
read -sr OS_PASSWORD_INPUT
|
|
export OS_PASSWORD=$OS_PASSWORD_INPUT
|