tall-easter-67692
10/22/2023, 11:36 AMif using Kubernetes deployment and oathkeeer maester, it'll be two CRD with non-overlapping matching rules on the HTTP path (edited)@alert-advantage-94977 is it possible without using maester? nice to know it's possible using maester!
enough-minister-53361
10/25/2023, 3:44 PM- id: api1
match:
url: <https://api1.example.com/health>
...
- id: api2
match:
url: <https://api2.example.com/health>
...
Else, if you want to handle both paths in the same manner, you create one entry and use a glob or regex pattern (regex is default):
- id: health
match:
url: https://<.*>.example.com/health
...
See https://www.ory.sh/docs/oathkeeper/api-access-rules#access-rule-format for more information and example of access rules. Hope this helps!tall-easter-67692
11/02/2023, 7:38 AM