fix(azure): preserve web app slot parent outputs - #1201
Merged
Merged
Conversation
hemalshah-gradientedge
requested review from
despock and
jameswiltshire
as code owners
September 14, 2026 21:56
hemalshah-gradientedge
force-pushed
the
feat/azure-webapp-slot
branch
from
September 14, 2026 21:57
8fabdac to
503f1c4
Compare
despock
previously approved these changes
Sep 14, 2026
despock
approved these changes
Sep 15, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request makes a patch update to the
@gradientedge/cdk-utils-azurepackage, focusing on improving the deployment process for Azure Web App deployment slots. The main change is to ensure deployment slots are created before dependent Web App deployment commands, which helps prevent deployment issues. The update also simplifies resource naming and updates related tests.Deployment slot creation order improvement:
SiteWithWebApp(main.ts) so thatcreateWebAppSlot()is now called after the Web App is created, ensuring deployment slots are provisioned before dependent commands. [1] [2].changesetfile to document this patch and its purpose.Resource naming and test updates:
AzureAppServiceManagerto use the providednameproperty directly instead of formatting it, simplifying resource name handling.SiteWithWebAppandAzureWebAppSlotConstructto reflect the changes in deployment slot creation and naming, ensuring the tests match the new behavior and resource names. [1] [2]