-
Notifications
You must be signed in to change notification settings - Fork 581
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
Follow-up fixes to RunAsExisting flow #7494
Conversation
captainsafia
commented
Feb 9, 2025
- Inline Tags configuration for key vault
- Set resource scope in user-secrets config
- Remove fallback to default user group if existing resource group was not found
- Fix resolution of resource group name from parameter resource
src/Aspire.Hosting.Azure/Provisioning/Provisioners/BicepProvisioner.cs
Outdated
Show resolved
Hide resolved
…ioner.cs Co-authored-by: David Fowler <[email protected]>
@@ -114,9 +114,9 @@ public override async Task GetOrCreateResourceAsync(AzureBicepResource resource, | |||
existingResource.ResourceGroup is { } existingResourceGroup) | |||
{ | |||
var existingResourceGroupName = existingResourceGroup is ParameterResource parameterResource | |||
? parameterResource.Name | |||
? parameterResource.Value |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I knew it was doing this from the error I was getting
: (string)existingResourceGroup; | ||
resourceGroup = await context.GetResourceGroup(existingResourceGroupName, resourceLogger, cancellationToken).ConfigureAwait(false); | ||
resourceGroup = await context.Subscription.GetResourceGroupAsync(existingResourceGroupName, cancellationToken).ConfigureAwait(false); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this handle if the resource group doesn't exist?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Depends on what you mean by handle. Before it would fallback to the default group. Now, it'll fail and you'll see something like this in the logs:
Provisioning sbemulator...
Error provisioning sbemulator.
Azure.RequestFailedException: Resource group 'rg-aspire-deploy-not-real' could not be found.
Status: 404 (Not Found)
ErrorCode: ResourceGroupNotFound
Content:
{"error":{"code":"ResourceGroupNotFound","message":"Resource group 'rg-aspire-deploy-not-real' could not be found."}}