Correct missspellings of secret

Change-Id: Ib60746ddd19cdf5f9a65498a9a627a321fdad2c7
This commit is contained in:
Dougal Matthews 2016-12-08 13:07:29 +00:00
parent 4de9d6b111
commit f12f83ba9a
6 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
{
"credential": {
"blob": "{\"access\":\"181920\",\"secrete\":\"secretKey\"}",
"blob": "{\"access\":\"181920\",\"secret\":\"secretKey\"}",
"project_id": "731fc6f265cd486d900f16e84c5cb594",
"type": "ec2",
"user_id": "bb5476fd12884539b41d5a88f838d773"

View File

@ -4,7 +4,7 @@
"links": {
"self": "http://example.com/identity/v3/credentials/207e9b76935efc03804d3dd6ab52d22e9b22a0711e4ada4ff8b76165a07311d7"
},
"blob": "{\"access\":\"181920\",\"secrete\":\"secretKey\"}",
"blob": "{\"access\":\"181920\",\"secret\":\"secretKey\"}",
"project_id": "731fc6f265cd486d900f16e84c5cb594",
"type": "ec2",
"id": "207e9b76935efc03804d3dd6ab52d22e9b22a0711e4ada4ff8b76165a07311d7"

View File

@ -1522,7 +1522,7 @@ can be invoked as follows:
# Using password authentication, with environment variables
$ export OS_USERNAME=admin
$ export OS_PASSWORD=secrete
$ export OS_PASSWORD=secret
$ export OS_PROJECT_NAME=admin
$ export OS_AUTH_URL=http://localhost:35357/v2.0
$ openstack user list
@ -1530,8 +1530,8 @@ can be invoked as follows:
$ openstack token issue
# Using password authentication, with flags
$ openstack --os-username=admin --os-password=secrete --os-project-name=admin --os-auth-url=http://localhost:35357/v2.0 user list
$ openstack --os-username=admin --os-password=secrete --os-project-name=admin --os-auth-url=http://localhost:35357/v2.0 project create demo
$ openstack --os-username=admin --os-password=secret --os-project-name=admin --os-auth-url=http://localhost:35357/v2.0 user list
$ openstack --os-username=admin --os-password=secret --os-project-name=admin --os-auth-url=http://localhost:35357/v2.0 project create demo
Using an LDAP server

View File

@ -851,7 +851,7 @@ Authenticate by exchanging credentials for an access token:
.. code-block:: bash
$ curl -d '{"auth":{"tenantName": "customer-x", "passwordCredentials": {"username": "joeuser", "password": "secrete"}}}' -H "Content-type: application/json" http://localhost:35357/v2.0/tokens
$ curl -d '{"auth":{"tenantName": "customer-x", "passwordCredentials": {"username": "joeuser", "password": "secret"}}}' -H "Content-type: application/json" http://localhost:35357/v2.0/tokens
Returns:

View File

@ -75,7 +75,7 @@ class AuthMethodHandler(object):
"password": {
"user": {
"id": "s23sfad1",
"password": "secrete"
"password": "secret"
}
},
"token": {

View File

@ -48,7 +48,7 @@ type openstack >/dev/null 2>&1 || {
exit 1
}
ADMIN_PASSWORD=${ADMIN_PASSWORD:-secrete}
ADMIN_PASSWORD=${ADMIN_PASSWORD:-secret}
NOVA_PASSWORD=${NOVA_PASSWORD:-${SERVICE_PASSWORD:-nova}}
GLANCE_PASSWORD=${GLANCE_PASSWORD:-${SERVICE_PASSWORD:-glance}}
EC2_PASSWORD=${EC2_PASSWORD:-${SERVICE_PASSWORD:-ec2}}