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
2 changes: 1 addition & 1 deletion all-in-one/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ A Helm chart for the deployment of WSO2 API Manager all-in-one distribution.
| wso2.apim.configurations.oauth_config.enableTokenEncryption | bool | `false` | Enable token encryption |
| wso2.apim.configurations.oauth_config.enableTokenHashing | bool | `false` | Enable token hashing |
| wso2.apim.configurations.oauth_config.oauth2JWKSUrl | string | `""` | |
| wso2.apim.configurations.oauth_config.removeOutboundAuthHeader | bool | `true` | Remove auth header from outgoing requests |
| wso2.apim.configurations.oauth_config.enableOutboundAuthHeader | bool | `false` | Send oauth header to the backend as received from the client |
| wso2.apim.configurations.oauth_config.revokeEndpoint | string | `""` | OAuth revoke endpoint |
| wso2.apim.configurations.organization_based_access_control.enabled | bool | `true` | |
| wso2.apim.configurations.organization_based_access_control.organization_id_local_claim | string | `"http://wso2.org/claims/organizationId"` | |
Expand Down
2 changes: 1 addition & 1 deletion all-in-one/confs/instance-1/deployment.toml
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ claims_extractor_impl = {{ .Values.wso2.apim.configurations.jwt.claimsExtractorI
{{- end }}

[apim.oauth_config]
remove_outbound_auth_header = {{ .Values.wso2.apim.configurations.oauth_config.removeOutboundAuthHeader }}
enable_outbound_auth_header = {{ .Values.wso2.apim.configurations.oauth_config.enableOutboundAuthHeader }}
auth_header = {{ .Values.wso2.apim.configurations.oauth_config.authHeader | quote }}
revoke_endpoint = {{ .Values.wso2.apim.configurations.oauth_config.revokeEndpoint | quote }}
enable_token_encryption = {{ .Values.wso2.apim.configurations.oauth_config.enableTokenEncryption }}
Expand Down
2 changes: 1 addition & 1 deletion all-in-one/confs/instance-2/deployment.toml
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ claims_extractor_impl = {{ .Values.wso2.apim.configurations.jwt.claimsExtractorI
{{- end }}

[apim.oauth_config]
remove_outbound_auth_header = {{ .Values.wso2.apim.configurations.oauth_config.removeOutboundAuthHeader }}
enable_outbound_auth_header = {{ .Values.wso2.apim.configurations.oauth_config.enableOutboundAuthHeader }}
auth_header = {{ .Values.wso2.apim.configurations.oauth_config.authHeader | quote }}
revoke_endpoint = {{ .Values.wso2.apim.configurations.oauth_config.revokeEndpoint | quote }}
enable_token_encryption = {{ .Values.wso2.apim.configurations.oauth_config.enableTokenEncryption }}
Expand Down
4 changes: 2 additions & 2 deletions all-in-one/default_openshift_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -415,8 +415,8 @@ wso2:

# APIM OAuth configurations
oauth_config:
# -- Remove auth header from outgoing requests
removeOutboundAuthHeader: true
# -- Enable outbound auth header in outgoing requests
enableOutboundAuthHeader: false
# -- OAuth authorization header name
authHeader: "Authorization"
# -- OAuth revoke endpoint
Expand Down
4 changes: 2 additions & 2 deletions all-in-one/default_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -460,8 +460,8 @@ wso2:

# APIM OAuth configurations
oauth_config:
# -- Remove auth header from outgoing requests
removeOutboundAuthHeader: true
# -- Enable outbound auth header in outgoing requests
enableOutboundAuthHeader: false
# -- OAuth authorization header name
authHeader: "Authorization"
# -- OAuth revoke endpoint
Expand Down
4 changes: 2 additions & 2 deletions all-in-one/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -531,8 +531,8 @@ wso2:

# APIM OAuth configurations
oauth_config:
# -- Remove auth header from outgoing requests
removeOutboundAuthHeader: true
# -- Enable outbound auth header in outgoing requests
enableOutboundAuthHeader: false
# -- OAuth authorization header name
authHeader: "Authorization"
# -- OAuth revoke endpoint
Expand Down
2 changes: 1 addition & 1 deletion distributed/gateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ A Helm chart for the deployment of WSO2 API Management Universal Gateway profile
| wso2.apim.configurations.oauth_config.authHeader | string | `"Authorization"` | OAuth authorization header name |
| wso2.apim.configurations.oauth_config.enableTokenEncryption | bool | `false` | Enable token encryption |
| wso2.apim.configurations.oauth_config.enableTokenHashing | bool | `false` | Enable token hashing |
| wso2.apim.configurations.oauth_config.removeOutboundAuthHeader | bool | `true` | Remove oauth header from outgoing requests |
| wso2.apim.configurations.oauth_config.enableOutboundAuthHeader | bool | `false` | Send oauth header to the backend as received from the client |
| wso2.apim.configurations.openTelemetry.enabled | bool | `false` | Open Telemetry enabled |
| wso2.apim.configurations.openTelemetry.hostname | string | `""` | Remote tracer hostname |
| wso2.apim.configurations.openTelemetry.name | string | `""` | Remote tracer name. e.g. jaeger, zipkin, OTLP |
Expand Down
2 changes: 1 addition & 1 deletion distributed/gateway/confs/deployment.toml
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ enable = {{ .Values.wso2.apim.configurations.cache.jwt_claim.enabled }}
expiry_time = {{ .Values.wso2.apim.configurations.cache.jwt_claim.expiryTime }}

[apim.oauth_config]
remove_outbound_auth_header = {{ .Values.wso2.apim.configurations.oauth_config.removeOutboundAuthHeader }}
enable_outbound_auth_header = {{ .Values.wso2.apim.configurations.oauth_config.enableOutboundAuthHeader }}
auth_header = {{ .Values.wso2.apim.configurations.oauth_config.authHeader | quote }}
enable_token_encryption = {{ .Values.wso2.apim.configurations.oauth_config.enableTokenEncryption }}
enable_token_hashing = {{ .Values.wso2.apim.configurations.oauth_config.enableTokenHashing }}
Expand Down
2 changes: 1 addition & 1 deletion distributed/gateway/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ wso2:
# APIM OAuth configurations
oauth_config:
# -- Remove oauth header from outgoing requests
removeOutboundAuthHeader: true
enableOutboundAuthHeader: false
# -- OAuth authorization header name
authHeader: "Authorization"
# -- Enable token encryption
Expand Down
4 changes: 2 additions & 2 deletions docs/am-pattern-0-all-in-one/default_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -402,8 +402,8 @@ wso2:

# APIM OAuth configurations
oauth_config:
# -- Remove auth header from outgoing requests
removeOutboundAuthHeader: true
# -- Enable outbound auth header in outgoing requests
enableOutboundAuthHeader: false
# -- OAuth authorization header name
authHeader: "Authorization"
# -- OAuth revoke endpoint
Expand Down
4 changes: 2 additions & 2 deletions docs/am-pattern-1-all-in-one-HA/default_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -416,8 +416,8 @@ wso2:

# APIM OAuth configurations
oauth_config:
# -- Remove auth header from outgoing requests
removeOutboundAuthHeader: true
# -- Enable outbound auth header in outgoing requests
enableOutboundAuthHeader: false
# -- OAuth authorization header name
authHeader: "Authorization"
# -- OAuth revoke endpoint
Expand Down
2 changes: 1 addition & 1 deletion docs/am-pattern-2-all-in-one_GW/default_gw_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ wso2:
# APIM OAuth configurations
oauth_config:
# -- Remove oauth header from outgoing requests
removeOutboundAuthHeader: true
enableOutboundAuthHeader: false
# -- OAuth authorization header name
authHeader: "Authorization"
# -- Enable token encryption
Expand Down
4 changes: 2 additions & 2 deletions docs/am-pattern-2-all-in-one_GW/default_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -394,8 +394,8 @@ wso2:

# APIM OAuth configurations
oauth_config:
# -- Remove auth header from outgoing requests
removeOutboundAuthHeader: true
# -- Enable outbound auth header in outgoing requests
enableOutboundAuthHeader: false
# -- OAuth authorization header name
authHeader: "Authorization"
# -- OAuth revoke endpoint
Expand Down
2 changes: 1 addition & 1 deletion docs/am-pattern-3-ACP_TM_GW/default_gw_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ wso2:
# APIM OAuth configurations
oauth_config:
# -- Remove oauth header from outgoing requests
removeOutboundAuthHeader: true
enableOutboundAuthHeader: false
# -- OAuth authorization header name
authHeader: "Authorization"
# -- Enable token encryption
Expand Down
2 changes: 1 addition & 1 deletion docs/am-pattern-4-ACP_TM_GW_KM/default_gw_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ wso2:
# APIM OAuth configurations
oauth_config:
# -- Remove oauth header from outgoing requests
removeOutboundAuthHeader: true
enableOutboundAuthHeader: false
# -- OAuth authorization header name
authHeader: "Authorization"
# -- Enable token encryption
Expand Down
2 changes: 1 addition & 1 deletion docs/am-pattern-5-all-in-one_GW_KM/default_gw_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ wso2:
# APIM OAuth configurations
oauth_config:
# -- Remove oauth header from outgoing requests
removeOutboundAuthHeader: true
enableOutboundAuthHeader: false
# -- OAuth authorization header name
authHeader: "Authorization"
# -- Enable token encryption
Expand Down
4 changes: 2 additions & 2 deletions docs/am-pattern-5-all-in-one_GW_KM/default_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -401,8 +401,8 @@ wso2:

# APIM OAuth configurations
oauth_config:
# -- Remove auth header from outgoing requests
removeOutboundAuthHeader: true
# -- Enable outbound auth header in outgoing requests
enableOutboundAuthHeader: false
# -- OAuth authorization header name
authHeader: "Authorization"
# -- OAuth revoke endpoint
Expand Down