-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathmanifest.yml
More file actions
37 lines (36 loc) · 1.12 KB
/
manifest.yml
File metadata and controls
37 lines (36 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# SPDX-FileCopyrightText: 2018-2022 SAP SE or an SAP affiliate company and Cloud Security Client Java contributors
# SPDX-License-Identifier: Apache-2.0
---
# Configuration:
# configured for EU10. For other landscapes, please adopt LANDSCAPE_APPS_DOMAIN in ../vars.yml
# If the route is occupied, you might need to change ID in ../vars.yml
applications:
# The sample application.
- name: spring-security-xsuaa-usage
instances: 1
memory: 896M
routes:
- route: spring-security-xsuaa-usage-((ID)).((LANDSCAPE_APPS_DOMAIN))
path: target/spring-security-xsuaa-usage.jar
services:
- xsuaa-authentication
env:
IAS_XSUAA_XCHANGE_ENABLED: true
# Application Router as web server
- name: approuter-spring-security-xsuaa-usage
path: approuter
buildpacks:
- nodejs_buildpack
memory: 128M
routes:
- route: spring-security-xsuaa-usage-web-((ID)).((LANDSCAPE_APPS_DOMAIN))
services:
- xsuaa-authentication
env:
destinations: >
[
{"name":"token-destination",
"url":"https://spring-security-xsuaa-usage-((ID)).((LANDSCAPE_APPS_DOMAIN))",
"forwardAuthToken": true}
]
...