Tony Mack | e4be32f | 2014-03-11 20:45:25 -0400 | [diff] [blame] | 1 | ## |
| 2 | # This file contains the auth credentials used to access openstack deployments |
| 3 | # we wish to manage. The 'default' credentials will be used for any deployments |
| 4 | # not specifed here. |
| 5 | # |
| 6 | |
| 7 | deployment_auth = { |
| 8 | # Example |
| 9 | # 'deployment_name': { |
| 10 | # 'user': 'email@domain.com', |
| 11 | # 'pasword': 'password', |
| 12 | # 'tenant': 'tenant', |
| 13 | # 'url': 'http://localhost:5000/v2.0/', |
| 14 | # 'token': 'ADMIN', |
| 15 | # 'endpoint': 'http://localhost:35357/v2.0/' |
| 16 | # }, |
| 17 | |
| 18 | 'default': { |
| 19 | 'user': 'admin@domain.com', |
| 20 | 'password': 'admin', |
| 21 | 'tenant': 'admin', |
| 22 | 'url': 'http://localhost:5000/v2.0/' |
| 23 | }, |
| 24 | |
| 25 | } |