feat: Added oidc validation triples to template

* feat: added oidc validation triples to template

Signed-off-by: Wouter Termont <woutermont@gmail.com>

* fix: Add missing newline

Co-authored-by: Joachim Van Herwegen <joachimvh@gmail.com>
This commit is contained in:
Wouter Termont
2021-03-15 14:37:32 +01:00
committed by GitHub
parent 613dd5698a
commit e2284c4c42
2 changed files with 12 additions and 1 deletions

View File

@@ -25,4 +25,12 @@ export interface PodSettings extends NodeJS.Dict<string> {
* E-mail of the owner. Used in provisioning templates.
*/
email?: string;
/**
* The OIDC issuer of the owner's WebId.
*/
oidcIssuer?: string;
/**
* A registration token for linking the owner's WebId to an IdP.
*/
oidcIssuerRegistrationToken?: string;
}