Merge "Correct missspellings of secret"
This commit is contained in:
commit
edc7f9a8c4
@ -1,6 +1,6 @@
|
||||
{
|
||||
"credential": {
|
||||
"blob": "{\"access\":\"181920\",\"secrete\":\"secretKey\"}",
|
||||
"blob": "{\"access\":\"181920\",\"secret\":\"secretKey\"}",
|
||||
"project_id": "731fc6f265cd486d900f16e84c5cb594",
|
||||
"type": "ec2",
|
||||
"user_id": "bb5476fd12884539b41d5a88f838d773"
|
||||
|
@ -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"
|
||||
|
@ -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
|
||||
|
@ -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:
|
||||
|
||||
|
@ -75,7 +75,7 @@ class AuthMethodHandler(object):
|
||||
"password": {
|
||||
"user": {
|
||||
"id": "s23sfad1",
|
||||
"password": "secrete"
|
||||
"password": "secret"
|
||||
}
|
||||
},
|
||||
"token": {
|
||||
|
@ -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}}
|
||||
|
Loading…
Reference in New Issue
Block a user