This message was deleted.
# general
s
This message was deleted.
g
Are you looking at the example, or are you looking somewhere else on that page? I ask because that part matters to where I point you to 🙂 If you'd rather just open an issue and have us take care of it, there's a link to the left on the docs page called "Request a Change." That takes you to a repo to make the issue so we can take it from there. For this specific API doc, I'm pretty sure it's all generated from the schema itself. There's a couple things that are hand-built, but not many.
b
I am looking at the example provided there in the pulumi docs
Copy code
...
                SecretSource = new AzureNative.Cdn.Inputs.ResourceReferenceArgs
                {
                    Id = "/subscriptions/subid/resourcegroups/RG/providers/Microsoft.KeyVault/vault/kvName/certificate/certName",
                },
...
This section specifically. I found this by pulling the resource from the
az cli
but I have not found its reference in the Microsoft documentation specifically.
g
Gotcha. So that's auto-generated from Microsoft's schema directly: https://github.com/Azure/azure-rest-api-specs/blob/main/specification/cdn/resource[…]er/Microsoft.Cdn/stable/2020-09-01/examples/Secrets_Create.json (it shows up in our repo in this autogenerated file). If you want to open an issue with us, you're welcome to, but you could also open a PR to address it directly on the Azure side, and we'll pull in the change automatically once it merges 🙂
b
TY I will work on submitting this directly to Azure.
👍 1