Skip to content

Commit 88ea26b

Browse files
committed
Merge branch 'main' into feature/manage+stepup
2 parents d8901a7 + e4efb21 commit 88ea26b

File tree

4 files changed

+17
-13
lines changed

4 files changed

+17
-13
lines changed

environments/template/group_vars/template.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -156,15 +156,15 @@ voot:
156156
- { name: "voot", level: "DEBUG" }
157157
externalGroupProviders:
158158
- {
159-
type: "teams",
160-
url: "https://teams.{{ base_domain }}/api/voot",
161-
credentials: {
162-
username: "{{ teams.voot_api_user }}",
163-
secret: "{{ external_group_provider_secrets.teams }}"
164-
},
165-
schacHomeOrganization: "{{ base_domain}}",
166-
name: "SURFteams",
167-
timeoutMillis: 15000
159+
type: "invite",
160+
url: "https://invite.{{ base_domain }}/api/external/v1/voot",
161+
credentials: {
162+
username: "{{ invite.vootuser }}",
163+
secret: "{{ invite.vootsecret }}"
164+
},
165+
schacHomeOrganization: "N/A",
166+
name: "Invite",
167+
timeoutMillis: 3000
168168
}
169169

170170
oidc_playground:

roles/docker/defaults/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@ docker_apt_gpg_key_checksum: "sha256:1500c1f56fa9e26b9b8f42452a553675796ade0807c
88
docker_apt_filename: "docker"
99
docker_install_traefik: true
1010
docker_traefik_ldaps: false
11+
docker_traefik_version: 3.6.10
1112
docker_traefik_ports:
1213
- 0.0.0.0:443:443

roles/docker/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
- name: Create the Traefik loadbalancer
8383
community.docker.docker_container:
8484
name: loadbalancer
85-
image: traefik:latest
85+
image: traefik:{{ docker_traefik_version }}
8686
published_ports: "{{ docker_traefik_ports }}"
8787
pull: true
8888
restart_policy: "always"

roles/invite/templates/serverapplication.yml.j2

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ logging:
77
org.springframework.security: WARN
88
com.zaxxer.hikari: ERROR
99
invite: DEBUG
10+
net.javacrumbs.shedlock: DEBUG
1011

1112
server:
1213
port: 8080
@@ -74,11 +75,13 @@ crypto:
7475
private-key-location: file:///private_key_pkcs8.pem
7576

7677
cron:
77-
user-cleaner-expression: "0 0/30 * * * *"
78+
user-cleaner-cron: "PT30M"
79+
user-cleaner-cron-initial-delay: "PT10M"
7880
user-cleaner-lock-at-least-for: "PT5M"
7981
user-cleaner-lock-at-most-for: "PT28M"
8082
last-activity-duration-days: 1000
81-
role-expiration-notifier-expression: "0 0/30 * * * *"
83+
role-expiration-notifier-cron: "PT30M"
84+
role-expiration-notifier-cron-initial-delay: "PT15M"
8285
# Set to -1 to suppress role expiry notifications
8386
role-expiration-notifier-duration-days: 5
8487
role-expiration-notifier-lock-at-least-for: "PT5M"
@@ -87,7 +90,7 @@ cron:
8790
metadata-resolver-fixed-rate-milliseconds: 86_400_000
8891
metadata-resolver-url: "https://metadata.{{ base_domain }}/idps-metadata.xml"
8992
# A value of 0 means no logs will be deleted
90-
purge-audit-log-days: 365
93+
purge-audit-log-days: 0
9194
# A value of 0 means no invitations will be deleted
9295
purge-expired-invitations-days: 365
9396

0 commit comments

Comments
 (0)