summaryrefslogtreecommitdiff
path: root/clientrc
diff options
context:
space:
mode:
authorChellygel <chelsea.winfree@gmail.com>2015-04-15 11:54:44 -0500
committerChellygel <chelsea.winfree@gmail.com>2015-04-17 10:24:26 -0500
commit137a8935615ab1230aa812590a948a047f7e127c (patch)
tree1f0dd639dbfaea8ab0900bd24a95f326a769417c /clientrc
parent5ed2e70f9f38e46c5af36d1e9c4eb4e24568bc5a (diff)
downloadpython-barbicanclient-137a8935615ab1230aa812590a948a047f7e127c.tar.gz
Fix the clientrc file to match defaults and add docs
Ported over documentation about usage of clientrc file as well as ported over the No Auth Mode section. Change-Id: Idfaeae4f4360b5aa95494119926fd67592c0d2d8
Diffstat (limited to 'clientrc')
-rw-r--r--clientrc25
1 files changed, 19 insertions, 6 deletions
diff --git a/clientrc b/clientrc
index 2fd6721..1d6be26 100644
--- a/clientrc
+++ b/clientrc
@@ -1,6 +1,19 @@
-export OS_TENANT_NAME=demo
-export OS_USERNAME=demo
-export OS_PASSWORD=password
-export OS_AUTH_URL="http://keystone-int.cloudkeep.io:5000/v2.0/"
-export BARBICAN_ENDPOINT="http://localhost:9311/v1/"
-export AUTH_TOKEN=''
+export OS_PROJECT_NAME=<YourProjectName>
+
+# Either Project ID or Project Name is required
+export OS_PROJECT_DOMAIN_ID=<YourProjectID>
+export OS_PROJECT_DOMAIN_NAME=<YourProjectName>
+
+# Either Domain User ID or Domain User Name is required
+export OS_USER_DOMAIN_ID=<YourUserDomainID>
+export OS_USER_DOMAIN_NAME=<YourUserDomainName>
+
+# Either User ID or Username can be used
+export OS_USER_ID =<YourUserID>
+export OS_USERNAME=<YourUserName>
+export OS_PASSWORD=<YourPassword>
+
+# OS_AUTH_URL should be your location of Keystone
+# Barbican Client defaults to Keystone V3
+export OS_AUTH_URL="<YourAuthURL>:5000/v3/"
+export BARBICAN_ENDPOINT="<YourBarbicanEndpoint>:9311"