Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bo-Chun Chen
Terraform Openstack
Commits
8df65af0
Commit
8df65af0
authored
Jun 28, 2019
by
Ryan Randles Jones
Browse files
Update rrand11-openrc.sh
parent
23cc9352
Changes
1
Hide whitespace changes
Inline
Side-by-side
rrand11-openrc.sh
View file @
8df65af0
...
@@ -10,29 +10,29 @@
...
@@ -10,29 +10,29 @@
# OpenStack API is version 3. For example, your cloud provider may implement
# OpenStack API is version 3. For example, your cloud provider may implement
# Image API v1.1, Block Storage API v2, and Compute API v2.0. OS_AUTH_URL is
# Image API v1.1, Block Storage API v2, and Compute API v2.0. OS_AUTH_URL is
# only for the Identity API served through keystone.
# only for the Identity API served through keystone.
export
OS
_AUTH_URL
=
http://ruffner.rc.uab.edu:5000/v3
export
TF
_AUTH_URL
=
http://ruffner.rc.uab.edu:5000/v3
# With the addition of Keystone we have standardized on the term **project**
# With the addition of Keystone we have standardized on the term **project**
# as the entity that owns the resources.
# as the entity that owns the resources.
export
OS
_PROJECT_ID
=
0ca4141447e6411e9f080735877bbedb
export
TF
_PROJECT_ID
=
0ca4141447e6411e9f080735877bbedb
export
OS
_PROJECT_NAME
=
"rrand11"
export
TF
_PROJECT_NAME
=
"rrand11"
export
OS
_USER_DOMAIN_NAME
=
"default"
export
TF
_USER_DOMAIN_NAME
=
"default"
if
[
-z
"
$
OS
_USER_DOMAIN_NAME
"
]
;
then
unset
OS_USER_DOMAIN_NAME
;
fi
if
[
-z
"
$
TF
_USER_DOMAIN_NAME
"
]
;
then
unset
OS_USER_DOMAIN_NAME
;
fi
export
OS
_PROJECT_DOMAIN_ID
=
"117b73e010fd4555803d336adbc9551c"
export
TF
_PROJECT_DOMAIN_ID
=
"117b73e010fd4555803d336adbc9551c"
if
[
-z
"
$
OS
_PROJECT_DOMAIN_ID
"
]
;
then
unset
OS_PROJECT_DOMAIN_ID
;
fi
if
[
-z
"
$
TF
_PROJECT_DOMAIN_ID
"
]
;
then
unset
OS_PROJECT_DOMAIN_ID
;
fi
# unset v2.0 items in case set
# unset v2.0 items in case set
unset
OS_TENANT_ID
unset
OS_TENANT_ID
unset
OS_TENANT_NAME
unset
OS_TENANT_NAME
# In addition to the owning entity (tenant), OpenStack stores the entity
# In addition to the owning entity (tenant), OpenStack stores the entity
# performing the action as the **user**.
# performing the action as the **user**.
export
OS
_USERNAME
=
"rrand11"
export
TF
_USERNAME
=
"rrand11"
# With Keystone you pass the keystone password.
# With Keystone you pass the keystone password.
echo
"Please enter your OpenStack Password for project
$OS_PROJECT_NAME
as user
$OS_USERNAME
: "
echo
"Please enter your OpenStack Password for project
$OS_PROJECT_NAME
as user
$OS_USERNAME
: "
read
-sr
OS_PASSWORD_INPUT
read
-sr
OS_PASSWORD_INPUT
export
OS
_PASSWORD
=
$OS_PASSWORD_INPUT
export
TF
_PASSWORD
=
$OS_PASSWORD_INPUT
# If your configuration has multiple regions, we set that information here.
# If your configuration has multiple regions, we set that information here.
# OS_REGION_NAME is optional and only valid in certain environments.
# OS_REGION_NAME is optional and only valid in certain environments.
export
OS
_REGION_NAME
=
"openstack"
export
TF
_REGION_NAME
=
"openstack"
# Don't leave a blank variable, unset it if it was empty
# Don't leave a blank variable, unset it if it was empty
if
[
-z
"
$OS_REGION_NAME
"
]
;
then
unset
OS_REGION_NAME
;
fi
if
[
-z
"
$OS_REGION_NAME
"
]
;
then
unset
OS_REGION_NAME
;
fi
export
OS
_INTERFACE
=
public
export
TF
_INTERFACE
=
public
export
OS
_IDENTITY_API_VERSION
=
3
export
TF
_IDENTITY_API_VERSION
=
3
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment