Skip to content
This repository has been archived by the owner on Nov 25, 2017. It is now read-only.

Updating docs to mention corrent ENV var for api key. #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ with the ``--username`` and ``--apikey`` params, but it's easier to just set
them as environment variables::

export OPENSTACK_COMPUTE_USERNAME=jacobian
export OPENSTACK_COMPUTE_API_KEY=yadayada
export OPENSTACK_COMPUTE_APIKEY=yadayada

You'll find complete documentation on the shell by running
``cloudservers help``::
Expand Down Expand Up @@ -79,7 +79,7 @@ You'll find complete documentation on the shell by running

Optional arguments:
--username USERNAME Defaults to env[OPENSTACK_COMPUTE_USERNAME].
--apikey APIKEY Defaults to env[OPENSTACK_COMPUTE_API_KEY].
--apikey APIKEY Defaults to env[OPENSTACK_COMPUTE_APIKEY].

See "openstack-compute help COMMAND" for help on a specific command.

Expand Down
2 changes: 1 addition & 1 deletion docs/releases.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Release notes
``cloudservers``. Yes, the name's a lot longer. Use ``alias``.

* The env variables are now ``OPENSTACK_COMPUTE_USERNAME`` and
``OPENSTACK_COMPUTE_API_KEY``.
``OPENSTACK_COMPUTE_APIKEY``.

1.2 (August 15, 2010)
=====================
Expand Down
4 changes: 2 additions & 2 deletions docs/shell.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ variables by setting two environment variables:

Your Rackspace Cloud username.

.. envvar:: OPENSTACK_COMPUTE_API_KEY
.. envvar:: OPENSTACK_COMPUTE_APIKEY

Your API key.

For example, in Bash you'd use::

export COPENSTACK_COMPUTE_USERNAME=yourname
export COPENSTACK_COMPUTE_API_KEY=yadayadayada
export COPENSTACK_COMPUTE_APIKEY=yadayadayada

From there, all shell commands take the form::

Expand Down