Marcin Jastrzebski
Marcin Jastrzebski
Yup, fair enough. The above is the exact reason why we never implemented the secure support for outputs. However, if there's enough interest (aka upvotes 😊), it's definitely something we...
For context, the default GitHub throttling is 60 anonymous requests per hour per IP address. This is why 61 reproduces the problem. I agree that we should setup a CDN...
The throttling is per IP address. If the IP address doesn't change or if you have a bunch of things NAT'd together, they will appear to be coming from the...
Status update from our side. The CDN is up and running. The remaining work is to update the PS and CLI to use the new URI to download Bicep. @davidcho23...
We hit an issue with the first CDN rollout and had to revert. We have a new design finalized that will fix the problem and @davidcho23 is working on it....
You can work around this using the `any()` function like this: ```bicep @description('Location Name') @allowed([ 'eastus' 'eastus2' 'westus' 'westus2' 'centralus' ]) param locationName string = any(resourceGroup().location) ```
Thanks for the self-contained repro @brwilkinson. It looks like the root cause is that we're not doing index replacement in a way that preserves the local loop name.
I'm currently investigating this issue. There's a deeper problem with index expression substitution, which makes this more complicated to fix unfortunately.
We are working on a new JSON format that exposes the concepts of symbolic names and `existing` resources in the JSON. You can enable it in Bicep by setting the...