diff --git a/provider/legal-azure/README.md b/provider/legal-azure/README.md index 1a1bc406bd4bda06aff2d39e4fd4f2694826e0eb..9154f0013c4d45c8821c75ef7c3673b6668fdb35 100644 --- a/provider/legal-azure/README.md +++ b/provider/legal-azure/README.md @@ -40,6 +40,7 @@ az keyvault secret show --vault-name $KEY_VAULT_NAME --name $KEY_VAULT_SECRET_NA | name | value | description | sensitive? | source | | --- | --- | --- | --- | --- | | `LOG_PREFIX` | `legal` | Logging prefix | no | - | +| `server.servlet.contextPath` | `/api/legal/v1/` | Servlet context path | no | - | | `legal_service_region` | `us` | Legal service region | no | - | | `entitlements_service_endpoint` | ex `https://foo-entitlements.azurewebsites.net` | Entitlements API endpoint | no | output of infrastructure deployment | | `entitlements_service_api_key` | `********` | The API key clients will need to use when calling the service | yes | -- | diff --git a/provider/legal-azure/src/main/resources/application.properties b/provider/legal-azure/src/main/resources/application.properties index e7dae37ff058df1a45e9ceaa5e22f224d3460d9e..9e34853a1c3a0d2f4f00af9e0d96f6781f0c067a 100644 --- a/provider/legal-azure/src/main/resources/application.properties +++ b/provider/legal-azure/src/main/resources/application.properties @@ -13,6 +13,7 @@ # limitations under the License. LOG_PREFIX=legal +server.servlet.contextPath=/api/legal/v1/ REGION=${legal_service_region} AUTHORIZE_API=${entitlements_service_endpoint}