Fix README endpoint example

The *_address parameters were removed in 29b687 to the
keystone::endpoint example in the README is now invalid. This patch
updates it to use equivalent URL parameters.

Change-Id: I5d1a7aa52848a0eda0b3be90f50b2e2bc74e2481
This commit is contained in:
Colleen Murphy 2015-02-17 14:36:20 -08:00
parent dadf82220b
commit b52930b912
1 changed files with 4 additions and 4 deletions

View File

@ -59,10 +59,10 @@ class { 'keystone::roles::admin':
# Installs the service user endpoint.
class { 'keystone::endpoint':
public_address => '10.16.0.101',
admin_address => '10.16.1.101',
internal_address => '10.16.2.101',
region => 'example-1',
public_url => 'http://10.16.0.101:5000/v2.0',
admin_url => 'http://10.16.1.101:35357/v2.0',
internal_url => 'http://10.16.2.101:5000/v2.0',
region => 'example-1',
}
```