|
| 1 | + |
| 2 | +SETTINGS = { |
| 3 | + 'name': 'Example Tenant', |
| 4 | + 'identity': 'abc', |
| 5 | + 'secret': 'def', |
| 6 | + 'url': 'example.prismacloud.io', |
| 7 | + 'verify': False, |
| 8 | + 'debug': False |
| 9 | +} |
| 10 | + |
| 11 | +META_INFO = { |
| 12 | + 'twistlockUrl': 'example.prismacloud.io' |
| 13 | +} |
| 14 | + |
| 15 | +USER_PROFILE = { |
| 16 | + 'email': 'example@example.com', |
| 17 | + 'firstName': 'Example', |
| 18 | + 'lastName': 'User', |
| 19 | + 'timeZone': 'America/Los_Angeles', |
| 20 | + 'enabled': True, |
| 21 | + 'lastModifiedBy': 'template@redlock.io', |
| 22 | + 'lastModifiedTs': 1630000000000, |
| 23 | + 'lastLoginTs': 1640000000000, |
| 24 | + 'displayName': 'Example User', |
| 25 | + 'accessKeysAllowed': True, |
| 26 | + 'defaultRoleId': '1234-5678', |
| 27 | + 'roleIds': ['1234-5678'], |
| 28 | + 'roles': [{ |
| 29 | + 'id': '1234-5678', |
| 30 | + 'name': 'System Admin', |
| 31 | + 'type': 'System Admin', |
| 32 | + 'onlyAllowCIAccess': False, |
| 33 | + 'onlyAllowComputeAccess': False, |
| 34 | + 'onlyAllowReadAccess': False |
| 35 | + }], |
| 36 | + 'activeRole': { |
| 37 | + 'id': '1234-5678', |
| 38 | + 'name': 'System Admin', |
| 39 | + 'type': 'System Admin', |
| 40 | + 'onlyAllowCIAccess': False, |
| 41 | + 'onlyAllowComputeAccess': False, |
| 42 | + 'onlyAllowReadAccess': False |
| 43 | + } |
| 44 | +} |
0 commit comments