I am working on a Forge app where I need to send requests to multiple external endpoints.
The challenge is that there is no fixed or predefined list of these endpoints, because they are determined dynamically at runtime.
To handle this, I configured my manifest.yml using wildcard domains, for example https://*.com, which allows the app to send requests to any endpoint that ends with .com.
My concern is whether this approach could cause issues once the app is deployed to production. I am not sure if this behavior is fully supported or if it might be considered a bug or lead to unexpected problems during the production approval or runtime.
Are there any known limitations, risks, or best practices around using wildcard domains in Forge manifests?
Additionally, are there alternative or recommended approaches to handle dynamically determined external endpoints in Forge apps?