Skip to content

Commit

Permalink
FTR should use the new kibana_system user (elastic#120436)
Browse files Browse the repository at this point in the history
* FTR should use the new kibana_system user

* Fix security api integration tests

Co-authored-by: Kibana Machine <[email protected]>
  • Loading branch information
rudolf and kibanamachine committed Dec 7, 2021
1 parent 618069a commit a8ac71d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/kbn-test/src/kbn/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const kibanaTestUser = {
};

export const kibanaServerTestUser = {
username: env.TEST_KIBANA_SERVER_USER || 'kibana',
username: env.TEST_KIBANA_SERVER_USER || 'kibana_system',
password: env.TEST_KIBANA_SERVER_PASS || 'changeme',
};

Expand Down
4 changes: 2 additions & 2 deletions x-pack/test/security_api_integration/tests/pki/pki_auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export default function ({ getService }: FtrProviderContext) {
enabled: true,
metadata: {
pki_delegated_by_realm: 'reserved',
pki_delegated_by_user: 'kibana',
pki_delegated_by_user: 'kibana_system',
pki_dn: 'CN=first_client',
},
authentication_realm: { name: 'pki1', type: 'pki' },
Expand Down Expand Up @@ -187,7 +187,7 @@ export default function ({ getService }: FtrProviderContext) {
enabled: true,
metadata: {
pki_delegated_by_realm: 'reserved',
pki_delegated_by_user: 'kibana',
pki_delegated_by_user: 'kibana_system',
pki_dn: 'CN=second_client',
},
authentication_realm: { name: 'pki1', type: 'pki' },
Expand Down

0 comments on commit a8ac71d

Please sign in to comment.