We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea63296 commit cd6df4aCopy full SHA for cd6df4a
lib/ingestor-api/runtime/src/config.py
@@ -22,7 +22,8 @@ class Settings(BaseSettings):
22
root_path: Optional[str] = Field(description="Path from where to serve this URL.")
23
24
jwks_url: Optional[HttpUrlString] = Field(
25
- description="URL of JWKS, e.g. https://cognito-idp.{region}.amazonaws.com/{userpool_id}/.well-known/jwks.json" # noqa
+ default=None,
26
+ description="URL of JWKS, e.g. https://cognito-idp.{region}.amazonaws.com/{userpool_id}/.well-known/jwks.json", # noqa
27
)
28
29
stac_url: HttpUrlString = Field(description="URL of STAC API")
0 commit comments