Hi All, I'm trying to provision Azure App Service ...
# general
w
Hi All, I'm trying to provision Azure App Service Certificate using pulumi. However, I got an error message is 'The parameter AutoRenew has an invalid value.' below is my code. Tried to fine some sample on github but not luck. Please if you have.
Copy code
const order = new azure.appservice.CertificateOrder('sample-dev', {
    name: 'sample-dev',
    csr: '*.host.dev',
    autoRenew: true,
    ...group,
    location: 'global',
    productType: 'WildCard',
    validityInYears: 3
  });
t
Yeah, I can reproduce this… looks very much like an issue in Azure, honestly. All the docs say it’s a boolean property.
👍 1
w
Could we skip the value as it should be 'true' by default. I guest only these parameters are required.