public static oidcConfigFields()

in lib/compute/jenkins-main-node.ts [364:378]


  public static oidcConfigFields() : string[][] {
    return [['clientId', 'replace'],
      ['clientSecret', 'replace'],
      ['wellKnownOpenIDConfigurationUrl', 'replace'],
      ['tokenServerUrl', 'replace'],
      ['authorizationServerUrl', 'replace'],
      ['userInfoServerUrl', 'replace'],
      ['userNameField', 'sub'],
      ['scopes', 'openid'],
      ['disableSslVerification', 'false'],
      ['logoutFromOpenidProvider', 'true'],
      ['postLogoutRedirectUrl', ''],
      ['escapeHatchEnabled', 'false'],
      ['escapeHatchSecret', 'random']];
  }