Matthew Treinish | 09f1783 | 2014-08-15 15:22:50 -0400 | [diff] [blame] | 1 | # The number of accounts required can be estimated as CONCURRENCY x 2 |
| 2 | # Valid fields for credentials are defined in the descendants of |
| 3 | # auth.Credentials - see KeystoneV[2|3]Credentials.CONF_ATTRIBUTES |
| 4 | |
Matthew Treinish | c791ac4 | 2014-07-16 09:15:23 -0400 | [diff] [blame] | 5 | - username: 'user_1' |
| 6 | tenant_name: 'test_tenant_1' |
| 7 | password: 'test_password' |
| 8 | |
| 9 | - username: 'user_2' |
| 10 | tenant_name: 'test_tenant_2' |
| 11 | password: 'test_password' |
Matthew Treinish | 976e8df | 2014-12-19 14:21:54 -0500 | [diff] [blame] | 12 | |
| 13 | # To specify which roles a user has list them under the roles field |
| 14 | - username: 'multi_role_user' |
| 15 | tenant_name: 'test_tenant_42' |
| 16 | password: 'test_password' |
| 17 | roles: |
| 18 | - 'fun_role' |
| 19 | - 'not_an_admin' |
| 20 | - 'an_admin' |
| 21 | |
| 22 | # To specify a user has a role specified in the config file you can use the |
| 23 | # type field to specify it, valid values are admin, operator, and reseller_admin |
| 24 | - username: 'swift_pseudo_admin_user_1' |
| 25 | tenant_name: 'admin_tenant_1' |
| 26 | password: 'test_password' |
| 27 | types: |
| 28 | - 'reseller_admin' |
| 29 | - 'operator' |
| 30 | |
| 31 | - username: 'admin_user_1' |
| 32 | tenant_name: 'admin_tenant_1' |
| 33 | password: 'test_password' |
| 34 | types: |
| 35 | - 'admin' |