blob: 64ff8a76cda5bc3777eac037fdd7759960e850c2 [file] [log] [blame]
Matthew Treinish09f17832014-08-15 15:22:50 -04001# 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 Treinishc791ac42014-07-16 09:15:23 -04005- 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 Treinish976e8df2014-12-19 14:21:54 -050012
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'