I have a similar question, but it would be for the equivalent operation with the Azure SDK for Node.js.
I've created a managed certificate with those instructions and checked on resources.azure.com to understand what is actually generated by Azure's backend (placeholders such as {certificateName} are in place instead of the actual values):
{"id":"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupId}/providers/Microsoft.Web/certificates/{certificateName}","name":"{certificateName}","type":"Microsoft.Web/certificates","location":"East US","properties":{"friendlyName":"","subjectName":"{hostname}","hostNames":["{hostname}"],"pfxBlob":null,"siteName":null,"selfLink":null,"issuer":"GeoTrust RSA CA 2018","issueDate":"2020-03-25T00:00:00+00:00","expirationDate":"2020-09-25T12:00:00+00:00","password":null,"thumbprint":"{certificateThumbprint}","valid":null,"toDelete":null,"cerBlob":null,"publicKeyHash":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"keyVaultId":"","keyVaultSecretName":"","keyVaultSecretStatus":"Succeeded","webSpace":"{resourceGroupId}-EastUSwebspace","serverFarmId":null,"canonicalName":"{hostname}","tags":null}}
I'm not sure if we only have to fill the following properties:
Hi Félix: I would rather use the automatic set up I have above, which works with all languages, than try to set it up manually. It might work today, but it might break when there's a new release. Then, I don't expect this to be very complicated or change very often, so if you only need to change those 5 properties it's probably not too bad.
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
I have a similar question, but it would be for the equivalent operation with the Azure SDK for Node.js.
I've created a managed certificate with those instructions and checked on resources.azure.com to understand what is actually generated by Azure's backend (placeholders such as
{certificateName}are in place instead of the actual values):I'm not sure if we only have to fill the following properties:
name;location;subjectName;hostNames;canonicalName;Hi Félix: I would rather use the automatic set up I have above, which works with all languages, than try to set it up manually. It might work today, but it might break when there's a new release. Then, I don't expect this to be very complicated or change very often, so if you only need to change those 5 properties it's probably not too bad.