-
Suggestion
-
Resolution: Unresolved
When we define egress permissions directly, wildcard prefix ( * ) is accepted.
permissions:
external:
fetch:
backend:
- '*.ingest.sentry.io'
However, with forge remotes baseUrls cannot contain wildcard as prefix. So, the above manifest cannot be re-written like this.
permissions:
external:
fetch:
backend:
- remote: remote-backend
remotes:
- key: remote-backend
baseUrl: "*.ingest.sentry.io"
operations:
- fetch
Please add the ability to use wildcards with baseUrls in forge remotes.
Workaround
It's possible to add wildcard if we keep `https://` prefix like this.
permissions:
external:
fetch:
backend:
- remote: remote-backend
remotes:
- key: remote-backend
baseUrl: "https://*.ingest.sentry.io"
operations:
- fetch
- relates to
-
ECO-318 Updating a remote's base URL to reduce the scope of the base URL should result in a minor version change
- Gathering Interest