Skip to content

Commit

Permalink
autogen: render config schema
Browse files Browse the repository at this point in the history
  • Loading branch information
ory-bot authored and aeneasr committed Aug 16, 2023
1 parent 01ff9da commit 6631c21
Showing 1 changed file with 45 additions and 1 deletion.
46 changes: 45 additions & 1 deletion .schema/config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,16 @@
"description": "Disallow all outgoing HTTP calls to private IP ranges. This feature can help protect against SSRF attacks.",
"type": "boolean",
"default": false
},
"private_ip_exception_urls": {
"title": "Add exempt URLs to private IP ranges",
"description": "Allows the given URLs to be called despite them being in the private IP range. URLs need to have an exact and case-sensitive match to be excempt.",
"type": "array",
"items": {
"type": "string",
"format": "uri-reference"
},
"default": []
}
}
}
Expand Down Expand Up @@ -760,6 +770,34 @@
"https://my-example.app/logout-successful",
"/ui"
]
},
"identity_provider": {
"type": "object",
"additionalProperties": false,
"properties": {
"url": {
"title": "The admin URL of the ORY Kratos instance.",
"description": "If set, ORY Hydra will use this URL to log out the user in addition to removing the Hydra session.",
"type": "string",
"format": "uri",
"examples": [
"https://kratos.example.com/admin"
]
},
"headers": {
"title": "HTTP Request Headers",
"description": "These headers will be passed in HTTP requests to the Identity Provider.",
"type": "object",
"additionalProperties": {
"type": "string"
},
"examples": [
{
"Authorization": "Bearer some-token"
}
]
}
}
}
}
},
Expand Down Expand Up @@ -889,6 +927,12 @@
},
"examples": [["username", "email", "user_uuid"]]
},
"mirror_top_level_claims": {
"type": "boolean",
"description": "Set to false if you don't want to mirror custom claims under 'ext'",
"default": true,
"examples": [false]
},
"hashers": {
"type": "object",
"additionalProperties": false,
Expand Down Expand Up @@ -1052,7 +1096,7 @@
"examples": ["cpu"]
},
"tracing": {
"$ref": "https://raw.githubusercontent.com/ory/x/v0.0.562/otelx/config.schema.json"
"$ref": "https://raw.githubusercontent.com/ory/x/v0.0.582-0.20230816082414-f1e6acad79b5/otelx/config.schema.json"
},
"sqa": {
"type": "object",
Expand Down

0 comments on commit 6631c21

Please sign in to comment.