Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/development/docker-compose-gcp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ services:
OIDC_CLIENT_AUTH_METHOD: ${OIDC_CLIENT_AUTH_METHOD:-"client_secret_post"}
OIDC_TENANT: ${OIDC_TENANT:-""}
OIDC_MAX_CLOCK_SKEW: ${OIDC_MAX_CLOCK_SKEW:-""}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-{}}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
Comment thread
RajdeepKushwaha5 marked this conversation as resolved.
Copy link

Copilot AI Apr 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-} is unquoted. If unset, it can resolve to YAML null (Compose pass-through/omit behavior); if set to {...}, it may be parsed as a YAML map rather than a string. Quote the interpolation or use an explicit empty-string default so the env var is always a string.

Suggested change
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
OIDC_CUSTOM_PARAMS: "${OIDC_CUSTOM_PARAMS:-""}"

Copilot uses AI. Check for mistakes.
OIDC_MAX_AGE: ${OIDC_MAX_AGE:-"0"}
OIDC_PROMPT_TYPE: ${OIDC_PROMPT_TYPE:-"consent"}
OIDC_SESSION_EXPIRY: ${OIDC_SESSION_EXPIRY:-"604800"}
Expand Down Expand Up @@ -333,7 +333,7 @@ services:
OIDC_CLIENT_AUTH_METHOD: ${OIDC_CLIENT_AUTH_METHOD:-"client_secret_post"}
OIDC_TENANT: ${OIDC_TENANT:-""}
OIDC_MAX_CLOCK_SKEW: ${OIDC_MAX_CLOCK_SKEW:-""}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-{}}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
Copy link

Copilot AI Apr 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same issue as earlier in the file: ${OIDC_CUSTOM_PARAMS:-} is unquoted; unset can become YAML null (Compose pass-through/omit), and {...} values can be parsed as YAML maps. Quote the interpolation or use an explicit empty-string default to keep the env var value a string.

Suggested change
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
OIDC_CUSTOM_PARAMS: "${OIDC_CUSTOM_PARAMS:-}"

Copilot uses AI. Check for mistakes.
OIDC_MAX_AGE: ${OIDC_MAX_AGE:-"0"}
OIDC_PROMPT_TYPE: ${OIDC_PROMPT_TYPE:-"consent"}
OIDC_SESSION_EXPIRY: ${OIDC_SESSION_EXPIRY:-"604800"}
Expand Down
4 changes: 2 additions & 2 deletions docker/development/docker-compose-postgres-fuseki.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ services:
OIDC_CLIENT_AUTH_METHOD: ${OIDC_CLIENT_AUTH_METHOD:-"client_secret_post"}
OIDC_TENANT: ${OIDC_TENANT:-""}
OIDC_MAX_CLOCK_SKEW: ${OIDC_MAX_CLOCK_SKEW:-""}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-{}}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
Copy link

Copilot AI Apr 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-} is unquoted, which can yield YAML null when unset (Compose pass-through/omit semantics) and YAML map typing when set to {...}. Quote the interpolation or default explicitly to an empty string to keep the env var consistently a string.

Suggested change
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
OIDC_CUSTOM_PARAMS: "${OIDC_CUSTOM_PARAMS:-""}"

Copilot uses AI. Check for mistakes.
OIDC_MAX_AGE: ${OIDC_MAX_AGE:-"0"}
OIDC_PROMPT_TYPE: ${OIDC_PROMPT_TYPE:-"consent"}
OIDC_SESSION_EXPIRY: ${OIDC_SESSION_EXPIRY:-"604800"}
Expand Down Expand Up @@ -350,7 +350,7 @@ services:
OIDC_CLIENT_AUTH_METHOD: ${OIDC_CLIENT_AUTH_METHOD:-"client_secret_post"}
OIDC_TENANT: ${OIDC_TENANT:-""}
OIDC_MAX_CLOCK_SKEW: ${OIDC_MAX_CLOCK_SKEW:-""}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-{}}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
Copy link

Copilot AI Apr 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same issue as earlier in the file: leaving ${OIDC_CUSTOM_PARAMS:-} unquoted can resolve to YAML null when unset and can be parsed as a YAML map for {...} values. Quote the interpolation or default explicitly to an empty string so the container consistently receives a string.

Suggested change
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
OIDC_CUSTOM_PARAMS: "${OIDC_CUSTOM_PARAMS:-""}"

Copilot uses AI. Check for mistakes.
OIDC_MAX_AGE: ${OIDC_MAX_AGE:-"0"}
OIDC_PROMPT_TYPE: ${OIDC_PROMPT_TYPE:-"consent"}
OIDC_SESSION_EXPIRY: ${OIDC_SESSION_EXPIRY:-"604800"}
Expand Down
4 changes: 2 additions & 2 deletions docker/development/docker-compose-postgres.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ services:
OIDC_CLIENT_AUTH_METHOD: ${OIDC_CLIENT_AUTH_METHOD:-"client_secret_post"}
OIDC_TENANT: ${OIDC_TENANT:-""}
OIDC_MAX_CLOCK_SKEW: ${OIDC_MAX_CLOCK_SKEW:-""}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-{}}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
Copy link

Copilot AI Apr 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-} is unquoted. When unset it can become YAML null (Compose pass-through/omit), and when set to {...} it can be parsed as a YAML map rather than a string. Quote the interpolation or use an explicit empty-string default so this env var is consistently treated as a string.

Suggested change
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-""}

Copilot uses AI. Check for mistakes.
OIDC_MAX_AGE: ${OIDC_MAX_AGE:-"0"}
OIDC_PROMPT_TYPE: ${OIDC_PROMPT_TYPE:-"consent"}
OIDC_SESSION_EXPIRY: ${OIDC_SESSION_EXPIRY:-"604800"}
Expand Down Expand Up @@ -345,7 +345,7 @@ services:
OIDC_CLIENT_AUTH_METHOD: ${OIDC_CLIENT_AUTH_METHOD:-"client_secret_post"}
OIDC_TENANT: ${OIDC_TENANT:-""}
OIDC_MAX_CLOCK_SKEW: ${OIDC_MAX_CLOCK_SKEW:-""}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-{}}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
Copy link

Copilot AI Apr 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same issue as earlier in the file: ${OIDC_CUSTOM_PARAMS:-} is unquoted, which can produce YAML null when unset and YAML map typing when set to {...}. Quote the interpolation or use an explicit empty-string default to ensure Compose passes a string env var value.

Suggested change
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
OIDC_CUSTOM_PARAMS: "${OIDC_CUSTOM_PARAMS:-""}"

Copilot uses AI. Check for mistakes.
OIDC_MAX_AGE: ${OIDC_MAX_AGE:-"0"}
OIDC_PROMPT_TYPE: ${OIDC_PROMPT_TYPE:-"consent"}
OIDC_SESSION_EXPIRY: ${OIDC_SESSION_EXPIRY:-"604800"}
Expand Down
4 changes: 2 additions & 2 deletions docker/development/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ services:
OIDC_CLIENT_AUTH_METHOD: ${OIDC_CLIENT_AUTH_METHOD:-"client_secret_post"}
OIDC_TENANT: ${OIDC_TENANT:-""}
OIDC_MAX_CLOCK_SKEW: ${OIDC_MAX_CLOCK_SKEW:-""}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-{}}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
Copy link

Copilot AI Apr 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-} is unquoted in the environment map. This can resolve to YAML null when unset (Compose pass-through/omit semantics) and can be parsed as a YAML map if the value starts with {...}. Quote the interpolation or use an explicit empty-string default to ensure the container receives a string.

Suggested change
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
OIDC_CUSTOM_PARAMS: "${OIDC_CUSTOM_PARAMS:-""}"

Copilot uses AI. Check for mistakes.
OIDC_MAX_AGE: ${OIDC_MAX_AGE:-"0"}
OIDC_PROMPT_TYPE: ${OIDC_PROMPT_TYPE:-"consent"}
OIDC_SESSION_EXPIRY: ${OIDC_SESSION_EXPIRY:-"604800"}
Expand Down Expand Up @@ -338,7 +338,7 @@ services:
OIDC_CLIENT_AUTH_METHOD: ${OIDC_CLIENT_AUTH_METHOD:-"client_secret_post"}
OIDC_TENANT: ${OIDC_TENANT:-""}
OIDC_MAX_CLOCK_SKEW: ${OIDC_MAX_CLOCK_SKEW:-""}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-{}}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
Copy link

Copilot AI Apr 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same issue as earlier in the file: unquoted ${OIDC_CUSTOM_PARAMS:-} can become YAML null when unset (Compose pass-through/omit) and can be parsed as a YAML map if set to {...}. Quote the interpolation or use an explicit empty-string default so the env var stays a string.

Suggested change
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
OIDC_CUSTOM_PARAMS: "${OIDC_CUSTOM_PARAMS:-""}"

Copilot uses AI. Check for mistakes.
OIDC_MAX_AGE: ${OIDC_MAX_AGE:-"0"}
OIDC_PROMPT_TYPE: ${OIDC_PROMPT_TYPE:-"consent"}
OIDC_SESSION_EXPIRY: ${OIDC_SESSION_EXPIRY:-"604800"}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ services:
OIDC_CLIENT_AUTH_METHOD: ${OIDC_CLIENT_AUTH_METHOD:-"client_secret_post"}
OIDC_TENANT: ${OIDC_TENANT:-""}
OIDC_MAX_CLOCK_SKEW: ${OIDC_MAX_CLOCK_SKEW:-""}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-{}}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
Copy link

Copilot AI Apr 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-} is unquoted. With the variable unset it can become YAML null (Compose treats as pass-through/omit), and with values like {...} it may be parsed as a YAML map instead of a string. Quote the interpolation or default explicitly to an empty string to keep the env var consistently typed as a string.

Suggested change
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
OIDC_CUSTOM_PARAMS: "${OIDC_CUSTOM_PARAMS:-}"

Copilot uses AI. Check for mistakes.
OIDC_MAX_AGE: ${OIDC_MAX_AGE:-"0"}
OIDC_PROMPT_TYPE: ${OIDC_PROMPT_TYPE:-"consent"}
OIDC_SESSION_EXPIRY: ${OIDC_SESSION_EXPIRY:-"604800"}
Expand Down Expand Up @@ -281,7 +281,7 @@ services:
OIDC_CLIENT_AUTH_METHOD: ${OIDC_CLIENT_AUTH_METHOD:-"client_secret_post"}
OIDC_TENANT: ${OIDC_TENANT:-""}
OIDC_MAX_CLOCK_SKEW: ${OIDC_MAX_CLOCK_SKEW:-""}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-{}}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
Copy link

Copilot AI Apr 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same issue as earlier in the file: ${OIDC_CUSTOM_PARAMS:-} is unquoted, so unset resolves to YAML null (Compose pass-through/omit) and {...} values can be parsed as YAML maps. Quote the interpolation or use an explicit empty-string default to guarantee a string env var value.

Suggested change
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-""}

Copilot uses AI. Check for mistakes.
OIDC_MAX_AGE: ${OIDC_MAX_AGE:-"0"}
OIDC_PROMPT_TYPE: ${OIDC_PROMPT_TYPE:-"consent"}
OIDC_SESSION_EXPIRY: ${OIDC_SESSION_EXPIRY:-"604800"}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ services:
OIDC_CLIENT_AUTH_METHOD: ${OIDC_CLIENT_AUTH_METHOD:-"client_secret_post"}
OIDC_TENANT: ${OIDC_TENANT:-""}
OIDC_MAX_CLOCK_SKEW: ${OIDC_MAX_CLOCK_SKEW:-""}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-{}}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
Copy link

Copilot AI Apr 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-} is unquoted in a YAML mapping. When the variable is unset this can become a YAML null value (Compose treats null as pass-through/omit), and when set to {...} it can be parsed as a YAML map instead of a string. Quote the interpolation (wrap in double quotes) or use an explicit empty-string default to ensure the env var value is always a string.

Suggested change
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
OIDC_CUSTOM_PARAMS: "${OIDC_CUSTOM_PARAMS:-""}"

Copilot uses AI. Check for mistakes.
OIDC_MAX_AGE: ${OIDC_MAX_AGE:-"0"}
OIDC_PROMPT_TYPE: ${OIDC_PROMPT_TYPE:-"consent"}
OIDC_SESSION_EXPIRY: ${OIDC_SESSION_EXPIRY:-"604800"}
Expand Down Expand Up @@ -329,7 +329,7 @@ services:
OIDC_CLIENT_AUTH_METHOD: ${OIDC_CLIENT_AUTH_METHOD:-"client_secret_post"}
OIDC_TENANT: ${OIDC_TENANT:-""}
OIDC_MAX_CLOCK_SKEW: ${OIDC_MAX_CLOCK_SKEW:-""}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-{}}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
Copy link

Copilot AI Apr 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same issue as earlier in the file: the unquoted ${OIDC_CUSTOM_PARAMS:-} can resolve to YAML null when unset and can be parsed as a YAML map if the value is {...}. Quote the interpolation or use an explicit empty-string default so Compose consistently treats this as a string env var value.

Suggested change
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-""}

Copilot uses AI. Check for mistakes.
OIDC_MAX_AGE: ${OIDC_MAX_AGE:-"0"}
OIDC_PROMPT_TYPE: ${OIDC_PROMPT_TYPE:-"consent"}
OIDC_SESSION_EXPIRY: ${OIDC_SESSION_EXPIRY:-"604800"}
Expand Down
4 changes: 2 additions & 2 deletions docker/docker-compose-quickstart/docker-compose-rdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ services:
OIDC_CLIENT_AUTH_METHOD: ${OIDC_CLIENT_AUTH_METHOD:-"client_secret_post"}
OIDC_TENANT: ${OIDC_TENANT:-""}
OIDC_MAX_CLOCK_SKEW: ${OIDC_MAX_CLOCK_SKEW:-""}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-{}}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
Copy link

Copilot AI Apr 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-} is unquoted. If the variable is unset it can resolve to a YAML null (Compose pass-through/omit semantics), and if set to {...} it can be parsed as a YAML map rather than a string. Quote the interpolation or use an explicit empty-string default so the container always receives a string value.

Suggested change
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-""}

Copilot uses AI. Check for mistakes.

# Database configuration for MySQL
DB_DRIVER_CLASS: ${DB_DRIVER_CLASS:-com.mysql.cj.jdbc.Driver}
Expand Down Expand Up @@ -318,7 +318,7 @@ services:
OIDC_CLIENT_AUTH_METHOD: ${OIDC_CLIENT_AUTH_METHOD:-"client_secret_post"}
OIDC_TENANT: ${OIDC_TENANT:-""}
OIDC_MAX_CLOCK_SKEW: ${OIDC_MAX_CLOCK_SKEW:-""}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-{}}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
Copy link

Copilot AI Apr 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same issue as earlier in the file: leaving ${OIDC_CUSTOM_PARAMS:-} unquoted can yield YAML null when unset and YAML map typing when set to {...}. Quote the interpolation or default explicitly to an empty string to keep the env var consistently a string.

Suggested change
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-""}

Copilot uses AI. Check for mistakes.

# Database configuration for MySQL
DB_DRIVER_CLASS: ${DB_DRIVER_CLASS:-com.mysql.cj.jdbc.Driver}
Expand Down
4 changes: 2 additions & 2 deletions docker/docker-compose-quickstart/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ services:
OIDC_CLIENT_AUTH_METHOD: ${OIDC_CLIENT_AUTH_METHOD:-"client_secret_post"}
OIDC_TENANT: ${OIDC_TENANT:-""}
OIDC_MAX_CLOCK_SKEW: ${OIDC_MAX_CLOCK_SKEW:-""}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-{}}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
Copy link

Copilot AI Apr 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-} is unquoted in a YAML mapping. When the variable is unset this can become a YAML null value (which Compose treats as “take from host env” / omit), and when set to something like {...} it can be parsed as a YAML map rather than a string. To keep Compose behavior consistent and ensure the container always receives a string, quote the interpolation (e.g., wrap the value in double quotes) or use an explicit empty-string default.

Suggested change
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
OIDC_CUSTOM_PARAMS: "${OIDC_CUSTOM_PARAMS:-}"

Copilot uses AI. Check for mistakes.
OIDC_MAX_AGE: ${OIDC_MAX_AGE:-"0"}
OIDC_PROMPT_TYPE: ${OIDC_PROMPT_TYPE:-"consent"}
OIDC_SESSION_EXPIRY: ${OIDC_SESSION_EXPIRY:-"604800"}
Expand Down Expand Up @@ -327,7 +327,7 @@ services:
OIDC_CLIENT_AUTH_METHOD: ${OIDC_CLIENT_AUTH_METHOD:-"client_secret_post"}
OIDC_TENANT: ${OIDC_TENANT:-""}
OIDC_MAX_CLOCK_SKEW: ${OIDC_MAX_CLOCK_SKEW:-""}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-{}}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
Copy link

Copilot AI Apr 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same issue as earlier in the file: this unquoted ${OIDC_CUSTOM_PARAMS:-} can become YAML null when unset and can be parsed as a YAML map when set to {...}, which can lead to Compose pass-through/omit semantics or unexpected stringification. Quote the interpolation or use an explicit empty-string default to ensure a string env var value.

Suggested change
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-}
OIDC_CUSTOM_PARAMS: ${OIDC_CUSTOM_PARAMS:-""}

Copilot uses AI. Check for mistakes.
OIDC_MAX_AGE: ${OIDC_MAX_AGE:-"0"}
OIDC_PROMPT_TYPE: ${OIDC_PROMPT_TYPE:-"consent"}
OIDC_SESSION_EXPIRY: ${OIDC_SESSION_EXPIRY:-"604800"}
Expand Down
Loading