Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

App Service - Issue with beginCreateOrUpdateAndWait(): Domain Purchase Not Automatically Delegating #28914

Closed
2 of 6 tasks
froggy1014 opened this issue Mar 14, 2024 · 0 comments
Labels
customer-reported Issues that are reported by GitHub users external to the Azure organization. needs-triage Workflow: This is a new issue that needs to be triaged to the appropriate team. question The issue doesn't require a change to the product in order to be resolved. Most issues start as that

Comments

@froggy1014
Copy link

  • Package Name: @azure/arm-appservice
  • Package Version: 14.0.0
  • Operating system:
  • nodejs
    • version: 18
  • browser
    • name/version:
  • typescript
    • version: 5.2
  • Is the bug related to documentation in

Describe the bug

When upgrading from version 13 to version 14 of azure@arm-appservice, using beginCreateOrUpdateAndWait() no longer automatically triggers Delegation within the domain resource group after purchasing a custom domain. Currently, we are performing Delegation manually, but I am posting this issue because I would like to know if there have been any changes to the SDK's operation code as the version has been upgraded."

To Reproduce
Steps to reproduce the behavior:

  1. Run the code below
 try {
      const { hostname } = params;
      const credential = await AzureService.login();
      const client = new WebSiteManagementClient(credential, AZURE.SUBSCRIPTION_ID);
      return client.domains.beginCreateOrUpdateAndWait(AZURE.CUSTOM_DOMAIN.DOMAIN_RESOURCE_GROUP, hostname, domain, {});
    } catch (e) {
      throw new Error(e);
  }
  1. Checked the domain under the resource group and found out that delegation has not been granted
image

Expected behavior
once domain purchased corretly, it should delegated automatically as before.

@github-actions github-actions bot added customer-reported Issues that are reported by GitHub users external to the Azure organization. needs-triage Workflow: This is a new issue that needs to be triaged to the appropriate team. question The issue doesn't require a change to the product in order to be resolved. Most issues start as that labels Mar 14, 2024
@github-actions github-actions bot locked and limited conversation to collaborators Jun 12, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
customer-reported Issues that are reported by GitHub users external to the Azure organization. needs-triage Workflow: This is a new issue that needs to be triaged to the appropriate team. question The issue doesn't require a change to the product in order to be resolved. Most issues start as that
Projects
None yet
Development

No branches or pull requests

1 participant