Repurpose Get/SetConfig as import/export support (#8578)

This commit is contained in:
Harshavardhana
2019-11-26 10:08:25 -08:00
committed by GitHub
parent 720442b1a2
commit 78eb3b78bb
3 changed files with 38 additions and 16 deletions

View File

@@ -26,6 +26,12 @@ var (
Description: `OpenID discovery documented endpoint. eg: "https://accounts.google.com/.well-known/openid-configuration"`,
Type: "url",
},
config.HelpKV{
Key: ClaimPrefix,
Description: `OpenID JWT claim namespace prefix. eg: "customer"`,
Optional: true,
Type: "string",
},
config.HelpKV{
Key: config.Comment,
Description: "A comment to describe the OpenID identity setting",

View File

@@ -262,10 +262,6 @@ var (
Key: config.State,
Value: config.StateOff,
},
config.KV{
Key: JwksURL,
Value: "",
},
config.KV{
Key: ConfigURL,
Value: "",
@@ -274,6 +270,10 @@ var (
Key: ClaimPrefix,
Value: "",
},
config.KV{
Key: JwksURL,
Value: "",
},
}
)