Skip to content

Commit

Permalink
New API to fetch whitelisted email domains
Browse files Browse the repository at this point in the history
  • Loading branch information
sreeragksgh committed Jul 12, 2024
1 parent cfe0a84 commit 503746e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions ansible/roles/kong-api/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15822,3 +15822,22 @@ kong_apis:
config.limit_by: credential
- name: request-size-limiting
config.allowed_payload_size: "{{ small_request_size_limit }}"

- name: approvedEmailDomains
uris: "{{ user_service_prefix }}/v1/email/approvedDomains"
upstream_url: "{{ sb_cb_ext_service_url }}/user/email/approved/domains"
strip_uri: true
plugins:
- name: jwt
- name: cors
- "{{ statsd_pulgin }}"
- name: acl
config.whitelist:
- 'courseAccess'
- name: rate-limiting
config.policy: local
config.hour: "{{ large_rate_limit_per_hour }}"
config.limit_by: credential
- name: request-size-limiting
config.allowed_payload_size: "{{ small_request_size_limit }}"

0 comments on commit 503746e

Please sign in to comment.