-
Notifications
You must be signed in to change notification settings - Fork 4
/
application.yaml
109 lines (106 loc) · 2.47 KB
/
application.yaml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
logging:
level:
root: INFO
management:
endpoint:
health:
show-details: "always"
security:
enabled: false
endpoints:
web:
base-path: /
spring:
flyway:
enabled: false
security:
enabled: false
datasource:
url: jdbc:postgresql://${CAMUNDA_DB_HOST:localhost}:${CAMUNDA_DB_PORT:5432}/${CAMUNDA_DB_NAME:camunda}${CAMUNDA_DB_CONN_OPTIONS:}
username: ${CAMUNDA_DB_USER_NAME:camunda}
password: ${CAMUNDA_DB_PASSWORD:camunda}
camunda:
api:
auth:
enabled: true
ui:
auth:
enabled: false
bpm:
authorization:
enabled: true
admin-user:
id: admin
password: ${CAMUNDA_ADMIN_PASSWORD:admin}
firstName: Admin
filter:
create: All tasks
generic-properties:
properties:
generalResourceWhitelistPattern: '[.a-zA-Z0-9@_-]+'
database:
# We manage database versioning through flyway. Using this can cause the schema to go out of sync.
schema-update: false
webapp:
application-path: /
camundaGroups:
rpe:
adGroupId: c36eaede-a0ae-4967-8fed-0a02960b1370
tenantId: rpe
groupId: rpe
accessControl: user
work-allocation:
adGroupId: cdeb331b-adfe-46a7-a2c8-a628e2d35d96
tenantId: work-allocation
groupId: work-allocation
accessControl: user
s2sServiceNames:
- wa_task_management_api
- wa_task_configuration_api
- wa_workflow_api
civil-unspecified:
adGroupId: 40c33f5a-24d0-4b22-a923-df8a80a59cd9
tenantId: civil-unspecified
groupId: civil-unspecified
accessControl: user
s2sServiceNames:
- unspec-service
camundaAdminGroupId: c36eaede-a0ae-4967-8fed-0a02960b1370
camundaAccess:
user:
deploymentAccess: true
taskAccess: true
processDefinition: true
processInstance: true
batchAccess: true
decisionDefinitionAccess: true
optimiseAccess: true
server:
servlet:
context-path: /
port: 8999
idam:
s2s-auth:
url: ${S2S_URL:http://localhost:4552}
---
spring:
profiles: springauth
security:
enabled: true
oauth2:
client:
registration:
azure:
provider: azure
client-id: ${CLIENT_ID}
client-secret: ${CLIENT_SECRET}
authorization-grant-type: authorization_code
scope:
- openid
provider:
azure:
issuer-uri: ${ISSUER_URI:https://sts.windows.net/531ff96d-0ae9-462a-8d2d-bec7c0b42082/}
camunda:
ui:
auth:
enabled: true