just create org owner

This commit is contained in:
Elio Bischof 2022-07-27 15:42:33 +02:00
parent f9176fef04
commit 25d8a25e3e
No known key found for this signature in database
GPG Key ID: 7B383FDE4DDBF1BD
2 changed files with 0 additions and 18 deletions

View File

@ -5,7 +5,3 @@ E2E:
MachineKeyPath: ".keys/e2e.json"
BaseURL: "http://localhost:8080"
OrgOwnerPassword: "Password1!"
OrgOwnerViewerPassword: "Password1!"
OrgProjectCreatorPassword: "Password1!"
PasswordComplexityUserPassword: "Password1!"
LoginPolicyUserPassword: "Password1!"

View File

@ -116,20 +116,6 @@ func startE2ESetup(conf *Config, masterkey string) {
desc: "org_owner",
pw: conf.E2E.OrgOwnerPassword,
role: domain.RoleOrgOwner,
}, {
desc: "org_owner_viewer",
pw: conf.E2E.OrgOwnerViewerPassword,
role: domain.RoleOrgOwner,
}, {
desc: "org_project_creator",
pw: conf.E2E.OrgProjectCreatorPassword,
role: domain.RoleOrgProjectCreator,
}, {
desc: "login_policy_user",
pw: conf.E2E.LoginPolicyUserPassword,
}, {
desc: "password_complexity_user",
pw: conf.E2E.PasswordComplexityUserPassword,
}}
err = execute(ctx, commands, *conf.E2E, users, instanceID)