Hi all, what do you do on long running set-ups? On...
# azure
a
Hi all, what do you do on long running set-ups? One the first run it fails sometimes. On the second run it works. I.e. I’m adding a cname record to a generated azure static web apps — it did add it and its validating in the; but the an error is still occurring in CI (flaky). There is a
--no-wait
option in the azure CLI documentation, but on pulumis side there seems no such property available for
StaticSiteCustomDomain
resource. Is there a way to add that?
Copy code
// Linking custom domain to DNS zone
    return new azure_native.web.StaticSiteCustomDomain(
      tw.DOMAIN,
      {
        domainName: tw.DOMAIN,
        name: staticWebAppName,
        resourceGroupName: resourceGroupName,
        validationMethod: "cname-delegation",
      },
      {
        dependsOn: [systemDnsRecord],
      },