From ea2dd7df924caf9992b51590e5fcdd5a858f5f25 Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Mon, 23 Sep 2024 18:10:26 +0000 Subject: [PATCH 01/22] WIP --- cli/azd/cmd/env.go | 59 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) diff --git a/cli/azd/cmd/env.go b/cli/azd/cmd/env.go index d9883e32d27..35b00d27f49 100644 --- a/cli/azd/cmd/env.go +++ b/cli/azd/cmd/env.go @@ -45,6 +45,15 @@ func envActions(root *actions.ActionDescriptor) *actions.ActionDescriptor { ActionResolver: newEnvSetAction, }) + group.Add("set-secret", &actions.ActionDescriptorOptions{ + Command: &cobra.Command{ + Use: "set-secret ", + Short: "Set a Key Vault secret in the environment.", + }, + FlagsResolver: newEnvSetSecretFlags, + ActionResolver: newEnvSetSecretAction, + }) + group.Add("select", &actions.ActionDescriptorOptions{ Command: newEnvSelectCmd(), ActionResolver: newEnvSelectAction, @@ -150,6 +159,56 @@ func (e *envSetAction) Run(ctx context.Context) (*actions.ActionResult, error) { return nil, nil } +func newEnvSetSecretFlags(cmd *cobra.Command, global *internal.GlobalCommandOptions) *envSetSecretFlags { + flags := &envSetSecretFlags{} + flags.Bind(cmd.Flags(), global) + + return flags +} + +type envSetSecretFlags struct { + internal.EnvFlag + global *internal.GlobalCommandOptions +} + +func (f *envSetSecretFlags) Bind(local *pflag.FlagSet, global *internal.GlobalCommandOptions) { + f.EnvFlag.Bind(local, global) + f.global = global +} + +type envSetSecretAction struct { + console input.Console + azdCtx *azdcontext.AzdContext + env *environment.Environment + envManager environment.Manager + flags *envSetFlags + args []string +} + +func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, error) { + + e.console.Message(ctx, "Not implemented yet") + return nil, nil +} + +func newEnvSetSecretAction( + azdCtx *azdcontext.AzdContext, + env *environment.Environment, + envManager environment.Manager, + console input.Console, + flags *envSetFlags, + args []string, +) actions.Action { + return &envSetSecretAction{ + console: console, + azdCtx: azdCtx, + env: env, + envManager: envManager, + flags: flags, + args: args, + } +} + func newEnvSelectCmd() *cobra.Command { return &cobra.Command{ Use: "select ", From 68016bf1b9a1e0fe96fec5b5d28dcb0c1647ba7c Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Tue, 5 Nov 2024 04:31:40 +0000 Subject: [PATCH 02/22] create vault and assign role --- cli/azd/cmd/env.go | 192 ++++++++++++++++++++++++++++--- cli/azd/pkg/cloud/cloud.go | 5 + cli/azd/pkg/entraid/entraid.go | 32 +++++- cli/azd/pkg/keyvault/keyvault.go | 142 +++++++++++++++++++++++ cli/azd/pkg/prompt/prompter.go | 36 ++++-- go.mod | 21 ++-- go.sum | 55 +++++---- 7 files changed, 429 insertions(+), 54 deletions(-) diff --git a/cli/azd/cmd/env.go b/cli/azd/cmd/env.go index 35b00d27f49..5b41155e26f 100644 --- a/cli/azd/cmd/env.go +++ b/cli/azd/cmd/env.go @@ -12,15 +12,19 @@ import ( "github.com/azure/azure-dev/cli/azd/cmd/actions" "github.com/azure/azure-dev/cli/azd/internal" "github.com/azure/azure-dev/cli/azd/pkg/account" + "github.com/azure/azure-dev/cli/azd/pkg/azureutil" + "github.com/azure/azure-dev/cli/azd/pkg/entraid" "github.com/azure/azure-dev/cli/azd/pkg/environment" "github.com/azure/azure-dev/cli/azd/pkg/environment/azdcontext" "github.com/azure/azure-dev/cli/azd/pkg/infra/provisioning" "github.com/azure/azure-dev/cli/azd/pkg/infra/provisioning/bicep" "github.com/azure/azure-dev/cli/azd/pkg/input" + "github.com/azure/azure-dev/cli/azd/pkg/keyvault" "github.com/azure/azure-dev/cli/azd/pkg/output" "github.com/azure/azure-dev/cli/azd/pkg/output/ux" "github.com/azure/azure-dev/cli/azd/pkg/project" "github.com/azure/azure-dev/cli/azd/pkg/prompt" + "github.com/azure/azure-dev/cli/azd/pkg/tools/azcli" "github.com/spf13/cobra" "github.com/spf13/pflag" ) @@ -177,18 +181,168 @@ func (f *envSetSecretFlags) Bind(local *pflag.FlagSet, global *internal.GlobalCo } type envSetSecretAction struct { - console input.Console - azdCtx *azdcontext.AzdContext - env *environment.Environment - envManager environment.Manager - flags *envSetFlags - args []string + console input.Console + azdCtx *azdcontext.AzdContext + env *environment.Environment + envManager environment.Manager + flags *envSetFlags + args []string + prompter prompt.Prompter + kvService keyvault.KeyVaultService + entraIdService entraid.EntraIdService + subResolver account.SubscriptionTenantResolver + userProfileService *azcli.UserProfileService } func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, error) { - e.console.Message(ctx, "Not implemented yet") - return nil, nil + if len(e.args) < 1 { + return nil, fmt.Errorf( + "no secret name provided. Please provide a secret name to set like 'azd env set '") + } + secretName := e.args[0] + e.console.Message(ctx, "Setting secret: "+secretName) + + createNewStrategy := "Create a new Key Vault Secret" + selectExistingStrategy := "Select an existing Key Vault Secret" + setSecretStrategies := []string{createNewStrategy, selectExistingStrategy} + selectedStrategyIndex, err := e.console.Select( + ctx, + input.ConsoleOptions{ + Message: "How do you want to set the secret", + Options: setSecretStrategies, + DefaultValue: createNewStrategy, + }) + if err != nil { + return nil, fmt.Errorf("selecting secret setting strategy: %w", err) + } + + willCreateNewSecret := setSecretStrategies[selectedStrategyIndex] == createNewStrategy + + // default messages based on willCreateNewSecret == true + pickSubscription := "Select a subscription to create the Key Vault Secret" + pickKvAccount := "Select the Key Vault to create the secret" + + if !willCreateNewSecret { + // reassign messages for selecting existing secret + pickSubscription = "Select the subscription where the Key Vault Secret is" + pickKvAccount = "Select the Key Vault where the secret is" + } + + subId, err := e.prompter.PromptSubscription(ctx, pickSubscription) + if err != nil { + return nil, fmt.Errorf("prompting for subscription: %w", err) + } + tenantId, err := e.subResolver.LookupTenant(ctx, subId) + if err != nil { + return nil, fmt.Errorf("looking up tenant for subscription: %w", err) + } + + e.console.ShowSpinner(ctx, "Getting the list of vaults from the selected subscription", input.Step) + vaultsList, err := e.kvService.ListSubscriptionVaults(ctx, subId) + if err != nil { + return nil, fmt.Errorf("getting the list of vaults: %w", err) + } + // prompt for vault selection + e.console.StopSpinner(ctx, "", input.Step) + + atLeastOneKvAccountExists := len(vaultsList) > 0 + if !atLeastOneKvAccountExists && !willCreateNewSecret { + e.console.MessageUxItem(ctx, &ux.WarningMessage{ + Description: "No Key Vaults found in the selected subscription", + }) + // update the flow to offer creating a new Key Vault + willCreateNewSecret = true + } + + createNewKvAccountOption := " 1. Create a new Key Vault" + selectKvAccountOptions := []string{} + // indexOffset makes the ids to start from 1 instead of 0 when displaying the options + indexOffset := 1 + if willCreateNewSecret { + selectKvAccountOptions = append(selectKvAccountOptions, createNewKvAccountOption) + // have to offset 2 since we have added the first option with 1 for createNewKvAccountOption + indexOffset = 2 + } + for index, vault := range vaultsList { + selectKvAccountOptions = append(selectKvAccountOptions, fmt.Sprintf("%2d. %s", index+indexOffset, vault.Name)) + } + + kvAccountSelectionIndex, err := e.console.Select(ctx, input.ConsoleOptions{ + Message: pickKvAccount, + Options: selectKvAccountOptions, + DefaultValue: selectKvAccountOptions[0], + }) + if err != nil { + return nil, fmt.Errorf("selecting Key Vault: %w", err) + } + + willCreateNewKvAccount := selectKvAccountOptions[kvAccountSelectionIndex] == createNewKvAccountOption + if willCreateNewSecret && !willCreateNewKvAccount { + // when willCreateNewSecret is true, we added a new option at the beginning of the list + // to recover the original kv account name + kvAccountSelectionIndex-- + } + + var kvAccount keyvault.Vault + if atLeastOneKvAccountExists { + kvAccount = vaultsList[kvAccountSelectionIndex] + } + + if willCreateNewKvAccount { + location, err := e.prompter.PromptLocation(ctx, subId, "Select the location for the Key Vault", nil) + if err != nil { + return nil, fmt.Errorf("prompting for Key Vault location: %w", err) + } + rg, err := e.prompter.PromptResourceGroupFrom(ctx, subId, location, prompt.PromptResourceGroupFromOptions{ + DefaultName: "rg-for-my-kv-account", + }) + if err != nil { + return nil, fmt.Errorf("prompting for resource group: %w", err) + } + for { + kvAccountName, err := e.console.Prompt(ctx, input.ConsoleOptions{ + Message: "Enter the name of the Key Vault", + }) + if err != nil { + return nil, fmt.Errorf("prompting for Key Vault name: %w", err) + } + if kvAccountName == "" { + e.console.Message(ctx, "Key Vault name cannot be empty") + continue + } + e.console.ShowSpinner(ctx, "Creating Key Vault Account", input.Step) + vault, err := e.kvService.CreateVault(ctx, tenantId, subId, rg, location, kvAccountName) + e.console.StopSpinner(ctx, "", input.Step) + if err != nil { + e.console.Message(ctx, fmt.Sprintf("Error creating Key Vault: %v", err)) + continue + } + kvAccount = vault + + // RBAC role assignment + e.console.ShowSpinner(ctx, "Adding Administrator Role", input.Step) + principalId, err := azureutil.GetCurrentPrincipalId(ctx, e.userProfileService, tenantId) + e.console.StopSpinner(ctx, "", input.Step) + if err != nil { + return nil, fmt.Errorf("getting current principal ID: %w", err) + } + err = e.entraIdService.CreateRbac(ctx, subId, kvAccount.Id, keyvault.KeyVaultAdministrator, principalId) + if err != nil { + return nil, fmt.Errorf("creating Key Vault RBAC: %w", err) + } + break + } + } + + // set the secret + + return &actions.ActionResult{ + Message: &actions.ResultMessage{ + Header: "Selection: " + kvAccount.Name, + FollowUp: "Not implemented yet", + }, + }, nil } func newEnvSetSecretAction( @@ -198,14 +352,24 @@ func newEnvSetSecretAction( console input.Console, flags *envSetFlags, args []string, + prompter prompt.Prompter, + kvService keyvault.KeyVaultService, + entraIdService entraid.EntraIdService, + subResolver account.SubscriptionTenantResolver, + userProfileService *azcli.UserProfileService, ) actions.Action { return &envSetSecretAction{ - console: console, - azdCtx: azdCtx, - env: env, - envManager: envManager, - flags: flags, - args: args, + console: console, + azdCtx: azdCtx, + env: env, + envManager: envManager, + flags: flags, + args: args, + prompter: prompter, + kvService: kvService, + entraIdService: entraIdService, + subResolver: subResolver, + userProfileService: userProfileService, } } diff --git a/cli/azd/pkg/cloud/cloud.go b/cli/azd/pkg/cloud/cloud.go index ae1765a0e49..f824a7c2624 100644 --- a/cli/azd/pkg/cloud/cloud.go +++ b/cli/azd/pkg/cloud/cloud.go @@ -31,6 +31,8 @@ type Cloud struct { // known values and can be found at: // https:///metadata/endpoints?api-version=2023-12-01 ContainerRegistryEndpointSuffix string + + KeyVaultEndpointSuffix string } type Config struct { @@ -66,6 +68,7 @@ func AzurePublic() *Cloud { PortalUrlBase: "https://portal.azure.com", StorageEndpointSuffix: "core.windows.net", ContainerRegistryEndpointSuffix: "azurecr.io", + KeyVaultEndpointSuffix: "vault.azure.net", } } @@ -75,6 +78,7 @@ func AzureGovernment() *Cloud { PortalUrlBase: "https://portal.azure.us", StorageEndpointSuffix: "core.usgovcloudapi.net", ContainerRegistryEndpointSuffix: "azurecr.us", + KeyVaultEndpointSuffix: "vault.usgovcloudapi.net", } } @@ -84,6 +88,7 @@ func AzureChina() *Cloud { PortalUrlBase: "https://portal.azure.cn", StorageEndpointSuffix: "core.chinacloudapi.cn", ContainerRegistryEndpointSuffix: "azurecr.cn", + KeyVaultEndpointSuffix: "vault.azure.cn", } } diff --git a/cli/azd/pkg/entraid/entraid.go b/cli/azd/pkg/entraid/entraid.go index 2f0b9f6aa66..6e27e36668b 100644 --- a/cli/azd/pkg/entraid/entraid.go +++ b/cli/azd/pkg/entraid/entraid.go @@ -11,7 +11,7 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore" "github.com/Azure/azure-sdk-for-go/sdk/azcore/arm" "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" - "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/authorization/armauthorization" + "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/authorization/armauthorization/v2" "github.com/azure/azure-dev/cli/azd/internal" "github.com/azure/azure-dev/cli/azd/pkg/account" "github.com/azure/azure-dev/cli/azd/pkg/azure" @@ -57,6 +57,7 @@ type EntraIdService interface { clientId string, federatedCredentials []*graphsdk.FederatedIdentityCredential, ) ([]*graphsdk.FederatedIdentityCredential, error) + CreateRbac(ctx context.Context, subscriptionId string, scope, roleId, principalId string) error } type entraIdService struct { @@ -475,6 +476,22 @@ func (ad *entraIdService) ensureRoleAssignment( return nil } +func (ad *entraIdService) CreateRbac( + ctx context.Context, subscriptionId string, scope, roleId, principalId string) error { + fullRoleId := fmt.Sprintf("/subscriptions/%s%s", subscriptionId, roleId) + return ad.applyRoleAssignmentWithRetryImpl( + ctx, + subscriptionId, + scope, + &armauthorization.RoleDefinition{ + ID: to.Ptr(fullRoleId), + Name: to.Ptr(roleId), + }, + &graphsdk.ServicePrincipal{ + Id: to.Ptr(principalId), + }) +} + // Applies the role assignment to the specified service principal // This operation will retry up to 10 times to ensure the new service principal is available in Azure AD func (ad *entraIdService) applyRoleAssignmentWithRetry( @@ -482,13 +499,22 @@ func (ad *entraIdService) applyRoleAssignmentWithRetry( subscriptionId string, roleDefinition *armauthorization.RoleDefinition, servicePrincipal *graphsdk.ServicePrincipal, +) error { + scope := azure.SubscriptionRID(subscriptionId) + return ad.applyRoleAssignmentWithRetryImpl(ctx, subscriptionId, scope, roleDefinition, servicePrincipal) +} + +func (ad *entraIdService) applyRoleAssignmentWithRetryImpl( + ctx context.Context, + subscriptionId string, + scope string, + roleDefinition *armauthorization.RoleDefinition, + servicePrincipal *graphsdk.ServicePrincipal, ) error { roleAssignmentsClient, err := ad.createRoleAssignmentsClient(ctx, subscriptionId) if err != nil { return err } - - scope := azure.SubscriptionRID(subscriptionId) roleAssignmentId := uuid.New().String() // There is a lag in the application/service principal becoming available in Azure AD diff --git a/cli/azd/pkg/keyvault/keyvault.go b/cli/azd/pkg/keyvault/keyvault.go index 1ab8d7bd4e3..f4e5efb2da6 100644 --- a/cli/azd/pkg/keyvault/keyvault.go +++ b/cli/azd/pkg/keyvault/keyvault.go @@ -10,9 +10,12 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore" "github.com/Azure/azure-sdk-for-go/sdk/azcore/arm" + "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/keyvault/armkeyvault" + "github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azadmin/rbac" "github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azsecrets" "github.com/azure/azure-dev/cli/azd/pkg/account" + "github.com/azure/azure-dev/cli/azd/pkg/cloud" "github.com/azure/azure-dev/cli/azd/pkg/convert" ) @@ -48,12 +51,22 @@ type KeyVaultService interface { secretName string, ) (*Secret, error) PurgeKeyVault(ctx context.Context, subscriptionId string, vaultName string, location string) error + ListSubscriptionVaults(ctx context.Context, subscriptionId string) ([]Vault, error) + CreateVault( + ctx context.Context, + tenantId string, + subscriptionId string, + resourceGroupName string, + location string, + vaultName string, + ) (Vault, error) } type keyVaultService struct { credentialProvider account.SubscriptionCredentialProvider armClientOptions *arm.ClientOptions coreClientOptions *azcore.ClientOptions + cloud *cloud.Cloud } // NewKeyVaultService creates a new KeyVault service @@ -61,11 +74,13 @@ func NewKeyVaultService( credentialProvider account.SubscriptionCredentialProvider, armClientOptions *arm.ClientOptions, coreClientOptions *azcore.ClientOptions, + cloud *cloud.Cloud, ) KeyVaultService { return &keyVaultService{ credentialProvider: credentialProvider, armClientOptions: armClientOptions, coreClientOptions: coreClientOptions, + cloud: cloud, } } @@ -192,3 +207,130 @@ func (kvs *keyVaultService) createSecretsDataClient( return azsecrets.NewClient(vaultUrl, credential, options) } + +func (kvs *keyVaultService) createRbacClient( + ctx context.Context, + subscriptionId string, + vaultUrl string, +) (*rbac.Client, error) { + credential, err := kvs.credentialProvider.CredentialForSubscription(ctx, subscriptionId) + if err != nil { + return nil, err + } + + options := &rbac.ClientOptions{ + ClientOptions: *kvs.coreClientOptions, + DisableChallengeResourceVerification: false, + } + + return rbac.NewClient(vaultUrl, credential, options) +} + +type Vault struct { + Id string + Name string +} + +func (kvs *keyVaultService) ListSubscriptionVaults( + ctx context.Context, + subscriptionId string, +) ([]Vault, error) { + client, err := kvs.createKeyVaultClient(ctx, subscriptionId) + if err != nil { + return nil, fmt.Errorf("creating Resource client: %w", err) + } + result := []Vault{} + pager := client.NewListPager(nil) + for pager.More() { + page, err := pager.NextPage(ctx) + if err != nil { + return nil, fmt.Errorf("listing vaults: %w", err) + } + for _, vault := range page.Value { + result = append(result, Vault{ + Id: *vault.ID, + Name: *vault.Name, + }) + } + } + return result, nil +} + +func (kvs *keyVaultService) CreateVault( + ctx context.Context, + tenantId string, + subscriptionId string, + resourceGroupName string, + location string, + vaultName string, +) (Vault, error) { + client, err := kvs.createKeyVaultClient(ctx, subscriptionId) + if err != nil { + return Vault{}, fmt.Errorf("creating Resource client: %w", err) + } + accountPoller, err := client.BeginCreateOrUpdate( + ctx, + resourceGroupName, + vaultName, + armkeyvault.VaultCreateOrUpdateParameters{ + Location: to.Ptr(location), + Properties: &armkeyvault.VaultProperties{ + SKU: &armkeyvault.SKU{ + Family: to.Ptr(armkeyvault.SKUFamilyA), + Name: to.Ptr(armkeyvault.SKUNameStandard), + }, + TenantID: to.Ptr(tenantId), + EnableRbacAuthorization: to.Ptr(true), + }, + }, + nil) + if err != nil { + return Vault{}, fmt.Errorf("creating Key Vault: %w", err) + } + response, err := accountPoller.PollUntilDone(ctx, nil) + if err != nil { + return Vault{}, fmt.Errorf("creating Key Vault: %w", err) + } + + return Vault{ + Id: *response.Vault.ID, + Name: *response.Vault.Name, + }, nil +} + +// Built-in roles for Key Vault RBAC +// https://learn.microsoft.com/azure/role-based-access-control/built-in-roles +const ( + KeyVaultAdministrator string = "/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483" +) + +// func (kvs *keyVaultService) CreateRbac( +// ctx context.Context, +// subscriptionId string, +// kvAccountName string, +// principalId string, +// roleId RbacId, +// ) error { +// serviceUrl := fmt.Sprintf("https://%s.%s", kvAccountName, kvs.cloud.KeyVaultEndpointSuffix) +// client, err := kvs.createRbacClient(ctx, subscriptionId, serviceUrl) +// if err != nil { +// return fmt.Errorf("creating RBAC client: %w", err) +// } +// scope := rbac.RoleScopeKeys +// name := uuid.New().String() +// _, err = client.CreateRoleAssignment( +// ctx, +// scope, +// name, +// rbac.RoleAssignmentCreateParameters{ +// Properties: &rbac.RoleAssignmentProperties{ +// PrincipalID: to.Ptr(principalId), +// RoleDefinitionID: to.Ptr(string(roleId)), +// }, +// }, +// nil) +// if err != nil { +// return fmt.Errorf("creating RBAC: %w", err) +// } +// return nil +// } diff --git a/cli/azd/pkg/prompt/prompter.go b/cli/azd/pkg/prompt/prompter.go index 8ad6f5e8532..60cb2e85d49 100644 --- a/cli/azd/pkg/prompt/prompter.go +++ b/cli/azd/pkg/prompt/prompter.go @@ -27,6 +27,8 @@ type Prompter interface { PromptSubscription(ctx context.Context, msg string) (subscriptionId string, err error) PromptLocation(ctx context.Context, subId string, msg string, filter LocationFilterPredicate) (string, error) PromptResourceGroup(ctx context.Context) (string, error) + PromptResourceGroupFrom( + ctx context.Context, subscriptionId string, location string, options PromptResourceGroupFromOptions) (string, error) } type DefaultPrompter struct { @@ -112,8 +114,27 @@ func (p *DefaultPrompter) PromptLocation( } func (p *DefaultPrompter) PromptResourceGroup(ctx context.Context) (string, error) { + return p.PromptResourceGroupFrom( + ctx, + p.env.GetSubscriptionId(), + p.env.GetLocation(), + PromptResourceGroupFromOptions{ + Tags: map[string]string{ + azure.TagKeyAzdEnvName: p.env.Name(), + }, + DefaultName: fmt.Sprintf("rg-%s", p.env.Name()), + }) +} + +type PromptResourceGroupFromOptions struct { + Tags map[string]string + DefaultName string +} + +func (p *DefaultPrompter) PromptResourceGroupFrom( + ctx context.Context, subscriptionId string, location string, options PromptResourceGroupFromOptions) (string, error) { // Get current resource groups - groups, err := p.resourceService.ListResourceGroup(ctx, p.env.GetSubscriptionId(), nil) + groups, err := p.resourceService.ListResourceGroup(ctx, subscriptionId, nil) if err != nil { return "", fmt.Errorf("listing resource groups: %w", err) } @@ -142,17 +163,18 @@ func (p *DefaultPrompter) PromptResourceGroup(ctx context.Context) (string, erro name, err := p.console.Prompt(ctx, input.ConsoleOptions{ Message: "Enter a name for the new resource group:", - DefaultValue: fmt.Sprintf("rg-%s", p.env.Name()), + DefaultValue: options.DefaultName, }) if err != nil { return "", fmt.Errorf("prompting for resource group name: %w", err) } - err = p.resourceService.CreateOrUpdateResourceGroup(ctx, p.env.GetSubscriptionId(), name, p.env.GetLocation(), - map[string]*string{ - azure.TagKeyAzdEnvName: to.Ptr(p.env.Name()), - }, - ) + tagsParam := make(map[string]*string, len(options.Tags)) + for k, v := range options.Tags { + tagsParam[k] = to.Ptr(v) + } + + err = p.resourceService.CreateOrUpdateResourceGroup(ctx, subscriptionId, name, location, tagsParam) if err != nil { return "", fmt.Errorf("creating resource group: %w", err) } diff --git a/go.mod b/go.mod index 0dca27b1057..a128c333631 100644 --- a/go.mod +++ b/go.mod @@ -4,8 +4,8 @@ go 1.23 require ( github.com/AlecAivazis/survey/v2 v2.3.2 - github.com/Azure/azure-sdk-for-go/sdk/azcore v1.12.0 - github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.6.0 + github.com/Azure/azure-sdk-for-go/sdk/azcore v1.16.0 + github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.0 github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/apimanagement/armapimanagement v1.0.0 github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appconfiguration/armappconfiguration v1.0.0 github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appcontainers/armappcontainers/v3 v3.0.0-beta.1 @@ -17,13 +17,14 @@ require ( github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/containerregistry/armcontainerregistry v0.6.0 github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/containerservice/armcontainerservice/v2 v2.2.0 github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/cosmos/armcosmos/v2 v2.6.0 - github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/keyvault/armkeyvault v1.0.0 + github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/keyvault/armkeyvault v1.4.0 github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/machinelearning/armmachinelearning/v3 v3.2.0 github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resourcegraph/armresourcegraph v0.7.1 github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armdeploymentstacks v1.0.0 github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armresources v1.1.1 github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armsubscriptions v1.0.0 github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/sql/armsql/v2 v2.0.0-beta.4 + github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azadmin v1.2.0 github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azsecrets v0.13.0 github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.1 github.com/Azure/azure-sdk-for-go/sdk/storage/azfile v1.2.2 @@ -68,14 +69,14 @@ require ( go.opentelemetry.io/otel/trace v1.8.0 go.uber.org/atomic v1.9.0 go.uber.org/multierr v1.8.0 - golang.org/x/sys v0.21.0 + golang.org/x/sys v0.26.0 gopkg.in/dnaeon/go-vcr.v3 v3.1.2 ) require ( github.com/Azure/azure-pipeline-go v0.2.1 // indirect - github.com/Azure/azure-sdk-for-go/sdk/internal v1.9.0 // indirect - github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v0.8.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 // indirect + github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.1.0 // indirect github.com/cenkalti/backoff/v4 v4.1.3 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/go-logr/logr v1.2.3 // indirect @@ -99,10 +100,10 @@ require ( go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.8.0 // indirect go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.8.0 // indirect go.opentelemetry.io/proto/otlp v0.18.0 // indirect - golang.org/x/crypto v0.24.0 // indirect - golang.org/x/net v0.26.0 // indirect - golang.org/x/term v0.21.0 // indirect - golang.org/x/text v0.16.0 // indirect + golang.org/x/crypto v0.28.0 // indirect + golang.org/x/net v0.30.0 // indirect + golang.org/x/term v0.25.0 // indirect + golang.org/x/text v0.19.0 // indirect google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect google.golang.org/grpc v1.56.3 // indirect google.golang.org/protobuf v1.33.0 // indirect diff --git a/go.sum b/go.sum index aa2cd325a7c..31107c2d176 100644 --- a/go.sum +++ b/go.sum @@ -51,12 +51,14 @@ github.com/AlecAivazis/survey/v2 v2.3.2 h1:TqTB+aDDCLYhf9/bD2TwSO8u8jDSmMUd2SUVO github.com/AlecAivazis/survey/v2 v2.3.2/go.mod h1:TH2kPCDU3Kqq7pLbnCWwZXDBjnhZtmsCle5EiYDJ2fg= github.com/Azure/azure-pipeline-go v0.2.1 h1:OLBdZJ3yvOn2MezlWvbrBMTEUQC72zAftRZOMdj5HYo= github.com/Azure/azure-pipeline-go v0.2.1/go.mod h1:UGSo8XybXnIGZ3epmeBw7Jdz+HiUVpqIlpz/HKHylF4= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.12.0 h1:1nGuui+4POelzDwI7RG56yfQJHCnKvwfMoU7VsEp+Zg= -github.com/Azure/azure-sdk-for-go/sdk/azcore v1.12.0/go.mod h1:99EvauvlcJ1U06amZiksfYz/3aFGyIhWGHVyiZXtBAI= -github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.6.0 h1:U2rTu3Ef+7w9FHKIAXM6ZyqF3UOWJZ12zIm8zECAFfg= -github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.6.0/go.mod h1:9kIvujWAA58nmPmWB1m23fyWic1kYZMxD9CxaWn4Qpg= -github.com/Azure/azure-sdk-for-go/sdk/internal v1.9.0 h1:H+U3Gk9zY56G3u872L82bk4thcsy2Gghb9ExT4Zvm1o= -github.com/Azure/azure-sdk-for-go/sdk/internal v1.9.0/go.mod h1:mgrmMSgaLp9hmax62XQTd0N4aAqSE5E0DulSpVYK7vc= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.16.0 h1:JZg6HRh6W6U4OLl6lk7BZ7BLisIzM9dG1R50zUk9C/M= +github.com/Azure/azure-sdk-for-go/sdk/azcore v1.16.0/go.mod h1:YL1xnZ6QejvQHWJrX/AvhFl4WW4rqHVoKspWNVwFk0M= +github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.0 h1:B/dfvscEQtew9dVuoxqxrUKKv8Ih2f55PydknDamU+g= +github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.0/go.mod h1:fiPSssYvltE08HJchL04dOy+RD4hgrjph0cwGGMntdI= +github.com/Azure/azure-sdk-for-go/sdk/azidentity/cache v0.3.0 h1:+m0M/LFxN43KvULkDNfdXOgrjtg6UYJPFBJyuEcRCAw= +github.com/Azure/azure-sdk-for-go/sdk/azidentity/cache v0.3.0/go.mod h1:PwOyop78lveYMRs6oCxjiVyBdyCgIYH6XHIVZO9/SFQ= +github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 h1:ywEEhmNahHBihViHepv3xPBn1663uRv2t2q/ESv9seY= +github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0/go.mod h1:iZDifYGJTIgIIkYRNWPENUnqx6bJ2xnSDFI2tjwZNuY= github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/apimanagement/armapimanagement v1.0.0 h1:Ai3+BE11JvwQ2PxLGNKAfMNSceYXjeijReLJiCouO6o= github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/apimanagement/armapimanagement v1.0.0/go.mod h1:gr6fiHmIii3Zw3riWMSr+P0tWTz4hfqTVcFttdi2JBo= github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appconfiguration/armappconfiguration v1.0.0 h1:5reBX+9pzc5xp9VrjSUoPrE8Wl/3y7wjfHzGjXzJbNk= @@ -83,8 +85,8 @@ github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/internal v1.1.2 h1:mLY+pNL github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/internal v1.1.2/go.mod h1:FbdwsQ2EzwvXxOPcMFYO8ogEc9uMMIj3YkmCdXdAFmk= github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/internal/v2 v2.0.0 h1:PTFGRSlMKCQelWwxUyYVEUqseBJVemLyqWJjvMyt0do= github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/internal/v2 v2.0.0/go.mod h1:LRr2FzBTQlONPPa5HREE5+RjSCTXl7BwOvYOaWTqCaI= -github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/keyvault/armkeyvault v1.0.0 h1:Jc2KcpCDMu7wJfkrzn7fs/53QMDXH78GuqnH4HOd7zs= -github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/keyvault/armkeyvault v1.0.0/go.mod h1:PFVgFsclKzPqYRT/BiwpfUN22cab0C7FlgXR3iWpwMo= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/keyvault/armkeyvault v1.4.0 h1:HlZMUZW8S4P9oob1nCHxCCKrytxyLc+24nUJGssoEto= +github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/keyvault/armkeyvault v1.4.0/go.mod h1:StGsLbuJh06Bd8IBfnAlIFV3fLb+gkczONWf15hpX2E= github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/machinelearning/armmachinelearning/v3 v3.2.0 h1:m3By8dbZqId80m4AU+sfQOvlISaVV95KoCxQr8235/w= github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/machinelearning/armmachinelearning/v3 v3.2.0/go.mod h1:p8dwLhouzC7neB2e/5TKZ732Zhu1ydfvOpimPfE9K5w= github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/managementgroups/armmanagementgroups v1.0.0 h1:pPvTJ1dY0sA35JOeFq6TsY2xj6Z85Yo23Pj4wCCvu4o= @@ -101,16 +103,20 @@ github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/sql/armsql/v2 v2.0.0-beta. github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/sql/armsql/v2 v2.0.0-beta.4/go.mod h1:mXe/tbvI454sWulmm+3N5fkEs+yDvbQsA+8Xqr1kEQo= github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/armstorage v1.5.0 h1:AifHbc4mg0x9zW52WOpKbsHaDKuRhlI7TVl47thgQ70= github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/storage/armstorage v1.5.0/go.mod h1:T5RfihdXtBDxt1Ch2wobif3TvzTdumDy29kahv6AV9A= +github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azadmin v1.2.0 h1:AHRklg6OX2v0/xIjJWpJah7lAMgHgJ8IfK/96boGYZM= +github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azadmin v1.2.0/go.mod h1:XMx7zXx8wcNNe7CfSehHRiiyuALk6Kj4sPMU1FJAa+Y= github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azsecrets v0.13.0 h1:XY0plaTx8oeipK+XogAck2Qzv39KdnJNBwrxC4A0GL4= github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azsecrets v0.13.0/go.mod h1:tj2JhpZY+NjcQcZ207YHkfwYuivmTrcj5ZNpQxpT3Qk= -github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v0.8.0 h1:T028gtTPiYt/RMUfs8nVsAL7FDQrfLlrm/NnRG/zcC4= -github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v0.8.0/go.mod h1:cw4zVQgBby0Z5f2v0itn6se2dDP17nTjbZFXW5uPyHA= +github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.1.0 h1:eXnN9kaS8TiDwXjoie3hMRLuwdUBUMW9KRgOqB3mCaw= +github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.1.0/go.mod h1:XIpam8wumeZ5rVMuhdDQLMfIPDf1WO3IzrCRO3e3e3o= github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.1 h1:fXPMAmuh0gDuRDey0atC8cXBuKIlqCzCkL8sm1n9Ov0= github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.1/go.mod h1:SUZc9YRRHfx2+FAQKNDGrssXehqLpxmwRv2mC/5ntj4= github.com/Azure/azure-sdk-for-go/sdk/storage/azfile v1.2.2 h1:PmDhkIT8S5U4nkY/s78Xmf7CXT8qCliNEBhbrkBp3Q0= github.com/Azure/azure-sdk-for-go/sdk/storage/azfile v1.2.2/go.mod h1:Kj2pCkQ47klX1aAlDnlN/BUvwBiARqIJkc9iw1Up7q8= github.com/Azure/azure-storage-file-go v0.8.0 h1:OX8DGsleWLUE6Mw4R/OeWEZMvsTIpwN94J59zqKQnTI= github.com/Azure/azure-storage-file-go v0.8.0/go.mod h1:3w3mufGcMjcOJ3w+4Gs+5wsSgkT7xDwWWqMMIrXtW4c= +github.com/AzureAD/microsoft-authentication-extensions-for-go/cache v0.1.1 h1:WJTmL004Abzc5wDB5VtZG2PJk5ndYDgVacGqfirKxjM= +github.com/AzureAD/microsoft-authentication-extensions-for-go/cache v0.1.1/go.mod h1:tCcJZ0uHAmvjsVYzEFivsRTN00oz5BEsRgQHu5JZ9WE= github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 h1:XHOnouVk1mxXfQidrMEnLlPk9UMeRtyBTnEFtxkV0kU= github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2/go.mod h1:wP83P5OoQ5p6ip3ScPr0BAq0BvuPAvacpEuSzyouqAI= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= @@ -153,9 +159,12 @@ github.com/cenkalti/backoff/v4 v4.1.3 h1:cFAlzYUlVYDysBEH2T5hyJZMh3+5+WCBvSnK6Q8 github.com/cenkalti/backoff/v4 v4.1.3/go.mod h1:scbssz8iZGpm3xbr14ovlUdkxfGXNInqkPWOWmG2CLw= github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= github.com/census-instrumentation/opencensus-proto v0.3.0/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU= +github.com/cespare/xxhash v1.1.0 h1:a6HrQnmkObjyL+Gs60czilIUGqrzKutQD6XZog3p+ko= github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cespare/xxhash/v2 v2.1.2/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= +github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= +github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= @@ -180,6 +189,8 @@ github.com/cpuguy83/go-md2man/v2 v2.0.1/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46t github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f h1:lO4WD4F/rVNCu3HqELle0jiPLLBs70cWOduZpkS1E78= +github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f/go.mod h1:cuUVRXasLTGF7a8hSLbxyZXjz+1KgoB3wDUb6vlszIc= github.com/drone/envsubst v1.0.3 h1:PCIBwNDYjs50AsLZPYdfhSATKaRg/FJmDc2D6+C2x8g= github.com/drone/envsubst v1.0.3/go.mod h1:N2jZmlMufstn1KEqvbHjw40h1KyTmnVzHcSc9bFiJ2g= github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4= @@ -358,6 +369,8 @@ github.com/jstemmer/go-junit-report v0.9.1/go.mod h1:Brl9GWCQeLvo8nXZwPNNblvFj/X github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 h1:Z9n2FFNUXsshfwJMBgNA0RU6/i7WVaAegv3PtuIHPMs= github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51/go.mod h1:CzGEWj7cYgsdH8dAjBGEr58BoE7ScuLd+fwFZ44+/x8= +github.com/keybase/go-keychain v0.0.0-20231219164618-57a3676c3af6 h1:IsMZxCuZqKuao2vNdfD82fjjgPLfyHLpR41Z88viRWs= +github.com/keybase/go-keychain v0.0.0-20231219164618-57a3676c3af6/go.mod h1:3VeWNIJaW+O5xpRQbPp0Ybqu1vJd/pm7s2F473HRrkw= github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= @@ -463,6 +476,8 @@ github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsT github.com/prometheus/procfs v0.0.8/go.mod h1:7Qr8sr6344vo1JqZ6HhLceV9o3AJ1Ff+GxbHq6oeK9A= github.com/psanford/memfs v0.0.0-20230130182539-4dbf7e3e865e h1:51xcRlSMBU5rhM9KahnJGfEsBPVPz3182TgFRowA8yY= github.com/psanford/memfs v0.0.0-20230130182539-4dbf7e3e865e/go.mod h1:tcaRap0jS3eifrEEllL6ZMd9dg8IlDpi2S1oARrQ+NI= +github.com/redis/go-redis/v9 v9.6.1 h1:HHDteefn6ZkTtY5fGUE8tj8uy85AHk6zP7CpzIAM0y4= +github.com/redis/go-redis/v9 v9.6.1/go.mod h1:0C0c6ycQsdpVNQpxb1njEQIqkx5UcsM8FJCQLgE9+RA= github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY= github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= @@ -566,8 +581,8 @@ golang.org/x/crypto v0.0.0-20190923035154-9ee001bba392/go.mod h1:/lpIB1dKB+9EgE3 golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.24.0 h1:mnl8DM0o513X8fdIkmyFE/5hTYxbwYOjDS/+rK6qpRI= -golang.org/x/crypto v0.24.0/go.mod h1:Z1PMYSOR5nyMcyAVAIQSKCDwalqy85Aqn1x3Ws4L5DM= +golang.org/x/crypto v0.28.0 h1:GBDwsMXVQi34v5CCYUm2jkJvu4cbtru2U4TN2PSyQnw= +golang.org/x/crypto v0.28.0/go.mod h1:rmgy+3RHxRZMyY0jjAJShp2zgEdOqj2AO7U0pYmeQ7U= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= @@ -646,8 +661,8 @@ golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96b golang.org/x/net v0.0.0-20210410081132-afb366fc7cd1/go.mod h1:9tjilg8BloeKEkVJvy7fQ90B1CfIiPueXVOjqfkSzI8= golang.org/x/net v0.0.0-20210503060351-7fd8e65b6420/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y= -golang.org/x/net v0.26.0 h1:soB7SVo0PWrY4vPW/+ay0jKDNScG2X9wFeYlXIvJsOQ= -golang.org/x/net v0.26.0/go.mod h1:5YKkiSynbBIh3p6iOc/vibscux0x38BZDkn8sCUPxHE= +golang.org/x/net v0.30.0 h1:AcW1SDZMkb8IpzCdQUaIq2sP4sZ4zw+55h6ynffypl4= +golang.org/x/net v0.30.0/go.mod h1:2wGyMJ5iFasEhkwi13ChkO/t1ECNC4X4eBKkVFyYFlU= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -749,12 +764,12 @@ golang.org/x/sys v0.0.0-20211205182925-97ca703d548d/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.20.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= -golang.org/x/sys v0.21.0 h1:rF+pYz3DAGSQAxAu1CbC7catZg4ebC4UIeIhKxBZvws= -golang.org/x/sys v0.21.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.26.0 h1:KHjCJyddX0LoSTb3J+vWpupP9p0oznkqVk/IfjymZbo= +golang.org/x/sys v0.26.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210503060354-a79de5458b56/go.mod h1:tfny5GFUkzUvx4ps4ajbZsCe5lw1metzhBm9T3x7oIY= -golang.org/x/term v0.21.0 h1:WVXCp+/EBEHOj53Rvu+7KiT/iElMrO8ACK16SMZ3jaA= -golang.org/x/term v0.21.0/go.mod h1:ooXLefLobQVslOqselCNF4SxFAaoS6KujMbsGzSDmX0= +golang.org/x/term v0.25.0 h1:WtHI/ltw4NvSUig5KARz9h521QvRC8RmF/cuYqifU24= +golang.org/x/term v0.25.0/go.mod h1:RPyXicDX+6vLxogjjRxjgD2TKtmAO6NZBsBRfrOLu7M= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -764,8 +779,8 @@ golang.org/x/text v0.3.4/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= -golang.org/x/text v0.16.0 h1:a94ExnEXNtEwYLGJSIUxnWoxoRz/ZcCsV63ROupILh4= -golang.org/x/text v0.16.0/go.mod h1:GhwF1Be+LQoKShO3cGOHzqOgRrGaYc9AvblQOmPVHnI= +golang.org/x/text v0.19.0 h1:kTxAhCbGbxhK0IwgSKiMO5awPoDQ0RpfiVYBfK860YM= +golang.org/x/text v0.19.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= From 10ae74ce75560cf532b10d91d87b1914b28916dc Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Tue, 5 Nov 2024 04:33:50 +0000 Subject: [PATCH 03/22] linter --- .../provisioning/bicep/bicep_provider_test.go | 2 ++ cli/azd/pkg/keyvault/keyvault.go | 19 ------------------- 2 files changed, 2 insertions(+), 19 deletions(-) diff --git a/cli/azd/pkg/infra/provisioning/bicep/bicep_provider_test.go b/cli/azd/pkg/infra/provisioning/bicep/bicep_provider_test.go index a4b74931d72..70121c54a88 100644 --- a/cli/azd/pkg/infra/provisioning/bicep/bicep_provider_test.go +++ b/cli/azd/pkg/infra/provisioning/bicep/bicep_provider_test.go @@ -380,6 +380,7 @@ func createBicepProvider(t *testing.T, mockContext *mocks.MockContext) *BicepPro }), mockContext.ArmClientOptions, mockContext.CoreClientOptions, + cloud.AzurePublic(), ), cloud.AzurePublic(), ) @@ -964,6 +965,7 @@ func TestUserDefinedTypes(t *testing.T) { }), mockContext.ArmClientOptions, mockContext.CoreClientOptions, + cloud.AzurePublic(), ), cloud.AzurePublic(), ) diff --git a/cli/azd/pkg/keyvault/keyvault.go b/cli/azd/pkg/keyvault/keyvault.go index f4e5efb2da6..a45bad1bbda 100644 --- a/cli/azd/pkg/keyvault/keyvault.go +++ b/cli/azd/pkg/keyvault/keyvault.go @@ -12,7 +12,6 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/arm" "github.com/Azure/azure-sdk-for-go/sdk/azcore/to" "github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/keyvault/armkeyvault" - "github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azadmin/rbac" "github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azsecrets" "github.com/azure/azure-dev/cli/azd/pkg/account" "github.com/azure/azure-dev/cli/azd/pkg/cloud" @@ -208,24 +207,6 @@ func (kvs *keyVaultService) createSecretsDataClient( return azsecrets.NewClient(vaultUrl, credential, options) } -func (kvs *keyVaultService) createRbacClient( - ctx context.Context, - subscriptionId string, - vaultUrl string, -) (*rbac.Client, error) { - credential, err := kvs.credentialProvider.CredentialForSubscription(ctx, subscriptionId) - if err != nil { - return nil, err - } - - options := &rbac.ClientOptions{ - ClientOptions: *kvs.coreClientOptions, - DisableChallengeResourceVerification: false, - } - - return rbac.NewClient(vaultUrl, credential, options) -} - type Vault struct { Id string Name string From fb4932181ae4ca13b3da80841f1b3277b4a60fac Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Tue, 5 Nov 2024 06:15:44 +0000 Subject: [PATCH 04/22] create or select secret --- cli/azd/cmd/env.go | 49 ++++++++++++++-- cli/azd/pkg/keyvault/keyvault.go | 98 +++++++++++++++++++------------- 2 files changed, 104 insertions(+), 43 deletions(-) diff --git a/cli/azd/cmd/env.go b/cli/azd/cmd/env.go index 5b41155e26f..9e510cde184 100644 --- a/cli/azd/cmd/env.go +++ b/cli/azd/cmd/env.go @@ -226,7 +226,7 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er if !willCreateNewSecret { // reassign messages for selecting existing secret pickSubscription = "Select the subscription where the Key Vault Secret is" - pickKvAccount = "Select the Key Vault where the secret is" + pickKvAccount = "Select the Key Vault where the secret is (requires Key Vault access)" } subId, err := e.prompter.PromptSubscription(ctx, pickSubscription) @@ -327,7 +327,7 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er if err != nil { return nil, fmt.Errorf("getting current principal ID: %w", err) } - err = e.entraIdService.CreateRbac(ctx, subId, kvAccount.Id, keyvault.KeyVaultAdministrator, principalId) + err = e.entraIdService.CreateRbac(ctx, subId, kvAccount.Id, keyvault.RoleIdKeyVaultAdministrator, principalId) if err != nil { return nil, fmt.Errorf("creating Key Vault RBAC: %w", err) } @@ -335,11 +335,52 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er } } - // set the secret + var kvSecretName string + if willCreateNewSecret { + kvSecretName, err = e.console.Prompt(ctx, input.ConsoleOptions{ + Message: "Enter the name of the key vault secret", + DefaultValue: "my-kv-secret", + }) + if err != nil { + return nil, fmt.Errorf("prompting for secret name: %w", err) + } + kvSecretValue, err := e.console.Prompt(ctx, input.ConsoleOptions{ + Message: "Enter the value of the key vault secret", + IsPassword: true, + }) + if err != nil { + return nil, fmt.Errorf("prompting for secret value: %w", err) + } + err = e.kvService.CreateKeyVaultSecret(ctx, subId, kvAccount.Name, kvSecretName, kvSecretValue) + if err != nil { + return nil, fmt.Errorf("setting Key Vault secret: %w", err) + } + } else { + secretsInKv, err := e.kvService.ListKeyVaultSecrets(ctx, subId, kvAccount.Name) + if err != nil { + return nil, fmt.Errorf("listing Key Vault secrets: %w", err) + } + if len(secretsInKv) == 0 { + return nil, fmt.Errorf("no secrets found in the selected Key Vault") + } + options := make([]string, len(secretsInKv)) + for i, secret := range secretsInKv { + options[i] = fmt.Sprintf("%2d. %s", i+1, secret) + } + secretSelectionIndex, err := e.console.Select(ctx, input.ConsoleOptions{ + Message: "Select the Key Vault Secret", + Options: options, + DefaultValue: options[0], + }) + if err != nil { + return nil, fmt.Errorf("selecting Key Vault secret: %w", err) + } + kvSecretName = secretsInKv[secretSelectionIndex] + } return &actions.ActionResult{ Message: &actions.ResultMessage{ - Header: "Selection: " + kvAccount.Name, + Header: "Selection: " + kvAccount.Name + " secret " + kvSecretName, FollowUp: "Not implemented yet", }, }, nil diff --git a/cli/azd/pkg/keyvault/keyvault.go b/cli/azd/pkg/keyvault/keyvault.go index a45bad1bbda..20e326b4d48 100644 --- a/cli/azd/pkg/keyvault/keyvault.go +++ b/cli/azd/pkg/keyvault/keyvault.go @@ -59,6 +59,18 @@ type KeyVaultService interface { location string, vaultName string, ) (Vault, error) + ListKeyVaultSecrets( + ctx context.Context, + subscriptionId string, + vaultName string, + ) ([]string, error) + CreateKeyVaultSecret( + ctx context.Context, + subscriptionId string, + vaultName string, + secretName string, + secretValue string, + ) error } type keyVaultService struct { @@ -68,6 +80,19 @@ type keyVaultService struct { cloud *cloud.Cloud } +// CreateKeyVaultSecret implements KeyVaultService. +func (kvs *keyVaultService) CreateKeyVaultSecret( + ctx context.Context, subscriptionId string, vaultName string, secretName string, secretValue string) error { + client, err := kvs.createSecretsDataClient(ctx, subscriptionId, vaultName) + if err != nil { + return err + } + _, err = client.SetSecret(ctx, secretName, azsecrets.SetSecretParameters{ + Value: to.Ptr(secretValue), + }, nil) + return err +} + // NewKeyVaultService creates a new KeyVault service func NewKeyVaultService( credentialProvider account.SubscriptionCredentialProvider, @@ -119,12 +144,7 @@ func (kvs *keyVaultService) GetKeyVaultSecret( vaultName string, secretName string, ) (*Secret, error) { - vaultUrl := vaultName - if !strings.Contains(strings.ToLower(vaultName), "https://") { - vaultUrl = fmt.Sprintf("https://%s.vault.azure.net", vaultName) - } - - client, err := kvs.createSecretsDataClient(ctx, subscriptionId, vaultUrl) + client, err := kvs.createSecretsDataClient(ctx, subscriptionId, vaultName) if err != nil { return nil, nil } @@ -145,6 +165,31 @@ func (kvs *keyVaultService) GetKeyVaultSecret( }, nil } +func (kvs *keyVaultService) ListKeyVaultSecrets( + ctx context.Context, + subscriptionId string, + vaultName string, +) ([]string, error) { + client, err := kvs.createSecretsDataClient(ctx, subscriptionId, vaultName) + if err != nil { + return nil, nil + } + + secretsPager := client.NewListSecretsPager(nil) + result := []string{} + for secretsPager.More() { + secretsPage, err := secretsPager.NextPage(ctx) + if err != nil { + return nil, fmt.Errorf("listing key vault secrets: %w", err) + } + + for _, secret := range secretsPage.Value { + result = append(result, secret.ID.Name()) + } + } + return result, nil +} + func (kvs *keyVaultService) PurgeKeyVault( ctx context.Context, subscriptionId string, vaultName string, location string) error { client, err := kvs.createKeyVaultClient(ctx, subscriptionId) @@ -192,8 +237,12 @@ func (kvs *keyVaultService) createKeyVaultClient( func (kvs *keyVaultService) createSecretsDataClient( ctx context.Context, subscriptionId string, - vaultUrl string, + vaultName string, ) (*azsecrets.Client, error) { + vaultUrl := vaultName + if !strings.Contains(strings.ToLower(vaultName), "https://") { + vaultUrl = fmt.Sprintf("https://%s.%s", vaultName, kvs.cloud.KeyVaultEndpointSuffix) + } credential, err := kvs.credentialProvider.CredentialForSubscription(ctx, subscriptionId) if err != nil { return nil, err @@ -282,36 +331,7 @@ func (kvs *keyVaultService) CreateVault( // Built-in roles for Key Vault RBAC // https://learn.microsoft.com/azure/role-based-access-control/built-in-roles const ( - KeyVaultAdministrator string = "/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483" + resourceIdPathPrefix string = "/providers/Microsoft.Authorization/roleDefinitions/" + RoleIdKeyVaultAdministrator string = resourceIdPathPrefix + "00482a5a-887f-4fb3-b363-3b7fe8e74483" + RoleIdKeyVaultSecretsUser string = resourceIdPathPrefix + "4633458b-17de-408a-b874-0445c86b69e6" ) - -// func (kvs *keyVaultService) CreateRbac( -// ctx context.Context, -// subscriptionId string, -// kvAccountName string, -// principalId string, -// roleId RbacId, -// ) error { -// serviceUrl := fmt.Sprintf("https://%s.%s", kvAccountName, kvs.cloud.KeyVaultEndpointSuffix) -// client, err := kvs.createRbacClient(ctx, subscriptionId, serviceUrl) -// if err != nil { -// return fmt.Errorf("creating RBAC client: %w", err) -// } -// scope := rbac.RoleScopeKeys -// name := uuid.New().String() -// _, err = client.CreateRoleAssignment( -// ctx, -// scope, -// name, -// rbac.RoleAssignmentCreateParameters{ -// Properties: &rbac.RoleAssignmentProperties{ -// PrincipalID: to.Ptr(principalId), -// RoleDefinitionID: to.Ptr(string(roleId)), -// }, -// }, -// nil) -// if err != nil { -// return fmt.Errorf("creating RBAC: %w", err) -// } -// return nil -// } From c3b90e0681d113ecb6997442eab1ce38040571ca Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Tue, 5 Nov 2024 22:55:48 +0000 Subject: [PATCH 05/22] provision - bicep - get secrets --- cli/azd/.vscode/cspell-azd-dictionary.txt | 7 +++-- cli/azd/cmd/env.go | 8 ++++++ .../provisioning/bicep/bicep_provider.go | 28 +++++++++++++++++++ cli/azd/pkg/keyvault/keyvault.go | 1 + 4 files changed, 41 insertions(+), 3 deletions(-) diff --git a/cli/azd/.vscode/cspell-azd-dictionary.txt b/cli/azd/.vscode/cspell-azd-dictionary.txt index b7c4cae381a..dffb6c86cef 100644 --- a/cli/azd/.vscode/cspell-azd-dictionary.txt +++ b/cli/azd/.vscode/cspell-azd-dictionary.txt @@ -2,6 +2,7 @@ AADSTS ABRT aiomysql aiopg +akvs alphafeatures apimanagement apims @@ -57,9 +58,9 @@ Backticks bicepparam blockblob BOOLSLICE +buildargs BUILDID BUILDNUMBER -buildargs buildpacks byoi cflags @@ -78,12 +79,12 @@ csharpapptest cupaloy custommaps deletedservices -deviceid devcenter devcenters devcentersdk devdeviceid devel +deviceid discarder docf dockerfiles @@ -232,4 +233,4 @@ wireinject yacspin yamlnode ymlt -zerr +zerr \ No newline at end of file diff --git a/cli/azd/cmd/env.go b/cli/azd/cmd/env.go index 9e510cde184..6b924961b6f 100644 --- a/cli/azd/cmd/env.go +++ b/cli/azd/cmd/env.go @@ -300,6 +300,7 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er if err != nil { return nil, fmt.Errorf("prompting for resource group: %w", err) } + for { kvAccountName, err := e.console.Prompt(ctx, input.ConsoleOptions{ Message: "Enter the name of the Key Vault", @@ -378,6 +379,13 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er kvSecretName = secretsInKv[secretSelectionIndex] } + // akvs -> Azure Key Vault Secret (akvs:///) + envValue := fmt.Sprintf("%s%s/%s", keyvault.VaultSchemaAkvs, kvAccount.Name, kvSecretName) + e.env.DotenvSet(secretName, envValue) + if err := e.envManager.Save(ctx, e.env); err != nil { + return nil, fmt.Errorf("saving environment: %w", err) + } + return &actions.ActionResult{ Message: &actions.ResultMessage{ Header: "Selection: " + kvAccount.Name + " secret " + kvSecretName, diff --git a/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go b/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go index cfcf58943a9..b08e0b64658 100644 --- a/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go +++ b/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go @@ -1832,6 +1832,34 @@ func (p *BicepProvider) ensureParameters( if v, has := parameters[key]; has { paramValue := armParameterFileValue(parameterType, v.Value, param.DefaultValue) if paramValue != nil { + + if stringValue, isString := paramValue.(string); isString && param.Secure() { + // For secure parameters using a string value, azd checks if the string is an Azure Key Vault Secret + // and if yes, it fetches the secret value from the Key Vault. + if strings.HasPrefix(stringValue, keyvault.VaultSchemaAkvs) { + noSchema := strings.TrimPrefix(stringValue, keyvault.VaultSchemaAkvs) + vaultParts := strings.Split(noSchema, "/") + if len(vaultParts) != 2 { + return nil, fmt.Errorf( + "invalid Azure Key Vault Secret reference: %s. Expected format: %s", + stringValue, + keyvault.VaultSchemaAkvs+"/", + ) + } + vaultName, secretName := vaultParts[0], vaultParts[1] + subscriptionId := p.env.GetSubscriptionId() + // subscriptionId is required by the Key Vault service to figure the TenantId for the + // tokenCredential. The assumption here is that the user has access to the Tenant + // used to deploy the app and to whatever Tenant the Key Vault is in. And the tokenCredential + // can use any of the Tenant ids. + secretValue, err := p.keyvaultService.GetKeyVaultSecret(ctx, subscriptionId, vaultName, secretName) + if err != nil { + return nil, fmt.Errorf("fetching secret value from key vault: %w", err) + } + paramValue = secretValue.Value + } + } + configuredParameters[key] = azure.ArmParameterValue{ Value: paramValue, } diff --git a/cli/azd/pkg/keyvault/keyvault.go b/cli/azd/pkg/keyvault/keyvault.go index 20e326b4d48..0665003666d 100644 --- a/cli/azd/pkg/keyvault/keyvault.go +++ b/cli/azd/pkg/keyvault/keyvault.go @@ -334,4 +334,5 @@ const ( resourceIdPathPrefix string = "/providers/Microsoft.Authorization/roleDefinitions/" RoleIdKeyVaultAdministrator string = resourceIdPathPrefix + "00482a5a-887f-4fb3-b363-3b7fe8e74483" RoleIdKeyVaultSecretsUser string = resourceIdPathPrefix + "4633458b-17de-408a-b874-0445c86b69e6" + VaultSchemaAkvs string = "akvs://" ) From daeed9994c40d82d45c8a3b06a231bb33374cefc Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Wed, 6 Nov 2024 02:24:05 +0000 Subject: [PATCH 06/22] resolve in hooks --- cli/azd/cmd/env.go | 2 +- cli/azd/cmd/hooks.go | 39 ++++++----- cli/azd/cmd/middleware/hooks.go | 6 ++ cli/azd/cmd/middleware/hooks_test.go | 1 + .../TestUsage-azd-env-set-secret.snap | 19 ++++++ cli/azd/pkg/ext/hooks_runner.go | 65 ++++++++++++++----- cli/azd/pkg/ext/hooks_runner_test.go | 20 ++++-- cli/azd/pkg/ext/models.go | 3 + .../provisioning/bicep/bicep_provider.go | 22 +------ cli/azd/pkg/keyvault/keyvault.go | 37 ++++++++++- 10 files changed, 153 insertions(+), 61 deletions(-) create mode 100644 cli/azd/cmd/testdata/TestUsage-azd-env-set-secret.snap diff --git a/cli/azd/cmd/env.go b/cli/azd/cmd/env.go index 6b924961b6f..c67968548b4 100644 --- a/cli/azd/cmd/env.go +++ b/cli/azd/cmd/env.go @@ -380,7 +380,7 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er } // akvs -> Azure Key Vault Secret (akvs:///) - envValue := fmt.Sprintf("%s%s/%s", keyvault.VaultSchemaAkvs, kvAccount.Name, kvSecretName) + envValue := keyvault.NewAkvs(kvAccount.Name, kvSecretName) e.env.DotenvSet(secretName, envValue) if err := e.envManager.Save(ctx, e.env); err != nil { return nil, fmt.Errorf("saving environment: %w", err) diff --git a/cli/azd/cmd/hooks.go b/cli/azd/cmd/hooks.go index 09ef37c6b2b..c87d259962f 100644 --- a/cli/azd/cmd/hooks.go +++ b/cli/azd/cmd/hooks.go @@ -10,6 +10,7 @@ import ( "github.com/azure/azure-dev/cli/azd/pkg/exec" "github.com/azure/azure-dev/cli/azd/pkg/ext" "github.com/azure/azure-dev/cli/azd/pkg/input" + "github.com/azure/azure-dev/cli/azd/pkg/ioc" "github.com/azure/azure-dev/cli/azd/pkg/output" "github.com/azure/azure-dev/cli/azd/pkg/output/ux" "github.com/azure/azure-dev/cli/azd/pkg/project" @@ -69,14 +70,15 @@ func (f *hooksRunFlags) Bind(local *pflag.FlagSet, global *internal.GlobalComman } type hooksRunAction struct { - projectConfig *project.ProjectConfig - env *environment.Environment - envManager environment.Manager - importManager *project.ImportManager - commandRunner exec.CommandRunner - console input.Console - flags *hooksRunFlags - args []string + projectConfig *project.ProjectConfig + env *environment.Environment + envManager environment.Manager + importManager *project.ImportManager + commandRunner exec.CommandRunner + console input.Console + flags *hooksRunFlags + args []string + serviceLocator ioc.ServiceLocator } func newHooksRunAction( @@ -88,16 +90,18 @@ func newHooksRunAction( console input.Console, flags *hooksRunFlags, args []string, + serviceLocator ioc.ServiceLocator, ) actions.Action { return &hooksRunAction{ - projectConfig: projectConfig, - env: env, - envManager: envManager, - commandRunner: commandRunner, - console: console, - flags: flags, - args: args, - importManager: importManager, + projectConfig: projectConfig, + env: env, + envManager: envManager, + commandRunner: commandRunner, + console: console, + flags: flags, + args: args, + importManager: importManager, + serviceLocator: serviceLocator, } } @@ -226,7 +230,8 @@ func (hra *hooksRunAction) execHook( } hooksManager := ext.NewHooksManager(cwd) - hooksRunner := ext.NewHooksRunner(hooksManager, hra.commandRunner, hra.envManager, hra.console, cwd, hooksMap, hra.env) + hooksRunner := ext.NewHooksRunner( + hooksManager, hra.commandRunner, hra.envManager, hra.console, cwd, hooksMap, hra.env, hra.serviceLocator) previewer := hra.console.ShowPreviewer(ctx, &input.ShowPreviewerOptions{ Prefix: " ", diff --git a/cli/azd/cmd/middleware/hooks.go b/cli/azd/cmd/middleware/hooks.go index aca4011f5de..6d9db3056dc 100644 --- a/cli/azd/cmd/middleware/hooks.go +++ b/cli/azd/cmd/middleware/hooks.go @@ -10,6 +10,7 @@ import ( "github.com/azure/azure-dev/cli/azd/pkg/exec" "github.com/azure/azure-dev/cli/azd/pkg/ext" "github.com/azure/azure-dev/cli/azd/pkg/input" + "github.com/azure/azure-dev/cli/azd/pkg/ioc" "github.com/azure/azure-dev/cli/azd/pkg/lazy" "github.com/azure/azure-dev/cli/azd/pkg/project" ) @@ -22,6 +23,7 @@ type HooksMiddleware struct { commandRunner exec.CommandRunner console input.Console options *Options + serviceLocator ioc.ServiceLocator } // Creates a new instance of the Hooks middleware @@ -33,6 +35,7 @@ func NewHooksMiddleware( commandRunner exec.CommandRunner, console input.Console, options *Options, + serviceLocator ioc.ServiceLocator, ) Middleware { return &HooksMiddleware{ lazyEnvManager: lazyEnvManager, @@ -42,6 +45,7 @@ func NewHooksMiddleware( commandRunner: commandRunner, console: console, options: options, + serviceLocator: serviceLocator, } } @@ -95,6 +99,7 @@ func (m *HooksMiddleware) registerCommandHooks( projectConfig.Path, projectConfig.Hooks, env, + m.serviceLocator, ) var actionResult *actions.ActionResult @@ -153,6 +158,7 @@ func (m *HooksMiddleware) registerServiceHooks( service.Path(), service.Hooks, env, + m.serviceLocator, ) for hookName := range service.Hooks { diff --git a/cli/azd/cmd/middleware/hooks_test.go b/cli/azd/cmd/middleware/hooks_test.go index ee4e42d4922..119eed1aa6a 100644 --- a/cli/azd/cmd/middleware/hooks_test.go +++ b/cli/azd/cmd/middleware/hooks_test.go @@ -359,6 +359,7 @@ func runMiddleware( mockContext.CommandRunner, mockContext.Console, runOptions, + mockContext.Container, ) result, err := middleware.Run(*mockContext.Context, nextFn) diff --git a/cli/azd/cmd/testdata/TestUsage-azd-env-set-secret.snap b/cli/azd/cmd/testdata/TestUsage-azd-env-set-secret.snap new file mode 100644 index 00000000000..898d3817523 --- /dev/null +++ b/cli/azd/cmd/testdata/TestUsage-azd-env-set-secret.snap @@ -0,0 +1,19 @@ + +Set a Key Vault secret in the environment. + +Usage + azd env set-secret [flags] + +Flags + --docs : Opens the documentation for azd env set-secret in your web browser. + -e, --environment string : The name of the environment to use. + -h, --help : Gets help for set-secret. + +Global Flags + -C, --cwd string : Sets the current working directory. + --debug : Enables debugging and diagnostics logging. + --no-prompt : Accepts the default value instead of prompting, or it fails if there is no default. + +Find a bug? Want to let us know how we're doing? Fill out this brief survey: https://aka.ms/azure-dev/hats. + + diff --git a/cli/azd/pkg/ext/hooks_runner.go b/cli/azd/pkg/ext/hooks_runner.go index 2d87378568b..13c6cf49f1a 100644 --- a/cli/azd/pkg/ext/hooks_runner.go +++ b/cli/azd/pkg/ext/hooks_runner.go @@ -10,6 +10,8 @@ import ( "github.com/azure/azure-dev/cli/azd/pkg/environment" "github.com/azure/azure-dev/cli/azd/pkg/exec" "github.com/azure/azure-dev/cli/azd/pkg/input" + "github.com/azure/azure-dev/cli/azd/pkg/ioc" + "github.com/azure/azure-dev/cli/azd/pkg/keyvault" "github.com/azure/azure-dev/cli/azd/pkg/output" "github.com/azure/azure-dev/cli/azd/pkg/tools" "github.com/azure/azure-dev/cli/azd/pkg/tools/bash" @@ -19,13 +21,14 @@ import ( // Hooks enable support to invoke integration scripts before & after commands // Scripts can be invoked at the project or service level or type HooksRunner struct { - hooksManager *HooksManager - commandRunner exec.CommandRunner - console input.Console - cwd string - hooks map[string][]*HookConfig - env *environment.Environment - envManager environment.Manager + hooksManager *HooksManager + commandRunner exec.CommandRunner + console input.Console + cwd string + hooks map[string][]*HookConfig + env *environment.Environment + envManager environment.Manager + serviceLocator ioc.ServiceLocator } // NewHooks creates a new instance of CommandHooks @@ -38,6 +41,7 @@ func NewHooksRunner( cwd string, hooks map[string][]*HookConfig, env *environment.Environment, + serviceLocator ioc.ServiceLocator, ) *HooksRunner { if cwd == "" { osWd, err := os.Getwd() @@ -49,13 +53,14 @@ func NewHooksRunner( } return &HooksRunner{ - hooksManager: hooksManager, - commandRunner: commandRunner, - envManager: envManager, - console: console, - cwd: cwd, - hooks: hooks, - env: env, + hooksManager: hooksManager, + commandRunner: commandRunner, + envManager: envManager, + console: console, + cwd: cwd, + hooks: hooks, + env: env, + serviceLocator: serviceLocator, } } @@ -111,16 +116,16 @@ func (h *HooksRunner) RunHooks( // Gets the script to execute based on the hook configuration values // For inline scripts this will also create a temporary script file to execute -func (h *HooksRunner) GetScript(hookConfig *HookConfig) (tools.Script, error) { +func (h *HooksRunner) GetScript(hookConfig *HookConfig, envVars []string) (tools.Script, error) { if err := hookConfig.validate(); err != nil { return nil, err } switch hookConfig.Shell { case ShellTypeBash: - return bash.NewBashScript(h.commandRunner, h.cwd, h.env.Environ()), nil + return bash.NewBashScript(h.commandRunner, h.cwd, envVars), nil case ShellTypePowershell: - return powershell.NewPowershellScript(h.commandRunner, h.cwd, h.env.Environ()), nil + return powershell.NewPowershellScript(h.commandRunner, h.cwd, envVars), nil default: return nil, fmt.Errorf( "shell type '%s' is not a valid option. Only 'sh' and 'pwsh' are supported", @@ -134,7 +139,31 @@ func (h *HooksRunner) execHook(ctx context.Context, hookConfig *HookConfig, opti options = &tools.ExecOptions{} } - script, err := h.GetScript(hookConfig) + hookEnv := environment.NewWithValues("temp", h.env.Dotenv()) + if len(hookConfig.Secrets) > 0 { + err := h.serviceLocator.Invoke(func(keyvaultService keyvault.KeyVaultService) error { + for key, value := range hookConfig.Secrets { + setValue := value + if valueFromEnv, exists := h.env.LookupEnv(value); exists { + if keyvault.IsAkvs(valueFromEnv) { + secretValue, err := keyvaultService.SecretFromAkvs(ctx, h.env.GetSubscriptionId(), valueFromEnv) + if err != nil { + return err + } + valueFromEnv = secretValue + } + setValue = valueFromEnv + } + hookEnv.DotenvSet(key, setValue) + } + return nil + }) + if err != nil { + return err + } + } + + script, err := h.GetScript(hookConfig, hookEnv.Environ()) if err != nil { return err } diff --git a/cli/azd/pkg/ext/hooks_runner_test.go b/cli/azd/pkg/ext/hooks_runner_test.go index ae80d511651..7ab5f985fb7 100644 --- a/cli/azd/pkg/ext/hooks_runner_test.go +++ b/cli/azd/pkg/ext/hooks_runner_test.go @@ -87,6 +87,7 @@ func Test_Hooks_Execute(t *testing.T) { cwd, hooksMap, env, + mockContext.Container, ) err := runner.RunHooks(*mockContext.Context, HookTypePre, nil, "command") @@ -121,6 +122,7 @@ func Test_Hooks_Execute(t *testing.T) { cwd, hooksMap, env, + mockContext.Container, ) err := runner.RunHooks(*mockContext.Context, HookTypePost, nil, "command") @@ -155,6 +157,7 @@ func Test_Hooks_Execute(t *testing.T) { cwd, hooksMap, env, + mockContext.Container, ) err := runner.RunHooks(*mockContext.Context, HookTypePre, nil, "interactive") @@ -185,6 +188,7 @@ func Test_Hooks_Execute(t *testing.T) { cwd, hooksMap, env, + mockContext.Container, ) err := runner.RunHooks(*mockContext.Context, HookTypePre, nil, "inline") @@ -230,6 +234,7 @@ func Test_Hooks_Execute(t *testing.T) { cwd, hooksMap, env, + mockContext.Container, ) err := runner.Invoke(*mockContext.Context, []string{"command"}, func() error { ranAction = true @@ -305,9 +310,10 @@ func Test_Hooks_GetScript(t *testing.T) { cwd, hooksMap, env, + mockContext.Container, ) - script, err := runner.GetScript(hookConfig) + script, err := runner.GetScript(hookConfig, runner.env.Environ()) require.NotNil(t, script) require.Equal(t, "*bash.bashScript", reflect.TypeOf(script).String()) require.Equal(t, ScriptLocationPath, hookConfig.location) @@ -327,9 +333,10 @@ func Test_Hooks_GetScript(t *testing.T) { cwd, hooksMap, env, + mockContext.Container, ) - script, err := runner.GetScript(hookConfig) + script, err := runner.GetScript(hookConfig, runner.env.Environ()) require.NotNil(t, script) require.Equal(t, "*powershell.powershellScript", reflect.TypeOf(script).String()) require.Equal(t, ScriptLocationPath, hookConfig.location) @@ -352,9 +359,10 @@ func Test_Hooks_GetScript(t *testing.T) { cwd, hooksMap, env, + mockContext.Container, ) - script, err := runner.GetScript(hookConfig) + script, err := runner.GetScript(hookConfig, runner.env.Environ()) require.NotNil(t, script) require.Equal(t, "*bash.bashScript", reflect.TypeOf(script).String()) require.Equal(t, ScriptLocationInline, hookConfig.location) @@ -383,9 +391,10 @@ func Test_Hooks_GetScript(t *testing.T) { cwd, hooksMap, env, + mockContext.Container, ) - script, err := runner.GetScript(hookConfig) + script, err := runner.GetScript(hookConfig, runner.env.Environ()) require.NotNil(t, script) require.Equal(t, "*powershell.powershellScript", reflect.TypeOf(script).String()) require.Equal(t, ScriptLocationInline, hookConfig.location) @@ -433,6 +442,7 @@ func Test_GetScript_Validation(t *testing.T) { tempDir, map[string][]*HookConfig{}, env, + mockContext.Container, ) scriptValidations := []scriptValidationTest{ @@ -490,7 +500,7 @@ func Test_GetScript_Validation(t *testing.T) { } t.Run(test.name, func(t *testing.T) { - res, err := runner.GetScript(test.config) + res, err := runner.GetScript(test.config, runner.env.Environ()) if test.expectedError != nil { require.Nil(t, res) require.ErrorIs(t, err, test.expectedError) diff --git a/cli/azd/pkg/ext/models.go b/cli/azd/pkg/ext/models.go index 1100c6a5ee6..5dd53bc2e85 100644 --- a/cli/azd/pkg/ext/models.go +++ b/cli/azd/pkg/ext/models.go @@ -70,6 +70,9 @@ type HookConfig struct { Windows *HookConfig `yaml:"windows,omitempty"` // When running on linux/macos use this override config Posix *HookConfig `yaml:"posix,omitempty"` + // Environment variables in this list are added to the hook script and if the value is a akvs:// reference + // it will be resolved to the secret value + Secrets map[string]string `yaml:"secrets,omitempty"` } // Validates and normalizes the hook configuration diff --git a/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go b/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go index b08e0b64658..d86e8bbd56b 100644 --- a/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go +++ b/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go @@ -1836,27 +1836,11 @@ func (p *BicepProvider) ensureParameters( if stringValue, isString := paramValue.(string); isString && param.Secure() { // For secure parameters using a string value, azd checks if the string is an Azure Key Vault Secret // and if yes, it fetches the secret value from the Key Vault. - if strings.HasPrefix(stringValue, keyvault.VaultSchemaAkvs) { - noSchema := strings.TrimPrefix(stringValue, keyvault.VaultSchemaAkvs) - vaultParts := strings.Split(noSchema, "/") - if len(vaultParts) != 2 { - return nil, fmt.Errorf( - "invalid Azure Key Vault Secret reference: %s. Expected format: %s", - stringValue, - keyvault.VaultSchemaAkvs+"/", - ) - } - vaultName, secretName := vaultParts[0], vaultParts[1] - subscriptionId := p.env.GetSubscriptionId() - // subscriptionId is required by the Key Vault service to figure the TenantId for the - // tokenCredential. The assumption here is that the user has access to the Tenant - // used to deploy the app and to whatever Tenant the Key Vault is in. And the tokenCredential - // can use any of the Tenant ids. - secretValue, err := p.keyvaultService.GetKeyVaultSecret(ctx, subscriptionId, vaultName, secretName) + if keyvault.IsAkvs(stringValue) { + paramValue, err = p.keyvaultService.SecretFromAkvs(ctx, p.env.GetSubscriptionId(), stringValue) if err != nil { - return nil, fmt.Errorf("fetching secret value from key vault: %w", err) + return nil, err } - paramValue = secretValue.Value } } diff --git a/cli/azd/pkg/keyvault/keyvault.go b/cli/azd/pkg/keyvault/keyvault.go index 0665003666d..295e62431c5 100644 --- a/cli/azd/pkg/keyvault/keyvault.go +++ b/cli/azd/pkg/keyvault/keyvault.go @@ -71,6 +71,7 @@ type KeyVaultService interface { secretName string, secretValue string, ) error + SecretFromAkvs(ctx context.Context, subscriptionId, akvs string) (string, error) } type keyVaultService struct { @@ -331,8 +332,42 @@ func (kvs *keyVaultService) CreateVault( // Built-in roles for Key Vault RBAC // https://learn.microsoft.com/azure/role-based-access-control/built-in-roles const ( + vaultSchemaAkvs string = "akvs://" resourceIdPathPrefix string = "/providers/Microsoft.Authorization/roleDefinitions/" RoleIdKeyVaultAdministrator string = resourceIdPathPrefix + "00482a5a-887f-4fb3-b363-3b7fe8e74483" RoleIdKeyVaultSecretsUser string = resourceIdPathPrefix + "4633458b-17de-408a-b874-0445c86b69e6" - VaultSchemaAkvs string = "akvs://" ) + +func IsAkvs(id string) bool { + return strings.HasPrefix(id, vaultSchemaAkvs) +} + +func NewAkvs(vaultName, secretName string) string { + return vaultSchemaAkvs + vaultName + "/" + secretName +} + +func (kvs *keyVaultService) SecretFromAkvs(ctx context.Context, subscriptionId, akvs string) (string, error) { + if !IsAkvs(akvs) { + return "", fmt.Errorf("invalid Azure Key Vault Secret reference: %s", akvs) + } + + noSchema := strings.TrimPrefix(akvs, vaultSchemaAkvs) + vaultParts := strings.Split(noSchema, "/") + if len(vaultParts) != 2 { + return "", fmt.Errorf( + "invalid Azure Key Vault Secret reference: %s. Expected format: %s", + akvs, + vaultSchemaAkvs+"/", + ) + } + vaultName, secretName := vaultParts[0], vaultParts[1] + // subscriptionId is required by the Key Vault service to figure the TenantId for the + // tokenCredential. The assumption here is that the user has access to the Tenant + // used to deploy the app and to whatever Tenant the Key Vault is in. And the tokenCredential + // can use any of the Tenant ids. + secretValue, err := kvs.GetKeyVaultSecret(ctx, subscriptionId, vaultName, secretName) + if err != nil { + return "", fmt.Errorf("fetching secret value from key vault: %w", err) + } + return secretValue.Value, nil +} From 2b35c9ff5a633bceffd4934b214eb091ed1040a1 Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Wed, 6 Nov 2024 02:25:46 +0000 Subject: [PATCH 07/22] snap usage --- cli/azd/cmd/testdata/TestUsage-azd-env.snap | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/azd/cmd/testdata/TestUsage-azd-env.snap b/cli/azd/cmd/testdata/TestUsage-azd-env.snap index 18a3a3fed47..edc9bd67ef5 100644 --- a/cli/azd/cmd/testdata/TestUsage-azd-env.snap +++ b/cli/azd/cmd/testdata/TestUsage-azd-env.snap @@ -17,6 +17,7 @@ Available Commands refresh : Refresh environment settings by using information from a previous infrastructure provision. select : Set the default environment. set : Manage your environment settings. + set-secret : Set a Key Vault secret in the environment. Flags --docs : Opens the documentation for azd env in your web browser. From 3b781dc780df1bbfc6f27b299fd5ce5c8a90cc5a Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Thu, 9 Jan 2025 02:16:10 +0000 Subject: [PATCH 08/22] update to latest --- cli/azd/cmd/env.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/azd/cmd/env.go b/cli/azd/cmd/env.go index 4ef514ff058..342738622d4 100644 --- a/cli/azd/cmd/env.go +++ b/cli/azd/cmd/env.go @@ -12,6 +12,7 @@ import ( "github.com/azure/azure-dev/cli/azd/cmd/actions" "github.com/azure/azure-dev/cli/azd/internal" "github.com/azure/azure-dev/cli/azd/pkg/account" + "github.com/azure/azure-dev/cli/azd/pkg/azapi" "github.com/azure/azure-dev/cli/azd/pkg/azureutil" "github.com/azure/azure-dev/cli/azd/pkg/entraid" "github.com/azure/azure-dev/cli/azd/pkg/environment" @@ -24,7 +25,6 @@ import ( "github.com/azure/azure-dev/cli/azd/pkg/output/ux" "github.com/azure/azure-dev/cli/azd/pkg/project" "github.com/azure/azure-dev/cli/azd/pkg/prompt" - "github.com/azure/azure-dev/cli/azd/pkg/tools/azcli" "github.com/spf13/cobra" "github.com/spf13/pflag" ) @@ -191,7 +191,7 @@ type envSetSecretAction struct { kvService keyvault.KeyVaultService entraIdService entraid.EntraIdService subResolver account.SubscriptionTenantResolver - userProfileService *azcli.UserProfileService + userProfileService *azapi.UserProfileService } func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, error) { @@ -405,7 +405,7 @@ func newEnvSetSecretAction( kvService keyvault.KeyVaultService, entraIdService entraid.EntraIdService, subResolver account.SubscriptionTenantResolver, - userProfileService *azcli.UserProfileService, + userProfileService *azapi.UserProfileService, ) actions.Action { return &envSetSecretAction{ console: console, From 90a87c31313f9a83b29dee9367a1ff34578ecb94 Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Wed, 15 Jan 2025 23:16:11 +0000 Subject: [PATCH 09/22] update msges --- cli/azd/cmd/env.go | 28 +++++++++++++++++----------- cli/azd/pkg/keyvault/keyvault.go | 4 ++-- 2 files changed, 19 insertions(+), 13 deletions(-) diff --git a/cli/azd/cmd/env.go b/cli/azd/cmd/env.go index 342738622d4..9d3d9920d2a 100644 --- a/cli/azd/cmd/env.go +++ b/cli/azd/cmd/env.go @@ -51,8 +51,10 @@ func envActions(root *actions.ActionDescriptor) *actions.ActionDescriptor { group.Add("set-secret", &actions.ActionDescriptorOptions{ Command: &cobra.Command{ - Use: "set-secret ", - Short: "Set a Key Vault secret in the environment.", + Use: "set-secret ", + Short: "Set a as a reference to a Key Vault secret in the environment.", + Long: "You can either create a new Key Vault secret or select an existing one.\n" + + "The provided name is the key for the .env file which holds the secret reference to the Key Vault secret.", }, FlagsResolver: newEnvSetSecretFlags, ActionResolver: newEnvSetSecretAction, @@ -198,20 +200,21 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er if len(e.args) < 1 { return nil, fmt.Errorf( - "no secret name provided. Please provide a secret name to set like 'azd env set '") + "no provided. Please provide a name as argument like: 'azd env set '") } secretName := e.args[0] - e.console.Message(ctx, "Setting secret: "+secretName) - createNewStrategy := "Create a new Key Vault Secret" - selectExistingStrategy := "Select an existing Key Vault Secret" + createNewStrategy := "Create a new Key Vault secret" + selectExistingStrategy := "Select an existing Key Vault secret" setSecretStrategies := []string{createNewStrategy, selectExistingStrategy} selectedStrategyIndex, err := e.console.Select( ctx, input.ConsoleOptions{ - Message: "How do you want to set the secret", + Message: "Select how you want to set " + secretName, Options: setSecretStrategies, DefaultValue: createNewStrategy, + Help: "When creating a new Key Vault secret, you can either create a new Key Vault account or" + + " pick an existing one. A Key Vault secret belongs to a Key Vault account.", }) if err != nil { return nil, fmt.Errorf("selecting secret setting strategy: %w", err) @@ -219,14 +222,17 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er willCreateNewSecret := setSecretStrategies[selectedStrategyIndex] == createNewStrategy + subscriptionNote := "\nYou can set the Key Vault secret from any Azure Subscription where you have access to." + e.console.Message(ctx, subscriptionNote) + // default messages based on willCreateNewSecret == true - pickSubscription := "Select a subscription to create the Key Vault Secret" - pickKvAccount := "Select the Key Vault to create the secret" + pickSubscription := "Select the subscription where you want to create the Key Vault secret" + pickKvAccount := "Select the Key Vault account where you want to create the Key Vault secret" if !willCreateNewSecret { // reassign messages for selecting existing secret - pickSubscription = "Select the subscription where the Key Vault Secret is" - pickKvAccount = "Select the Key Vault where the secret is (requires Key Vault access)" + pickSubscription = "Select the subscription where the Key Vault secret is" + pickKvAccount = "Select the Key Vault account where the Key Vault secret is" } subId, err := e.prompter.PromptSubscription(ctx, pickSubscription) diff --git a/cli/azd/pkg/keyvault/keyvault.go b/cli/azd/pkg/keyvault/keyvault.go index 295e62431c5..defd59f4efa 100644 --- a/cli/azd/pkg/keyvault/keyvault.go +++ b/cli/azd/pkg/keyvault/keyvault.go @@ -342,8 +342,8 @@ func IsAkvs(id string) bool { return strings.HasPrefix(id, vaultSchemaAkvs) } -func NewAkvs(vaultName, secretName string) string { - return vaultSchemaAkvs + vaultName + "/" + secretName +func NewAkvs(vaultId, secretName string) string { + return vaultSchemaAkvs + vaultId + "/" + secretName } func (kvs *keyVaultService) SecretFromAkvs(ctx context.Context, subscriptionId, akvs string) (string, error) { From a2b0f12a3c64e7e66f090747848ad6c9b8bdc282 Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Thu, 16 Jan 2025 02:40:51 +0000 Subject: [PATCH 10/22] wording changes --- cli/azd/cmd/env.go | 46 +++++++++++++++++++++++++--------------------- 1 file changed, 25 insertions(+), 21 deletions(-) diff --git a/cli/azd/cmd/env.go b/cli/azd/cmd/env.go index 9d3d9920d2a..5ad712a6f3c 100644 --- a/cli/azd/cmd/env.go +++ b/cli/azd/cmd/env.go @@ -244,10 +244,10 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er return nil, fmt.Errorf("looking up tenant for subscription: %w", err) } - e.console.ShowSpinner(ctx, "Getting the list of vaults from the selected subscription", input.Step) + e.console.ShowSpinner(ctx, "Finding Key Vault accounts from the selected subscription", input.Step) vaultsList, err := e.kvService.ListSubscriptionVaults(ctx, subId) if err != nil { - return nil, fmt.Errorf("getting the list of vaults: %w", err) + return nil, fmt.Errorf("getting the list of Key Vault accounts: %w", err) } // prompt for vault selection e.console.StopSpinner(ctx, "", input.Step) @@ -255,20 +255,18 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er atLeastOneKvAccountExists := len(vaultsList) > 0 if !atLeastOneKvAccountExists && !willCreateNewSecret { e.console.MessageUxItem(ctx, &ux.WarningMessage{ - Description: "No Key Vaults found in the selected subscription", + Description: "No Key Vaults accounts were found in the selected subscription", }) // update the flow to offer creating a new Key Vault willCreateNewSecret = true } - createNewKvAccountOption := " 1. Create a new Key Vault" + createNewKvAccountOption := "Create a new Key Vault account" selectKvAccountOptions := []string{} // indexOffset makes the ids to start from 1 instead of 0 when displaying the options indexOffset := 1 if willCreateNewSecret { selectKvAccountOptions = append(selectKvAccountOptions, createNewKvAccountOption) - // have to offset 2 since we have added the first option with 1 for createNewKvAccountOption - indexOffset = 2 } for index, vault := range vaultsList { selectKvAccountOptions = append(selectKvAccountOptions, fmt.Sprintf("%2d. %s", index+indexOffset, vault.Name)) @@ -280,7 +278,7 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er DefaultValue: selectKvAccountOptions[0], }) if err != nil { - return nil, fmt.Errorf("selecting Key Vault: %w", err) + return nil, fmt.Errorf("selecting Key Vault account: %w", err) } willCreateNewKvAccount := selectKvAccountOptions[kvAccountSelectionIndex] == createNewKvAccountOption @@ -296,7 +294,7 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er } if willCreateNewKvAccount { - location, err := e.prompter.PromptLocation(ctx, subId, "Select the location for the Key Vault", nil) + location, err := e.prompter.PromptLocation(ctx, subId, "Select the location to create the Key Vault account", nil) if err != nil { return nil, fmt.Errorf("prompting for Key Vault location: %w", err) } @@ -309,20 +307,21 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er for { kvAccountName, err := e.console.Prompt(ctx, input.ConsoleOptions{ - Message: "Enter the name of the Key Vault", + Message: "Enter a name for the Key Vault account", + Help: "The name must be unique within the subscription and must be between 3 and 24 characters long", }) if err != nil { - return nil, fmt.Errorf("prompting for Key Vault name: %w", err) + return nil, fmt.Errorf("prompting for Key Vault account name: %w", err) } if kvAccountName == "" { - e.console.Message(ctx, "Key Vault name cannot be empty") + e.console.Message(ctx, "Key Vault account name cannot be empty") continue } - e.console.ShowSpinner(ctx, "Creating Key Vault Account", input.Step) + e.console.ShowSpinner(ctx, "Creating Key Vault account", input.Step) vault, err := e.kvService.CreateVault(ctx, tenantId, subId, rg, location, kvAccountName) e.console.StopSpinner(ctx, "", input.Step) if err != nil { - e.console.Message(ctx, fmt.Sprintf("Error creating Key Vault: %v", err)) + e.console.Message(ctx, fmt.Sprintf("Error creating Key Vault account: %v", err)) continue } kvAccount = vault @@ -345,14 +344,14 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er var kvSecretName string if willCreateNewSecret { kvSecretName, err = e.console.Prompt(ctx, input.ConsoleOptions{ - Message: "Enter the name of the key vault secret", - DefaultValue: "my-kv-secret", + Message: "Enter a name for the Key Vault secret", + DefaultValue: secretName + "-kv-secret", }) if err != nil { - return nil, fmt.Errorf("prompting for secret name: %w", err) + return nil, fmt.Errorf("prompting for Key Vault secret name: %w", err) } kvSecretValue, err := e.console.Prompt(ctx, input.ConsoleOptions{ - Message: "Enter the value of the key vault secret", + Message: "Enter the value for the Key Vault secret", IsPassword: true, }) if err != nil { @@ -368,14 +367,14 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er return nil, fmt.Errorf("listing Key Vault secrets: %w", err) } if len(secretsInKv) == 0 { - return nil, fmt.Errorf("no secrets found in the selected Key Vault") + return nil, fmt.Errorf("no Key Vault secrets were found in the selected Key Vault account") } options := make([]string, len(secretsInKv)) for i, secret := range secretsInKv { options[i] = fmt.Sprintf("%2d. %s", i+1, secret) } secretSelectionIndex, err := e.console.Select(ctx, input.ConsoleOptions{ - Message: "Select the Key Vault Secret", + Message: "Select the Key Vault secret", Options: options, DefaultValue: options[0], }) @@ -394,8 +393,13 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er return &actions.ActionResult{ Message: &actions.ResultMessage{ - Header: "Selection: " + kvAccount.Name + " secret " + kvSecretName, - FollowUp: "Not implemented yet", + Header: fmt.Sprintf("The key %s was saved in the environment as a reference to the"+ + " Key Vault secret %s from the Key Vault account %s", + output.WithBackticks(secretName), + output.WithBackticks(kvSecretName), + output.WithBackticks(kvAccount.Name)), + FollowUp: fmt.Sprintf("Learn how to use Key Vault secrets with azd and more: %s", + output.WithLinkFormat("https://aka.ms/azd-env-set-secret")), }, }, nil } From 11a95ab9c0d771831a513ca704fe4bef314611a1 Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Thu, 16 Jan 2025 03:34:59 +0000 Subject: [PATCH 11/22] update snap --- cli/azd/cmd/testdata/TestUsage-azd-env-set-secret.snap | 8 ++++---- cli/azd/cmd/testdata/TestUsage-azd-env.snap | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cli/azd/cmd/testdata/TestUsage-azd-env-set-secret.snap b/cli/azd/cmd/testdata/TestUsage-azd-env-set-secret.snap index 898d3817523..fafa1584dd2 100644 --- a/cli/azd/cmd/testdata/TestUsage-azd-env-set-secret.snap +++ b/cli/azd/cmd/testdata/TestUsage-azd-env-set-secret.snap @@ -1,17 +1,17 @@ -Set a Key Vault secret in the environment. +Set a as a reference to a Key Vault secret in the environment. Usage - azd env set-secret [flags] + azd env set-secret [flags] Flags - --docs : Opens the documentation for azd env set-secret in your web browser. -e, --environment string : The name of the environment to use. - -h, --help : Gets help for set-secret. Global Flags -C, --cwd string : Sets the current working directory. --debug : Enables debugging and diagnostics logging. + --docs : Opens the documentation for azd env set-secret in your web browser. + -h, --help : Gets help for set-secret. --no-prompt : Accepts the default value instead of prompting, or it fails if there is no default. Find a bug? Want to let us know how we're doing? Fill out this brief survey: https://aka.ms/azure-dev/hats. diff --git a/cli/azd/cmd/testdata/TestUsage-azd-env.snap b/cli/azd/cmd/testdata/TestUsage-azd-env.snap index 6f81fd430b0..bd75c84fa62 100644 --- a/cli/azd/cmd/testdata/TestUsage-azd-env.snap +++ b/cli/azd/cmd/testdata/TestUsage-azd-env.snap @@ -17,7 +17,7 @@ Available Commands refresh : Refresh environment settings by using information from a previous infrastructure provision. select : Set the default environment. set : Manage your environment settings. - set-secret : Set a Key Vault secret in the environment. + set-secret : Set a as a reference to a Key Vault secret in the environment. Global Flags -C, --cwd string : Sets the current working directory. From efb68c5e757e04ec6b6ce28f7fce071c301a7196 Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Fri, 17 Jan 2025 23:31:58 +0000 Subject: [PATCH 12/22] recordings --- .../LiveDeployRefresh.dotnet.yaml | 62 +- .../Test_CLI_VsServer/LiveDeployRefresh.yaml | 3333 +++++------------ 2 files changed, 1057 insertions(+), 2338 deletions(-) diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_VsServer/LiveDeployRefresh.dotnet.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_VsServer/LiveDeployRefresh.dotnet.yaml index d341dbec7cd..5ea2dd4d73e 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_VsServer/LiveDeployRefresh.dotnet.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_VsServer/LiveDeployRefresh.dotnet.yaml @@ -4,75 +4,55 @@ interactions: - id: 0 args: - publish - - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.ApiService/AspireAzdTests.ApiService.csproj + - /tmp/Test_CLI_VsServerLiveDeployRefresh3154930569/001/AspireAzdTests.ApiService/AspireAzdTests.ApiService.csproj - -r - linux-x64 - -c - Release - /t:PublishContainer - - -p:ContainerRepository=aspire-azd-tests/apiservice-azdtest-lfa372e - - -p:ContainerImageTag=azd-deploy-1731021426 - - -p:ContainerRegistry=acrgj2m4tcideyiu.azurecr.io + - -p:ContainerRepository=aspire-azd-tests/apiservice-azdtest-l9ec8e0 + - -p:ContainerImageTag=azd-deploy-1737152443 + - -p:ContainerRegistry=acrlsxjxxqmwlwys.azurecr.io - --getProperty:GeneratedContainerConfiguration exitCode: 0 stdout: | - {"config":{"ExposedPorts":{"8080/tcp":{}},"Labels":{"org.opencontainers.image.created":"2024-11-07T23:24:04.5529892Z","org.opencontainers.artifact.created":"2024-11-07T23:24:04.5529892Z","org.opencontainers.image.authors":"AspireAzdTests.ApiService","org.opencontainers.image.version":"1.0.0","org.opencontainers.image.base.name":"mcr.microsoft.com/dotnet/aspnet:8.0","net.dot.runtime.majorminor":"8.0","net.dot.sdk.version":"9.0.100-rc.2.24474.11","org.opencontainers.image.base.digest":"sha256:d4ada42ad1dc321729f3163cea08ed635dadf72d220a59011761babd83e7c172"},"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","APP_UID=1654","ASPNETCORE_HTTP_PORTS=8080","DOTNET_RUNNING_IN_CONTAINER=true","DOTNET_VERSION=8.0.10","ASPNET_VERSION=8.0.10"],"WorkingDir":"/app/","Entrypoint":["dotnet","/app/AspireAzdTests.ApiService.dll"],"User":"1654"},"created":"2024-11-07T23:24:05.1164105Z","rootfs":{"type":"layers","diff_ids":["sha256:98b5f35ea9d3eca6ed1881b5fe5d1e02024e1450822879e4c13bb48c9386d0ad","sha256:a990240cee6d79c28911f3cc74700e202aa53bf3fafff11139554fef451b6aed","sha256:63b82d419b18ce93871c599ec595ffe61ec85bd32266dc7ab68af2dc449cb2f8","sha256:869ab4bfb259dcb07faccf0dc5749451bb708b44f9fe62b851a27800a9638b72","sha256:a82429eb8d3eb268801582dde88d4f9e010d25b6428cc254929688a910f1afbe","sha256:e6ffb4bfae03faa855e09eb55d7df9447e301725212f20d3c9cd550e9dda5ed0","sha256:055c061fdeac065a8db896cd5e0a3c1a347acb15bb6659612057b611ff9bbd20"]},"architecture":"amd64","os":"linux","history":[{"created":"2024-10-17T00:20:29.7709258Z","created_by":"/bin/sh -c #(nop) ADD file:90b9dd8f12120e8b2cd3ece45fcbe8af67e40565e2032a40f64bd921c43e2ce7 in / "},{"created":"2024-10-17T00:20:30.1111311Z","created_by":"/bin/sh -c #(nop) CMD [\u0022bash\u0022]","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:48:59.1636621Z","created_by":"ENV APP_UID=1654 ASPNETCORE_HTTP_PORTS=8080 DOTNET_RUNNING_IN_CONTAINER=true","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:48:59.1636621Z","created_by":"RUN /bin/sh -c apt-get update \u0026\u0026 apt-get install -y --no-install-recommends ca-certificates libc6 libgcc-s1 libicu72 libssl3 libstdc\u002B\u002B6 tzdata zlib1g \u0026\u0026 rm -rf /var/lib/apt/lists/* # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:49:00.6789706Z","created_by":"RUN /bin/sh -c groupadd --gid=$APP_UID app \u0026\u0026 useradd -l --uid=$APP_UID --gid=$APP_UID --create-home app # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:49:07.5321761Z","created_by":"ENV DOTNET_VERSION=8.0.10","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:49:07.5321761Z","created_by":"COPY /dotnet /usr/share/dotnet # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:49:08.6312346Z","created_by":"RUN /bin/sh -c ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:49:14.2932641Z","created_by":"ENV ASPNET_VERSION=8.0.10","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:49:14.2932641Z","created_by":"COPY /shared/Microsoft.AspNetCore.App /usr/share/dotnet/shared/Microsoft.AspNetCore.App # buildkit"},{"author":".NET SDK","created":"2024-11-07T23:24:05.1163973Z","created_by":".NET SDK Container Tooling, version 9.0.100-rc.2.24474.11\u002B315e1305dbe1a5ef5870faab5dc12d3a375f61eb"}]} - stderr: | - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.ApiService/AspireAzdTests.ApiService.csproj : warning NU1903: Package 'System.Text.Json' 8.0.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-8g4q-xg66-9fp4 - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.ServiceDefaults/AspireAzdTests.ServiceDefaults.csproj : warning NU1903: Package 'System.Text.Json' 8.0.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-8g4q-xg66-9fp4 [/tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.ApiService/AspireAzdTests.ApiService.csproj] - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.ApiService/AspireAzdTests.ApiService.csproj : warning NU1903: Package 'System.Text.Json' 8.0.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-hh2w-p6rv-4g7w - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.ServiceDefaults/AspireAzdTests.ServiceDefaults.csproj : warning NU1903: Package 'System.Text.Json' 8.0.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-hh2w-p6rv-4g7w [/tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.ApiService/AspireAzdTests.ApiService.csproj] - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.ApiService/AspireAzdTests.ApiService.csproj : warning NU1903: Package 'System.Text.Json' 8.0.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-8g4q-xg66-9fp4 - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.ApiService/AspireAzdTests.ApiService.csproj : warning NU1903: Package 'System.Text.Json' 8.0.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-hh2w-p6rv-4g7w - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.ServiceDefaults/AspireAzdTests.ServiceDefaults.csproj : warning NU1903: Package 'System.Text.Json' 8.0.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-8g4q-xg66-9fp4 - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.ServiceDefaults/AspireAzdTests.ServiceDefaults.csproj : warning NU1903: Package 'System.Text.Json' 8.0.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-hh2w-p6rv-4g7w + {"config":{"ExposedPorts":{"8080/tcp":{}},"Labels":{"org.opencontainers.image.created":"2025-01-17T22:25:17.1506782Z","org.opencontainers.artifact.created":"2025-01-17T22:25:17.1506782Z","org.opencontainers.image.authors":"AspireAzdTests.ApiService","org.opencontainers.image.version":"1.0.0","org.opencontainers.image.base.name":"mcr.microsoft.com/dotnet/aspnet:8.0","net.dot.runtime.majorminor":"8.0","net.dot.sdk.version":"9.0.101","org.opencontainers.image.base.digest":"sha256:2cd76b1aba9a5ee9013baeed7cb52784cfd8198a8f343f5264daa9db7b73f5de"},"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","APP_UID=1654","ASPNETCORE_HTTP_PORTS=8080","DOTNET_RUNNING_IN_CONTAINER=true","DOTNET_VERSION=8.0.12","ASPNET_VERSION=8.0.12"],"WorkingDir":"/app/","Entrypoint":["dotnet","/app/AspireAzdTests.ApiService.dll"],"User":"1654"},"created":"2025-01-17T22:25:19.1192765Z","rootfs":{"type":"layers","diff_ids":["sha256:f5fe472da25334617e6e6467c7ebce41e0ae5580e5bd0ecbf0d573bacd560ecb","sha256:b138fdfd1095780b78eb87d172392eaedb62c02443fb29e6955d69894d13667c","sha256:bc198994fabd5cb872694fddb790802e81cfbfc7af240138561ae30308bc93c8","sha256:0fbbfdee9cddbc405d7577d75a38028f9ada2fc968343e0d7eaea6d88d7f1cc4","sha256:9f71735511ce298381e7a7cffbbd340976a328622d0fb5ac01e8c4afd7ba9c1d","sha256:f07c146df8a618e310357dccc538d52ee52bddb1f5f6fff2113e47cb9efbd8cc","sha256:45db2486b52d0f8a17b6f7b717a598d3511edb3c7ac64238bddd12f8a2adf893"]},"architecture":"amd64","os":"linux","history":[{"comment":"debuerreotype 0.15","created":"2025-01-13T00:00:00.0000000Z","created_by":"# debian.sh --arch \u0027amd64\u0027 out/ \u0027bookworm\u0027 \u0027@1736726400\u0027"},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:00:44.0220201Z","created_by":"ENV APP_UID=1654 ASPNETCORE_HTTP_PORTS=8080 DOTNET_RUNNING_IN_CONTAINER=true","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:00:44.0220201Z","created_by":"RUN /bin/sh -c apt-get update \u0026\u0026 apt-get install -y --no-install-recommends ca-certificates libc6 libgcc-s1 libicu72 libssl3 libstdc\u002B\u002B6 tzdata zlib1g \u0026\u0026 rm -rf /var/lib/apt/lists/* # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:00:45.9027407Z","created_by":"RUN /bin/sh -c groupadd --gid=$APP_UID app \u0026\u0026 useradd -l --uid=$APP_UID --gid=$APP_UID --create-home app # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:00:52.9595288Z","created_by":"ENV DOTNET_VERSION=8.0.12","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:00:52.9595288Z","created_by":"COPY /dotnet /usr/share/dotnet # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:00:54.4897837Z","created_by":"RUN /bin/sh -c ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:01:00.3575580Z","created_by":"ENV ASPNET_VERSION=8.0.12","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:01:00.3575580Z","created_by":"COPY /shared/Microsoft.AspNetCore.App /usr/share/dotnet/shared/Microsoft.AspNetCore.App # buildkit"},{"author":".NET SDK","created":"2025-01-17T22:25:19.1192494Z","created_by":".NET SDK Container Tooling, version 9.0.101-servicing.24572.9\u002Beedb237549e0f02ec827b0905cf9231f5b4519a9"}]} + stderr: "" - id: 1 args: - publish - - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.Web/AspireAzdTests.Web.csproj + - /tmp/Test_CLI_VsServerLiveDeployRefresh3154930569/001/AspireAzdTests.Web/AspireAzdTests.Web.csproj - -r - linux-x64 - -c - Release - /t:PublishContainer - - -p:ContainerRepository=aspire-azd-tests/webfrontend-azdtest-lfa372e - - -p:ContainerImageTag=azd-deploy-1731021426 - - -p:ContainerRegistry=acrgj2m4tcideyiu.azurecr.io + - -p:ContainerRepository=aspire-azd-tests/webfrontend-azdtest-l9ec8e0 + - -p:ContainerImageTag=azd-deploy-1737152443 + - -p:ContainerRegistry=acrlsxjxxqmwlwys.azurecr.io - --getProperty:GeneratedContainerConfiguration exitCode: 0 stdout: | - {"config":{"ExposedPorts":{"8080/tcp":{}},"Labels":{"org.opencontainers.image.created":"2024-11-07T23:24:52.6935253Z","org.opencontainers.artifact.created":"2024-11-07T23:24:52.6935253Z","org.opencontainers.image.authors":"AspireAzdTests.Web","org.opencontainers.image.version":"1.0.0","org.opencontainers.image.base.name":"mcr.microsoft.com/dotnet/aspnet:8.0","net.dot.runtime.majorminor":"8.0","net.dot.sdk.version":"9.0.100-rc.2.24474.11","org.opencontainers.image.base.digest":"sha256:d4ada42ad1dc321729f3163cea08ed635dadf72d220a59011761babd83e7c172"},"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","APP_UID=1654","ASPNETCORE_HTTP_PORTS=8080","DOTNET_RUNNING_IN_CONTAINER=true","DOTNET_VERSION=8.0.10","ASPNET_VERSION=8.0.10"],"WorkingDir":"/app/","Entrypoint":["dotnet","/app/AspireAzdTests.Web.dll"],"User":"1654"},"created":"2024-11-07T23:24:53.4034374Z","rootfs":{"type":"layers","diff_ids":["sha256:98b5f35ea9d3eca6ed1881b5fe5d1e02024e1450822879e4c13bb48c9386d0ad","sha256:a990240cee6d79c28911f3cc74700e202aa53bf3fafff11139554fef451b6aed","sha256:63b82d419b18ce93871c599ec595ffe61ec85bd32266dc7ab68af2dc449cb2f8","sha256:869ab4bfb259dcb07faccf0dc5749451bb708b44f9fe62b851a27800a9638b72","sha256:a82429eb8d3eb268801582dde88d4f9e010d25b6428cc254929688a910f1afbe","sha256:e6ffb4bfae03faa855e09eb55d7df9447e301725212f20d3c9cd550e9dda5ed0","sha256:f560a7fd16fe5f111203765a32390429594040032d7ae864a51d86c6378686ec"]},"architecture":"amd64","os":"linux","history":[{"created":"2024-10-17T00:20:29.7709258Z","created_by":"/bin/sh -c #(nop) ADD file:90b9dd8f12120e8b2cd3ece45fcbe8af67e40565e2032a40f64bd921c43e2ce7 in / "},{"created":"2024-10-17T00:20:30.1111311Z","created_by":"/bin/sh -c #(nop) CMD [\u0022bash\u0022]","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:48:59.1636621Z","created_by":"ENV APP_UID=1654 ASPNETCORE_HTTP_PORTS=8080 DOTNET_RUNNING_IN_CONTAINER=true","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:48:59.1636621Z","created_by":"RUN /bin/sh -c apt-get update \u0026\u0026 apt-get install -y --no-install-recommends ca-certificates libc6 libgcc-s1 libicu72 libssl3 libstdc\u002B\u002B6 tzdata zlib1g \u0026\u0026 rm -rf /var/lib/apt/lists/* # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:49:00.6789706Z","created_by":"RUN /bin/sh -c groupadd --gid=$APP_UID app \u0026\u0026 useradd -l --uid=$APP_UID --gid=$APP_UID --create-home app # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:49:07.5321761Z","created_by":"ENV DOTNET_VERSION=8.0.10","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:49:07.5321761Z","created_by":"COPY /dotnet /usr/share/dotnet # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:49:08.6312346Z","created_by":"RUN /bin/sh -c ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:49:14.2932641Z","created_by":"ENV ASPNET_VERSION=8.0.10","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:49:14.2932641Z","created_by":"COPY /shared/Microsoft.AspNetCore.App /usr/share/dotnet/shared/Microsoft.AspNetCore.App # buildkit"},{"author":".NET SDK","created":"2024-11-07T23:24:53.4034223Z","created_by":".NET SDK Container Tooling, version 9.0.100-rc.2.24474.11\u002B315e1305dbe1a5ef5870faab5dc12d3a375f61eb"}]} + {"config":{"ExposedPorts":{"8080/tcp":{}},"Labels":{"org.opencontainers.image.created":"2025-01-17T22:26:04.8259978Z","org.opencontainers.artifact.created":"2025-01-17T22:26:04.8259978Z","org.opencontainers.image.authors":"AspireAzdTests.Web","org.opencontainers.image.version":"1.0.0","org.opencontainers.image.base.name":"mcr.microsoft.com/dotnet/aspnet:8.0","net.dot.runtime.majorminor":"8.0","net.dot.sdk.version":"9.0.101","org.opencontainers.image.base.digest":"sha256:2cd76b1aba9a5ee9013baeed7cb52784cfd8198a8f343f5264daa9db7b73f5de"},"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","APP_UID=1654","ASPNETCORE_HTTP_PORTS=8080","DOTNET_RUNNING_IN_CONTAINER=true","DOTNET_VERSION=8.0.12","ASPNET_VERSION=8.0.12"],"WorkingDir":"/app/","Entrypoint":["dotnet","/app/AspireAzdTests.Web.dll"],"User":"1654"},"created":"2025-01-17T22:26:05.5907569Z","rootfs":{"type":"layers","diff_ids":["sha256:f5fe472da25334617e6e6467c7ebce41e0ae5580e5bd0ecbf0d573bacd560ecb","sha256:b138fdfd1095780b78eb87d172392eaedb62c02443fb29e6955d69894d13667c","sha256:bc198994fabd5cb872694fddb790802e81cfbfc7af240138561ae30308bc93c8","sha256:0fbbfdee9cddbc405d7577d75a38028f9ada2fc968343e0d7eaea6d88d7f1cc4","sha256:9f71735511ce298381e7a7cffbbd340976a328622d0fb5ac01e8c4afd7ba9c1d","sha256:f07c146df8a618e310357dccc538d52ee52bddb1f5f6fff2113e47cb9efbd8cc","sha256:f5100ce20a2b9a862af3d9add2b6690efd61e51858f5a2945a85a60a76f155e1"]},"architecture":"amd64","os":"linux","history":[{"comment":"debuerreotype 0.15","created":"2025-01-13T00:00:00.0000000Z","created_by":"# debian.sh --arch \u0027amd64\u0027 out/ \u0027bookworm\u0027 \u0027@1736726400\u0027"},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:00:44.0220201Z","created_by":"ENV APP_UID=1654 ASPNETCORE_HTTP_PORTS=8080 DOTNET_RUNNING_IN_CONTAINER=true","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:00:44.0220201Z","created_by":"RUN /bin/sh -c apt-get update \u0026\u0026 apt-get install -y --no-install-recommends ca-certificates libc6 libgcc-s1 libicu72 libssl3 libstdc\u002B\u002B6 tzdata zlib1g \u0026\u0026 rm -rf /var/lib/apt/lists/* # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:00:45.9027407Z","created_by":"RUN /bin/sh -c groupadd --gid=$APP_UID app \u0026\u0026 useradd -l --uid=$APP_UID --gid=$APP_UID --create-home app # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:00:52.9595288Z","created_by":"ENV DOTNET_VERSION=8.0.12","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:00:52.9595288Z","created_by":"COPY /dotnet /usr/share/dotnet # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:00:54.4897837Z","created_by":"RUN /bin/sh -c ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:01:00.3575580Z","created_by":"ENV ASPNET_VERSION=8.0.12","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:01:00.3575580Z","created_by":"COPY /shared/Microsoft.AspNetCore.App /usr/share/dotnet/shared/Microsoft.AspNetCore.App # buildkit"},{"author":".NET SDK","created":"2025-01-17T22:26:05.5907378Z","created_by":".NET SDK Container Tooling, version 9.0.101-servicing.24572.9\u002Beedb237549e0f02ec827b0905cf9231f5b4519a9"}]} stderr: | - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.ServiceDefaults/AspireAzdTests.ServiceDefaults.csproj : warning NU1903: Package 'System.Text.Json' 8.0.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-8g4q-xg66-9fp4 [/tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.Web/AspireAzdTests.Web.csproj] - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.ServiceDefaults/AspireAzdTests.ServiceDefaults.csproj : warning NU1903: Package 'System.Text.Json' 8.0.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-hh2w-p6rv-4g7w [/tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.Web/AspireAzdTests.Web.csproj] - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.ServiceDefaults/AspireAzdTests.ServiceDefaults.csproj : warning NU1903: Package 'System.Text.Json' 8.0.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-8g4q-xg66-9fp4 - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.ServiceDefaults/AspireAzdTests.ServiceDefaults.csproj : warning NU1903: Package 'System.Text.Json' 8.0.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-hh2w-p6rv-4g7w - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.Web/Components/Pages/AzureBlobs.razor(45,12): warning CS8618: Non-nullable field '_html' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the field as nullable. [/tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.Web/AspireAzdTests.Web.csproj] - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.Web/Components/Pages/AzureTables.razor(57,23): warning CS8618: Non-nullable property 'PartitionKey' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable. [/tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.Web/AspireAzdTests.Web.csproj] - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.Web/Components/Pages/AzureTables.razor(58,23): warning CS8618: Non-nullable property 'RowKey' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable. [/tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.Web/AspireAzdTests.Web.csproj] - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.Web/Components/Pages/AzureTables.razor(61,23): warning CS8618: Non-nullable property 'Endpoint' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable. [/tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.Web/AspireAzdTests.Web.csproj] + /tmp/Test_CLI_VsServerLiveDeployRefresh3154930569/001/AspireAzdTests.Web/Components/Pages/AzureTables.razor(57,23): warning CS8618: Non-nullable property 'PartitionKey' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable. [/tmp/Test_CLI_VsServerLiveDeployRefresh3154930569/001/AspireAzdTests.Web/AspireAzdTests.Web.csproj] + /tmp/Test_CLI_VsServerLiveDeployRefresh3154930569/001/AspireAzdTests.Web/Components/Pages/AzureTables.razor(58,23): warning CS8618: Non-nullable property 'RowKey' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable. [/tmp/Test_CLI_VsServerLiveDeployRefresh3154930569/001/AspireAzdTests.Web/AspireAzdTests.Web.csproj] + /tmp/Test_CLI_VsServerLiveDeployRefresh3154930569/001/AspireAzdTests.Web/Components/Pages/AzureTables.razor(61,23): warning CS8618: Non-nullable property 'Endpoint' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the property as nullable. [/tmp/Test_CLI_VsServerLiveDeployRefresh3154930569/001/AspireAzdTests.Web/AspireAzdTests.Web.csproj] + /tmp/Test_CLI_VsServerLiveDeployRefresh3154930569/001/AspireAzdTests.Web/Components/Pages/AzureBlobs.razor(45,12): warning CS8618: Non-nullable field '_html' must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring the field as nullable. [/tmp/Test_CLI_VsServerLiveDeployRefresh3154930569/001/AspireAzdTests.Web/AspireAzdTests.Web.csproj] - id: 2 args: - publish - - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.Worker/AspireAzdTests.Worker.csproj + - /tmp/Test_CLI_VsServerLiveDeployRefresh3154930569/001/AspireAzdTests.Worker/AspireAzdTests.Worker.csproj - -r - linux-x64 - -c - Release - /t:PublishContainer - - -p:ContainerRepository=aspire-azd-tests/worker-azdtest-lfa372e - - -p:ContainerImageTag=azd-deploy-1731021426 - - -p:ContainerRegistry=acrgj2m4tcideyiu.azurecr.io + - -p:ContainerRepository=aspire-azd-tests/worker-azdtest-l9ec8e0 + - -p:ContainerImageTag=azd-deploy-1737152443 + - -p:ContainerRegistry=acrlsxjxxqmwlwys.azurecr.io - --getProperty:GeneratedContainerConfiguration exitCode: 0 stdout: | - {"config":{"ExposedPorts":{"8080/tcp":{}},"Labels":{"org.opencontainers.image.created":"2024-11-07T23:25:23.9348888Z","org.opencontainers.artifact.created":"2024-11-07T23:25:23.9348888Z","org.opencontainers.image.authors":"AspireAzdTests.Worker","org.opencontainers.image.version":"1.0.0","org.opencontainers.image.base.name":"mcr.microsoft.com/dotnet/aspnet:8.0","net.dot.runtime.majorminor":"8.0","net.dot.sdk.version":"9.0.100-rc.2.24474.11","org.opencontainers.image.base.digest":"sha256:d4ada42ad1dc321729f3163cea08ed635dadf72d220a59011761babd83e7c172"},"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","APP_UID=1654","ASPNETCORE_HTTP_PORTS=8080","DOTNET_RUNNING_IN_CONTAINER=true","DOTNET_VERSION=8.0.10","ASPNET_VERSION=8.0.10"],"WorkingDir":"/app/","Entrypoint":["dotnet","/app/AspireAzdTests.Worker.dll"],"User":"1654"},"created":"2024-11-07T23:25:24.4896506Z","rootfs":{"type":"layers","diff_ids":["sha256:98b5f35ea9d3eca6ed1881b5fe5d1e02024e1450822879e4c13bb48c9386d0ad","sha256:a990240cee6d79c28911f3cc74700e202aa53bf3fafff11139554fef451b6aed","sha256:63b82d419b18ce93871c599ec595ffe61ec85bd32266dc7ab68af2dc449cb2f8","sha256:869ab4bfb259dcb07faccf0dc5749451bb708b44f9fe62b851a27800a9638b72","sha256:a82429eb8d3eb268801582dde88d4f9e010d25b6428cc254929688a910f1afbe","sha256:e6ffb4bfae03faa855e09eb55d7df9447e301725212f20d3c9cd550e9dda5ed0","sha256:f828e08bf597f1f004f6636caee30281c96f844a3f743ea97cfb289a108f0c49"]},"architecture":"amd64","os":"linux","history":[{"created":"2024-10-17T00:20:29.7709258Z","created_by":"/bin/sh -c #(nop) ADD file:90b9dd8f12120e8b2cd3ece45fcbe8af67e40565e2032a40f64bd921c43e2ce7 in / "},{"created":"2024-10-17T00:20:30.1111311Z","created_by":"/bin/sh -c #(nop) CMD [\u0022bash\u0022]","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:48:59.1636621Z","created_by":"ENV APP_UID=1654 ASPNETCORE_HTTP_PORTS=8080 DOTNET_RUNNING_IN_CONTAINER=true","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:48:59.1636621Z","created_by":"RUN /bin/sh -c apt-get update \u0026\u0026 apt-get install -y --no-install-recommends ca-certificates libc6 libgcc-s1 libicu72 libssl3 libstdc\u002B\u002B6 tzdata zlib1g \u0026\u0026 rm -rf /var/lib/apt/lists/* # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:49:00.6789706Z","created_by":"RUN /bin/sh -c groupadd --gid=$APP_UID app \u0026\u0026 useradd -l --uid=$APP_UID --gid=$APP_UID --create-home app # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:49:07.5321761Z","created_by":"ENV DOTNET_VERSION=8.0.10","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:49:07.5321761Z","created_by":"COPY /dotnet /usr/share/dotnet # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:49:08.6312346Z","created_by":"RUN /bin/sh -c ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:49:14.2932641Z","created_by":"ENV ASPNET_VERSION=8.0.10","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2024-10-17T08:49:14.2932641Z","created_by":"COPY /shared/Microsoft.AspNetCore.App /usr/share/dotnet/shared/Microsoft.AspNetCore.App # buildkit"},{"author":".NET SDK","created":"2024-11-07T23:25:24.4896314Z","created_by":".NET SDK Container Tooling, version 9.0.100-rc.2.24474.11\u002B315e1305dbe1a5ef5870faab5dc12d3a375f61eb"}]} - stderr: | - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.ServiceDefaults/AspireAzdTests.ServiceDefaults.csproj : warning NU1903: Package 'System.Text.Json' 8.0.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-8g4q-xg66-9fp4 [/tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.Worker/AspireAzdTests.Worker.csproj] - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.ServiceDefaults/AspireAzdTests.ServiceDefaults.csproj : warning NU1903: Package 'System.Text.Json' 8.0.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-hh2w-p6rv-4g7w [/tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.Worker/AspireAzdTests.Worker.csproj] - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.Worker/AspireAzdTests.Worker.csproj : warning NU1903: Package 'System.Text.Json' 8.0.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-8g4q-xg66-9fp4 - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.Worker/AspireAzdTests.Worker.csproj : warning NU1903: Package 'System.Text.Json' 8.0.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-hh2w-p6rv-4g7w - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.Worker/AspireAzdTests.Worker.csproj : warning NU1903: Package 'System.Text.Json' 8.0.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-8g4q-xg66-9fp4 - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.Worker/AspireAzdTests.Worker.csproj : warning NU1903: Package 'System.Text.Json' 8.0.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-hh2w-p6rv-4g7w - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.ServiceDefaults/AspireAzdTests.ServiceDefaults.csproj : warning NU1903: Package 'System.Text.Json' 8.0.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-8g4q-xg66-9fp4 - /tmp/Test_CLI_VsServerLiveDeployRefresh3121092543/001/AspireAzdTests.ServiceDefaults/AspireAzdTests.ServiceDefaults.csproj : warning NU1903: Package 'System.Text.Json' 8.0.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-hh2w-p6rv-4g7w + {"config":{"ExposedPorts":{"8080/tcp":{}},"Labels":{"org.opencontainers.image.created":"2025-01-17T22:26:33.8506022Z","org.opencontainers.artifact.created":"2025-01-17T22:26:33.8506022Z","org.opencontainers.image.authors":"AspireAzdTests.Worker","org.opencontainers.image.version":"1.0.0","org.opencontainers.image.base.name":"mcr.microsoft.com/dotnet/aspnet:8.0","net.dot.runtime.majorminor":"8.0","net.dot.sdk.version":"9.0.101","org.opencontainers.image.base.digest":"sha256:2cd76b1aba9a5ee9013baeed7cb52784cfd8198a8f343f5264daa9db7b73f5de"},"Env":["PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","APP_UID=1654","ASPNETCORE_HTTP_PORTS=8080","DOTNET_RUNNING_IN_CONTAINER=true","DOTNET_VERSION=8.0.12","ASPNET_VERSION=8.0.12"],"WorkingDir":"/app/","Entrypoint":["dotnet","/app/AspireAzdTests.Worker.dll"],"User":"1654"},"created":"2025-01-17T22:26:34.4251673Z","rootfs":{"type":"layers","diff_ids":["sha256:f5fe472da25334617e6e6467c7ebce41e0ae5580e5bd0ecbf0d573bacd560ecb","sha256:b138fdfd1095780b78eb87d172392eaedb62c02443fb29e6955d69894d13667c","sha256:bc198994fabd5cb872694fddb790802e81cfbfc7af240138561ae30308bc93c8","sha256:0fbbfdee9cddbc405d7577d75a38028f9ada2fc968343e0d7eaea6d88d7f1cc4","sha256:9f71735511ce298381e7a7cffbbd340976a328622d0fb5ac01e8c4afd7ba9c1d","sha256:f07c146df8a618e310357dccc538d52ee52bddb1f5f6fff2113e47cb9efbd8cc","sha256:649fb9f1acfc96a552c8df572d5864bbed5b67a546544da35d28ad56fbbe9aee"]},"architecture":"amd64","os":"linux","history":[{"comment":"debuerreotype 0.15","created":"2025-01-13T00:00:00.0000000Z","created_by":"# debian.sh --arch \u0027amd64\u0027 out/ \u0027bookworm\u0027 \u0027@1736726400\u0027"},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:00:44.0220201Z","created_by":"ENV APP_UID=1654 ASPNETCORE_HTTP_PORTS=8080 DOTNET_RUNNING_IN_CONTAINER=true","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:00:44.0220201Z","created_by":"RUN /bin/sh -c apt-get update \u0026\u0026 apt-get install -y --no-install-recommends ca-certificates libc6 libgcc-s1 libicu72 libssl3 libstdc\u002B\u002B6 tzdata zlib1g \u0026\u0026 rm -rf /var/lib/apt/lists/* # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:00:45.9027407Z","created_by":"RUN /bin/sh -c groupadd --gid=$APP_UID app \u0026\u0026 useradd -l --uid=$APP_UID --gid=$APP_UID --create-home app # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:00:52.9595288Z","created_by":"ENV DOTNET_VERSION=8.0.12","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:00:52.9595288Z","created_by":"COPY /dotnet /usr/share/dotnet # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:00:54.4897837Z","created_by":"RUN /bin/sh -c ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet # buildkit"},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:01:00.3575580Z","created_by":"ENV ASPNET_VERSION=8.0.12","empty_layer":true},{"comment":"buildkit.dockerfile.v0","created":"2025-01-14T19:01:00.3575580Z","created_by":"COPY /shared/Microsoft.AspNetCore.App /usr/share/dotnet/shared/Microsoft.AspNetCore.App # buildkit"},{"author":".NET SDK","created":"2025-01-17T22:26:34.4251471Z","created_by":".NET SDK Container Tooling, version 9.0.101-servicing.24572.9\u002Beedb237549e0f02ec827b0905cf9231f5b4519a9"}]} + stderr: "" diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_VsServer/LiveDeployRefresh.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_VsServer/LiveDeployRefresh.yaml index 976f567d7ac..3d2164bfb91 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_VsServer/LiveDeployRefresh.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_VsServer/LiveDeployRefresh.yaml @@ -42,7 +42,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:17:33 GMT + - Fri, 17 Jan 2025 22:21:06 GMT Expires: - "-1" Pragma: @@ -54,20 +54,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 87ccfa93-3ca0-4834-88b0-7bd033dcc486 + - fe667709-1d43-4232-82da-47e40993d8bc X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 87ccfa93-3ca0-4834-88b0-7bd033dcc486 + - fe667709-1d43-4232-82da-47e40993d8bc X-Ms-Routing-Request-Id: - - WESTUS2:20241107T231733Z:87ccfa93-3ca0-4834-88b0-7bd033dcc486 + - WESTUS2:20250117T222107Z:fe667709-1d43-4232-82da-47e40993d8bc X-Msedge-Ref: - - 'Ref A: 37C9D9A549924A049CB2772EAC28358D Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:17:30Z' + - 'Ref A: 57DC26B1AE984310A012AAF4B23D3657 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:21:04Z' status: 200 OK code: 200 - duration: 3.125369653s + duration: 3.197532107s - id: 1 request: proto: HTTP/1.1 @@ -98,18 +98,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2181375 + content_length: 1016 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=zVDLaoNAFP0W7zqBMZVS3MXcCUgzdzKvlHQXUiOijNAaxir%2be2tb%2f6HL84JzzgjX1neVv1%2b6qvW2rQv%2fAekIL9xYZzaQ%2bnvTrIBv%2f%2bAIvui74%2bW9q%2bbAc%2fEJKcTRU0T23IvhvIbVj0O3YdFixiJd7zOBZVDuFYVTCWGWaWxQsdNeOM7IZqjsaUf27aZjkgfDgkT37bv2hHmgoUwk1om05QNVMRnMH0WtehpEELbcCMwZTEvPecC%2frrnjZPX24Mzy73w3d1oe%2bS8zTV8%3d","value":[]}' + body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "2181375" + - "1016" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:17:39 GMT + - Fri, 17 Jan 2025 22:21:07 GMT Expires: - "-1" Pragma: @@ -121,21 +121,96 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5d219a96-cae2-4dfd-ba2e-1db729799160 + - 14ef9301-be29-4388-ba86-4ba2681530e0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 5d219a96-cae2-4dfd-ba2e-1db729799160 + - 14ef9301-be29-4388-ba86-4ba2681530e0 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T231740Z:5d219a96-cae2-4dfd-ba2e-1db729799160 + - WESTUS2:20250117T222107Z:14ef9301-be29-4388-ba86-4ba2681530e0 X-Msedge-Ref: - - 'Ref A: B0487621C8994820AFA2F1D3315F3CE1 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:17:33Z' + - 'Ref A: 547E2997E7144F3C8EDDC312BFD15999 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:21:07Z' status: 200 OK code: 200 - duration: 6.10628493s + duration: 316.448718ms - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 17662 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-l9ec8e0"},"goversion":{"value":"1.22"},"location":{"value":"eastus2"},"principalId":{"value":"62661785-adcf-4117-b9d0-22b3aa2b4ebf"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.32.4.45862","templateHash":"7799194296368964685"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the environment that can be used as part of naming resource convention, the name of the resource group for your application will use this name, prefixed with rg-"}},"location":{"type":"string","minLength":1,"metadata":{"description":"The location used for all deployed resources"}},"principalId":{"type":"string","defaultValue":"","metadata":{"description":"Id of the user or app to assign application roles"}},"goversion":{"type":"string","defaultValue":"1.22","metadata":{"azd":{"type":"needForDeploy","config":{}}}}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"}},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2022-09-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-01","name":"resources","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"location":{"value":"[parameters(''location'')]"},"tags":{"value":"[variables(''tags'')]"},"principalId":{"value":"[parameters(''principalId'')]"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.32.4.45862","templateHash":"16437278860657730522"}},"parameters":{"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":"The location used for all deployed resources"}},"principalId":{"type":"string","defaultValue":"","metadata":{"description":"Id of the user or app to assign application roles"}},"tags":{"type":"object","defaultValue":{},"metadata":{"description":"Tags that will be applied to all resources"}}},"variables":{"resourceToken":"[uniqueString(resourceGroup().id)]"},"resources":[{"type":"Microsoft.App/managedEnvironments/dotNetComponents","apiVersion":"2024-02-02-preview","name":"[format(''{0}/{1}'', format(''cae-{0}'', variables(''resourceToken'')), ''aspire-dashboard'')]","properties":{"componentType":"AspireDashboard"},"dependsOn":["[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.ManagedIdentity/userAssignedIdentities","apiVersion":"2023-01-31","name":"[format(''mi-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[parameters(''tags'')]"},{"type":"Microsoft.ContainerRegistry/registries","apiVersion":"2023-07-01","name":"[replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')]","location":"[parameters(''location'')]","sku":{"name":"Basic"},"tags":"[parameters(''tags'')]"},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.ContainerRegistry/registries/{0}'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', ''''))]","name":"[guid(resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')), resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]","principalType":"ServicePrincipal","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d'')]"},"dependsOn":["[resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', ''''))]","[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.OperationalInsights/workspaces","apiVersion":"2022-10-01","name":"[format(''law-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","properties":{"sku":{"name":"PerGB2018"}},"tags":"[parameters(''tags'')]"},{"type":"Microsoft.App/managedEnvironments","apiVersion":"2024-02-02-preview","name":"[format(''cae-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","properties":{"workloadProfiles":[{"workloadProfileType":"Consumption","name":"consumption"}],"appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"[reference(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken''))), ''2022-10-01'').customerId]","sharedKey":"[listKeys(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken''))), ''2022-10-01'').primarySharedKey]"}}},"tags":"[parameters(''tags'')]","dependsOn":["[resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.App/managedEnvironments/{0}'', format(''cae-{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken''))), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''b24988ac-6180-42a0-ab88-20f7382dd24c''))]","properties":{"principalId":"[parameters(''principalId'')]","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''b24988ac-6180-42a0-ab88-20f7382dd24c'')]"},"dependsOn":["[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]"]}],"outputs":{"MANAGED_IDENTITY_CLIENT_ID":{"type":"string","value":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').clientId]"},"MANAGED_IDENTITY_NAME":{"type":"string","value":"[format(''mi-{0}'', variables(''resourceToken''))]"},"MANAGED_IDENTITY_PRINCIPAL_ID":{"type":"string","value":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]"},"AZURE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"string","value":"[format(''law-{0}'', variables(''resourceToken''))]"},"AZURE_LOG_ANALYTICS_WORKSPACE_ID":{"type":"string","value":"[resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken'')))]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')), ''2023-07-01'').loginServer]"},"AZURE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"string","value":"[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"},"AZURE_CONTAINER_REGISTRY_NAME":{"type":"string","value":"[replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"string","value":"[format(''cae-{0}'', variables(''resourceToken''))]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"string","value":"[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"string","value":"[reference(resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken''))), ''2024-02-02-preview'').defaultDomain]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]},{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-01","name":"storage","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"location":{"value":"[parameters(''location'')]"},"principalId":{"value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.MANAGED_IDENTITY_PRINCIPAL_ID.value]"},"principalType":{"value":"ServicePrincipal"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.32.4.45862","templateHash":"12231819234263808278"}},"parameters":{"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":"The location for the resource(s) to be deployed."}},"principalId":{"type":"string"},"principalType":{"type":"string"}},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2024-01-01","name":"[take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)]","kind":"StorageV2","location":"[parameters(''location'')]","sku":{"name":"Standard_GRS"},"properties":{"accessTier":"Hot","allowSharedKeyAccess":false,"minimumTlsVersion":"TLS1_2","networkAcls":{"defaultAction":"Allow"}},"tags":{"aspire-resource-name":"storage"}},{"type":"Microsoft.Storage/storageAccounts/blobServices","apiVersion":"2024-01-01","name":"[format(''{0}/{1}'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24), ''default'')]","dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.Storage/storageAccounts/{0}'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''ba92f5b4-2d11-453d-a403-e96b0029c9fe''))]","properties":{"principalId":"[parameters(''principalId'')]","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''ba92f5b4-2d11-453d-a403-e96b0029c9fe'')]","principalType":"[parameters(''principalType'')]"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.Storage/storageAccounts/{0}'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3''))]","properties":{"principalId":"[parameters(''principalId'')]","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3'')]","principalType":"[parameters(''principalType'')]"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.Storage/storageAccounts/{0}'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''974c5e8b-45b9-4653-ba55-5f855dd0fb88''))]","properties":{"principalId":"[parameters(''principalId'')]","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''974c5e8b-45b9-4653-ba55-5f855dd0fb88'')]","principalType":"[parameters(''principalType'')]"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))]"]}],"outputs":{"blobEndpoint":{"type":"string","value":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)), ''2024-01-01'').primaryEndpoints.blob]"},"queueEndpoint":{"type":"string","value":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)), ''2024-01-01'').primaryEndpoints.queue]"},"tableEndpoint":{"type":"string","value":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)), ''2024-01-01'').primaryEndpoints.table]"}}}},"dependsOn":["[extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources'')]","[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"MANAGED_IDENTITY_CLIENT_ID":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.MANAGED_IDENTITY_CLIENT_ID.value]"},"MANAGED_IDENTITY_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.MANAGED_IDENTITY_NAME.value]"},"AZURE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.AZURE_LOG_ANALYTICS_WORKSPACE_NAME.value]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.AZURE_CONTAINER_REGISTRY_ENDPOINT.value]"},"AZURE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.AZURE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID.value]"},"AZURE_CONTAINER_REGISTRY_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.AZURE_CONTAINER_REGISTRY_NAME.value]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.AZURE_CONTAINER_APPS_ENVIRONMENT_NAME.value]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.AZURE_CONTAINER_APPS_ENVIRONMENT_ID.value]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.AZURE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN.value]"},"STORAGE_BLOBENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''storage''), ''2022-09-01'').outputs.blobEndpoint.value]"},"STORAGE_QUEUEENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''storage''), ''2022-09-01'').outputs.queueEndpoint.value]"},"STORAGE_TABLEENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''storage''), ''2022-09-01'').outputs.tableEndpoint.value]"}}}},"tags":{"azd-env-name":"azdtest-l9ec8e0","azd-provision-param-hash":"5078b0222ae3b911466620e07caac5df333846f9302ccf48f5425f919d2b93fd"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "17662" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l9ec8e0-1737152443?api-version=2021-04-01 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2340 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l9ec8e0-1737152443","name":"azdtest-l9ec8e0-1737152443","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0","azd-provision-param-hash":"5078b0222ae3b911466620e07caac5df333846f9302ccf48f5425f919d2b93fd"},"properties":{"templateHash":"7799194296368964685","parameters":{"environmentName":{"type":"String","value":"azdtest-l9ec8e0"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"62661785-adcf-4117-b9d0-22b3aa2b4ebf"},"goversion":{"type":"String","value":"1.22"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-17T22:21:09.9882494Z","duration":"PT0.0004138S","correlationId":"9ba108b9-2a4e-4013-92a9-70f87d052c91","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l9ec8e0"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l9ec8e0"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/storage","resourceType":"Microsoft.Resources/deployments","resourceName":"storage"}]}}' + headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l9ec8e0-1737152443/operationStatuses/08584644544174719600?api-version=2021-04-01 + Cache-Control: + - no-cache + Content-Length: + - "2340" + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 17 Jan 2025 22:21:10 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 9ba108b9-2a4e-4013-92a9-70f87d052c91 + X-Ms-Deployment-Engine-Version: + - 1.173.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 9ba108b9-2a4e-4013-92a9-70f87d052c91 + X-Ms-Routing-Request-Id: + - WESTUS2:20250117T222110Z:9ba108b9-2a4e-4013-92a9-70f87d052c91 + X-Msedge-Ref: + - 'Ref A: 53435788BB4744D4B7B1C6012EB0075B Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:21:07Z' + status: 201 Created + code: 201 + duration: 3.051339503s + - id: 3 request: proto: HTTP/1.1 proto_major: 1 @@ -155,7 +230,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=zVDLaoNAFP0W7zqBMZVS3MXcCUgzdzKvlHQXUiOijNAaxir%2be2tb%2f6HL84JzzgjX1neVv1%2b6qvW2rQv%2fAekIL9xYZzaQ%2bnvTrIBv%2f%2bAIvui74%2bW9q%2bbAc%2fEJKcTRU0T23IvhvIbVj0O3YdFixiJd7zOBZVDuFYVTCWGWaWxQsdNeOM7IZqjsaUf27aZjkgfDgkT37bv2hHmgoUwk1om05QNVMRnMH0WtehpEELbcCMwZTEvPecC%2frrnjZPX24Mzy73w3d1oe%2bS8zTV8%3d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l9ec8e0-1737152443/operationStatuses/08584644544174719600?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -163,18 +238,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1239007 + content_length: 22 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=3ZHNboMwEISfBZ9TCZcqqrgBNkpDbPD6p6K3iNKKgIzUEkGJePdCCS%2fR2%2b7MtyuN5oaK1naVvZ67qrWqrUv7jfwbooFUWj4uoy2HLjt%2fddVCJOUP8hF2nh2u8oGN%2bQPa%2fRHQ9puHvb0DdRwy8tkL%2fUaYFk%2bchCGQhgjXxExTl6uQCGUirt4%2fAPP0JN0%2bJXrmioGPec%2bJdufvLr%2fMtxGmYEKmcHMAAxIMz4w5klmTCoexbuAIhu1ZDS9wKTwxmlzoLhG1UWja3bP8iyivdKnFQ769Ns0O6USmWh22NQp4QIKluk1Z%2bbnGlY8oVxCctNyExaca0oyuyjT9Ag%3d%3d","value":[]}' + body: '{"status":"Succeeded"}' headers: Cache-Control: - no-cache Content-Length: - - "1239007" + - "22" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:17:45 GMT + - Fri, 17 Jan 2025 22:25:12 GMT Expires: - "-1" Pragma: @@ -186,21 +261,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 93b9e55c-2c4c-4f6d-9857-9201af2e6dab + - 3789dc0f-8281-4025-bb38-89fbc0c647ec X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 93b9e55c-2c4c-4f6d-9857-9201af2e6dab + - 3789dc0f-8281-4025-bb38-89fbc0c647ec X-Ms-Routing-Request-Id: - - WESTUS2:20241107T231745Z:93b9e55c-2c4c-4f6d-9857-9201af2e6dab + - WESTUS2:20250117T222513Z:3789dc0f-8281-4025-bb38-89fbc0c647ec X-Msedge-Ref: - - 'Ref A: 0349F4D95C4F40119DCA11A5E7087D47 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:17:40Z' + - 'Ref A: 9B908C085238435E9AB708F154F5770E Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:25:12Z' status: 200 OK code: 200 - duration: 5.161879554s - - id: 3 + duration: 287.356784ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -220,7 +295,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=3ZHNboMwEISfBZ9TCZcqqrgBNkpDbPD6p6K3iNKKgIzUEkGJePdCCS%2fR2%2b7MtyuN5oaK1naVvZ67qrWqrUv7jfwbooFUWj4uoy2HLjt%2fddVCJOUP8hF2nh2u8oGN%2bQPa%2fRHQ9puHvb0DdRwy8tkL%2fUaYFk%2bchCGQhgjXxExTl6uQCGUirt4%2fAPP0JN0%2bJXrmioGPec%2bJdufvLr%2fMtxGmYEKmcHMAAxIMz4w5klmTCoexbuAIhu1ZDS9wKTwxmlzoLhG1UWja3bP8iyivdKnFQ769Ns0O6USmWh22NQp4QIKluk1Z%2bbnGlY8oVxCctNyExaca0oyuyjT9Ag%3d%3d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l9ec8e0-1737152443?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -228,18 +303,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1687773 + content_length: 6284 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=ZVBda4MwFP0t5tlBbGUM36I3MmlzU2PS0b2VzokoETaLzuJ%2f3zLrXvZ4vrj3nBu5dLav7fXc153VXVPaTxLdCGeFNsWGRPbatv4druiFO9HZbDn2h%2fNHX7v0rvwiEQm8Jw%2f1aRTT6YH4vw7VDasWUOqpJo0FVENuXkGYPESIYwUt5PSYCsMp6hhyfUxQv72rAOW%2boIME8%2bO7jAjZgFMVSmhCqast1gEWkD2KJh9xEoPQ1UZARsnsE%2fdmwlErtnffLk1SxTDhd3oll0LbFZpdIY1%2bXmHCkAFzi6zM4v9b598Rp3Oj5IEviXn%2bBg%3d%3d","value":[]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l9ec8e0-1737152443","name":"azdtest-l9ec8e0-1737152443","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0","azd-provision-param-hash":"5078b0222ae3b911466620e07caac5df333846f9302ccf48f5425f919d2b93fd"},"properties":{"templateHash":"7799194296368964685","parameters":{"environmentName":{"type":"String","value":"azdtest-l9ec8e0"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"62661785-adcf-4117-b9d0-22b3aa2b4ebf"},"goversion":{"type":"String","value":"1.22"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-17T22:24:56.7441448Z","duration":"PT3M46.7563092S","correlationId":"9ba108b9-2a4e-4013-92a9-70f87d052c91","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l9ec8e0"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l9ec8e0"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/storage","resourceType":"Microsoft.Resources/deployments","resourceName":"storage"}],"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-lsxjxxqmwlwys"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-lsxjxxqmwlwys"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrlsxjxxqmwlwys.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acrlsxjxxqmwlwys"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-lsxjxxqmwlwys"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"kindmushroom-e5145b77.eastus2.azurecontainerapps.io"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storagelsxjxxqmwlwys.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storagelsxjxxqmwlwys.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storagelsxjxxqmwlwys.table.core.windows.net/"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/8ce016b1-9caf-533a-aedd-7b26b1744d62"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ContainerRegistry/registries/acrlsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ContainerRegistry/registries/acrlsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/3bae0392-4f0c-5dbb-8852-0bea6a880238"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.OperationalInsights/workspaces/law-lsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/69a275a2-c893-532c-b813-19ce25202057"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/c25fd737-9232-5f2f-9190-8100cb9c056b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/ca8eed46-c023-55b7-9acd-f361e8f31f51"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "1687773" + - "6284" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:17:48 GMT + - Fri, 17 Jan 2025 22:25:13 GMT Expires: - "-1" Pragma: @@ -251,21 +326,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 86d8cd4a-4d97-4c75-aef1-9629aeced028 + - 20eca8e5-79cb-4a00-8cda-af33df8c95cc X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 86d8cd4a-4d97-4c75-aef1-9629aeced028 + - 20eca8e5-79cb-4a00-8cda-af33df8c95cc X-Ms-Routing-Request-Id: - - WESTUS2:20241107T231748Z:86d8cd4a-4d97-4c75-aef1-9629aeced028 + - WESTUS2:20250117T222513Z:20eca8e5-79cb-4a00-8cda-af33df8c95cc X-Msedge-Ref: - - 'Ref A: 110A3C4781874BD8B18E15FD24B49A61 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:17:45Z' + - 'Ref A: 28F83A8F755C4D238862ED4DFB9EDB72 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:25:13Z' status: 200 OK code: 200 - duration: 3.381558409s - - id: 4 + duration: 516.638296ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -279,13 +354,15 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZVBda4MwFP0t5tlBbGUM36I3MmlzU2PS0b2VzokoETaLzuJ%2f3zLrXvZ4vrj3nBu5dLav7fXc153VXVPaTxLdCGeFNsWGRPbatv4druiFO9HZbDn2h%2fNHX7v0rvwiEQm8Jw%2f1aRTT6YH4vw7VDasWUOqpJo0FVENuXkGYPESIYwUt5PSYCsMp6hhyfUxQv72rAOW%2boIME8%2bO7jAjZgFMVSmhCqast1gEWkD2KJh9xEoPQ1UZARsnsE%2fdmwlErtnffLk1SxTDhd3oll0LbFZpdIY1%2bXmHCkAFzi6zM4v9b598Rp3Oj5IEviXn%2bBg%3d%3d + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l9ec8e0%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -293,18 +370,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 45429 + content_length: 288 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=ZVBdT4NAEPwtvWdMODGN6RtwR2rpHdzeh8G3BtFQCCRKA9Lw3%2bVaMZq%2b7czO7GT2jPK26crmdOjKtlFtVTSfaHNGz1QqLe3UFEOXHj660gri4gttEF49rrjKBjZmd8i5KKDtlx321iuoooCR917oF8K0eOAkCIDURLgmYpq6XAVEKBNy9foGmCd76fYJ0bMuH%2fiY9Zxod77u8uPsDTEFEzCF6y0YkGB4asyOzJxUOIh0DTswbM0qeIJj7onRZEJ3saiMQpODZKLVNqRcgb%2b3lZpTXTuI%2brbg%2fX%2b4INv%2bxhGBz0P6Q%2f9VauktUMeXtAWGPveJb6MW5vrX39ibELunGpKUXh3T9A0%3d","value":[]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","name":"rg-azdtest-l9ec8e0","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "45429" + - "288" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:17:49 GMT + - Fri, 17 Jan 2025 22:25:13 GMT Expires: - "-1" Pragma: @@ -316,21 +393,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 88ab1a1e-102c-4386-aa10-8c1379f19b3a + - 23c602e9-6b20-4fda-a89e-0af5ff7ac0bf X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 88ab1a1e-102c-4386-aa10-8c1379f19b3a + - 23c602e9-6b20-4fda-a89e-0af5ff7ac0bf X-Ms-Routing-Request-Id: - - WESTUS2:20241107T231749Z:88ab1a1e-102c-4386-aa10-8c1379f19b3a + - WESTUS2:20250117T222513Z:23c602e9-6b20-4fda-a89e-0af5ff7ac0bf X-Msedge-Ref: - - 'Ref A: 7ABE936F79E74606A0CFA881D04CB042 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:17:49Z' + - 'Ref A: 1E7BEB894F0E4F968FC4EA3F95E83501 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:25:13Z' status: 200 OK code: 200 - duration: 824.30985ms - - id: 5 + duration: 66.309245ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -344,13 +421,15 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZVBdT4NAEPwtvWdMODGN6RtwR2rpHdzeh8G3BtFQCCRKA9Lw3%2bVaMZq%2b7czO7GT2jPK26crmdOjKtlFtVTSfaHNGz1QqLe3UFEOXHj660gri4gttEF49rrjKBjZmd8i5KKDtlx321iuoooCR917oF8K0eOAkCIDURLgmYpq6XAVEKBNy9foGmCd76fYJ0bMuH%2fiY9Zxod77u8uPsDTEFEzCF6y0YkGB4asyOzJxUOIh0DTswbM0qeIJj7onRZEJ3saiMQpODZKLVNqRcgb%2b3lZpTXTuI%2brbg%2fX%2b4INv%2bxhGBz0P6Q%2f9VauktUMeXtAWGPveJb6MW5vrX39ibELunGpKUXh3T9A0%3d + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l9ec8e0%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -358,18 +437,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4787 + content_length: 288 uncompressed: false - body: '{"value":[]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","name":"rg-azdtest-l9ec8e0","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "4787" + - "288" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:17:50 GMT + - Fri, 17 Jan 2025 22:25:13 GMT Expires: - "-1" Pragma: @@ -381,32 +460,91 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5fa98a2f-ba70-4f4e-bb08-26869da18969 + - 3369a11c-7c18-4bd1-b2f3-367f99d57f16 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 5fa98a2f-ba70-4f4e-bb08-26869da18969 + - 3369a11c-7c18-4bd1-b2f3-367f99d57f16 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T231750Z:5fa98a2f-ba70-4f4e-bb08-26869da18969 + - WESTUS2:20250117T222513Z:3369a11c-7c18-4bd1-b2f3-367f99d57f16 X-Msedge-Ref: - - 'Ref A: ADDB93FDDED94E90913CB08ABDF21B0E Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:17:49Z' + - 'Ref A: 41A93B1771E446CBAB17627A59878F6B Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:25:13Z' status: 200 OK code: 200 - duration: 841.16095ms - - id: 6 + duration: 49.468438ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: -1 + transfer_encoding: + - chunked + trailer: {} + host: acrlsxjxxqmwlwys.azurecr.io + remote_addr: "" + request_uri: "" + body: access_token=SANITIZED&grant_type=access_token&service=acrlsxjxxqmwlwys.azurecr.io + form: + access_token: + - SANITIZED + grant_type: + - access_token + service: + - acrlsxjxxqmwlwys.azurecr.io + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Type: + - application/x-www-form-urlencoded + User-Agent: + - azsdk-go-azd-acr/0.0.0-dev.0 (commit 0000000000000000000000000000000000000000) (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://acrlsxjxxqmwlwys.azurecr.io:443/oauth2/exchange + method: POST + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: + - chunked + trailer: {} + content_length: -1 + uncompressed: false + body: '{"refresh_token":"SANITIZED"}' + headers: + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 17 Jan 2025 22:25:14 GMT + Server: + - AzureContainerRegistry + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Ms-Correlation-Request-Id: + - fb37be93-d0fd-4f70-8848-51836855893d + X-Ms-Ratelimit-Remaining-Calls-Per-Second: + - "166.65" + status: 200 OK + code: 200 + duration: 437.377889ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 23808 + content_length: 1530 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-lfa372e"},"goversion":{"value":"1.22"},"location":{"value":"eastus2"},"principalId":{"value":"62661785-adcf-4117-b9d0-22b3aa2b4ebf"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"10347569819010401111"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the environment that can be used as part of naming resource convention, the name of the resource group for your application will use this name, prefixed with rg-"}},"location":{"type":"string","minLength":1,"metadata":{"description":"The location used for all deployed resources"}},"principalId":{"type":"string","defaultValue":"","metadata":{"description":"Id of the user or app to assign application roles"}},"goversion":{"type":"string","defaultValue":"1.22","metadata":{"azd":{"type":"needForDeploy","config":{}}}}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"}},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2022-09-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"},{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-01","name":"resources","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"location":{"value":"[parameters(''location'')]"},"tags":{"value":"[variables(''tags'')]"},"principalId":{"value":"[parameters(''principalId'')]"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"3054607656997567302"}},"parameters":{"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":"The location used for all deployed resources"}},"principalId":{"type":"string","defaultValue":"","metadata":{"description":"Id of the user or app to assign application roles"}},"tags":{"type":"object","defaultValue":{},"metadata":{"description":"Tags that will be applied to all resources"}}},"variables":{"resourceToken":"[uniqueString(resourceGroup().id)]"},"resources":[{"type":"Microsoft.App/managedEnvironments/dotNetComponents","apiVersion":"2024-02-02-preview","name":"[format(''{0}/{1}'', format(''cae-{0}'', variables(''resourceToken'')), ''aspire-dashboard'')]","properties":{"componentType":"AspireDashboard"},"dependsOn":["[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.ManagedIdentity/userAssignedIdentities","apiVersion":"2023-01-31","name":"[format(''mi-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","tags":"[parameters(''tags'')]"},{"type":"Microsoft.ContainerRegistry/registries","apiVersion":"2023-07-01","name":"[replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')]","location":"[parameters(''location'')]","sku":{"name":"Basic"},"tags":"[parameters(''tags'')]"},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.ContainerRegistry/registries/{0}'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', ''''))]","name":"[guid(resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')), resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]","principalType":"ServicePrincipal","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''7f951dda-4ed3-4680-a7ca-43fe172d538d'')]"},"dependsOn":["[resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', ''''))]","[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.OperationalInsights/workspaces","apiVersion":"2022-10-01","name":"[format(''law-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","properties":{"sku":{"name":"PerGB2018"}},"tags":"[parameters(''tags'')]"},{"type":"Microsoft.App/managedEnvironments","apiVersion":"2024-02-02-preview","name":"[format(''cae-{0}'', variables(''resourceToken''))]","location":"[parameters(''location'')]","properties":{"workloadProfiles":[{"workloadProfileType":"Consumption","name":"consumption"}],"appLogsConfiguration":{"destination":"log-analytics","logAnalyticsConfiguration":{"customerId":"[reference(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken''))), ''2022-10-01'').customerId]","sharedKey":"[listKeys(resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken''))), ''2022-10-01'').primarySharedKey]"}}},"tags":"[parameters(''tags'')]","dependsOn":["[resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.App/managedEnvironments/{0}'', format(''cae-{0}'', variables(''resourceToken'')))]","name":"[guid(resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken''))), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''b24988ac-6180-42a0-ab88-20f7382dd24c''))]","properties":{"principalId":"[parameters(''principalId'')]","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''b24988ac-6180-42a0-ab88-20f7382dd24c'')]"},"dependsOn":["[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.KeyVault/vaults","apiVersion":"2023-07-01","name":"[replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', '''')]","location":"[parameters(''location'')]","properties":{"sku":{"name":"standard","family":"A"},"tenantId":"[subscription().tenantId]","enableRbacAuthorization":true}},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.KeyVault/vaults/{0}'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', ''''))]","name":"[guid(resourceId(''Microsoft.KeyVault/vaults'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', '''')), resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''00482a5a-887f-4fb3-b363-3b7fe8e74483''))]","properties":{"principalId":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]","principalType":"ServicePrincipal","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''00482a5a-887f-4fb3-b363-3b7fe8e74483'')]"},"dependsOn":["[resourceId(''Microsoft.KeyVault/vaults'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', ''''))]","[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.KeyVault/vaults/{0}'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', ''''))]","name":"[guid(resourceId(''Microsoft.KeyVault/vaults'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', '''')), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''4633458b-17de-408a-b874-0445c86b69e6''))]","properties":{"principalId":"[parameters(''principalId'')]","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''4633458b-17de-408a-b874-0445c86b69e6'')]"},"dependsOn":["[resourceId(''Microsoft.KeyVault/vaults'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', ''''))]"]}],"outputs":{"MANAGED_IDENTITY_CLIENT_ID":{"type":"string","value":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').clientId]"},"MANAGED_IDENTITY_NAME":{"type":"string","value":"[format(''mi-{0}'', variables(''resourceToken''))]"},"MANAGED_IDENTITY_PRINCIPAL_ID":{"type":"string","value":"[reference(resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken''))), ''2023-01-31'').principalId]"},"AZURE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"string","value":"[format(''law-{0}'', variables(''resourceToken''))]"},"AZURE_LOG_ANALYTICS_WORKSPACE_ID":{"type":"string","value":"[resourceId(''Microsoft.OperationalInsights/workspaces'', format(''law-{0}'', variables(''resourceToken'')))]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(resourceId(''Microsoft.ContainerRegistry/registries'', replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')), ''2023-07-01'').loginServer]"},"AZURE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"string","value":"[resourceId(''Microsoft.ManagedIdentity/userAssignedIdentities'', format(''mi-{0}'', variables(''resourceToken'')))]"},"AZURE_CONTAINER_REGISTRY_NAME":{"type":"string","value":"[replace(format(''acr-{0}'', variables(''resourceToken'')), ''-'', '''')]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"string","value":"[format(''cae-{0}'', variables(''resourceToken''))]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"string","value":"[resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken'')))]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"string","value":"[reference(resourceId(''Microsoft.App/managedEnvironments'', format(''cae-{0}'', variables(''resourceToken''))), ''2024-02-02-preview'').defaultDomain]"},"SERVICE_BINDING_KVF2EDECB5_ENDPOINT":{"type":"string","value":"[reference(resourceId(''Microsoft.KeyVault/vaults'', replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', '''')), ''2023-07-01'').vaultUri]"},"SERVICE_BINDING_KVF2EDECB5_NAME":{"type":"string","value":"[replace(format(''kvf2edecb5-{0}'', variables(''resourceToken'')), ''-'', '''')]"}}}},"dependsOn":["[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]},{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-01","name":"cosmos","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"keyVaultName":{"value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.SERVICE_BINDING_KVF2EDECB5_NAME.value]"},"location":{"value":"[parameters(''location'')]"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"12279792906132603445"}},"parameters":{"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":"The location for the resource(s) to be deployed."}},"keyVaultName":{"type":"string"}},"resources":[{"type":"Microsoft.DocumentDB/databaseAccounts","apiVersion":"2024-08-15","name":"[take(format(''cosmos-{0}'', uniqueString(resourceGroup().id)), 44)]","location":"[parameters(''location'')]","properties":{"locations":[{"locationName":"[parameters(''location'')]","failoverPriority":0}],"consistencyPolicy":{"defaultConsistencyLevel":"Session"},"databaseAccountOfferType":"Standard"},"kind":"GlobalDocumentDB","tags":{"aspire-resource-name":"cosmos"}},{"type":"Microsoft.DocumentDB/databaseAccounts/sqlDatabases","apiVersion":"2024-08-15","name":"[format(''{0}/{1}'', take(format(''cosmos-{0}'', uniqueString(resourceGroup().id)), 44), ''db3'')]","location":"[parameters(''location'')]","properties":{"resource":{"id":"db3"}},"dependsOn":["[resourceId(''Microsoft.DocumentDB/databaseAccounts'', take(format(''cosmos-{0}'', uniqueString(resourceGroup().id)), 44))]"]},{"type":"Microsoft.KeyVault/vaults/secrets","apiVersion":"2023-07-01","name":"[format(''{0}/{1}'', parameters(''keyVaultName''), ''connectionString'')]","properties":{"value":"[format(''AccountEndpoint={0};AccountKey={1}'', reference(resourceId(''Microsoft.DocumentDB/databaseAccounts'', take(format(''cosmos-{0}'', uniqueString(resourceGroup().id)), 44)), ''2024-08-15'').documentEndpoint, listKeys(resourceId(''Microsoft.DocumentDB/databaseAccounts'', take(format(''cosmos-{0}'', uniqueString(resourceGroup().id)), 44)), ''2024-08-15'').primaryMasterKey)]"},"dependsOn":["[resourceId(''Microsoft.DocumentDB/databaseAccounts'', take(format(''cosmos-{0}'', uniqueString(resourceGroup().id)), 44))]"]}]}},"dependsOn":["[extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources'')]","[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]},{"type":"Microsoft.Resources/deployments","apiVersion":"2022-09-01","name":"storage","resourceGroup":"[format(''rg-{0}'', parameters(''environmentName''))]","properties":{"expressionEvaluationOptions":{"scope":"inner"},"mode":"Incremental","parameters":{"location":{"value":"[parameters(''location'')]"},"principalId":{"value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.MANAGED_IDENTITY_PRINCIPAL_ID.value]"},"principalType":{"value":"ServicePrincipal"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.29.47.4906","templateHash":"10680378566442488335"}},"parameters":{"location":{"type":"string","defaultValue":"[resourceGroup().location]","metadata":{"description":"The location for the resource(s) to be deployed."}},"principalId":{"type":"string"},"principalType":{"type":"string"}},"resources":[{"type":"Microsoft.Storage/storageAccounts","apiVersion":"2024-01-01","name":"[take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)]","kind":"StorageV2","location":"[parameters(''location'')]","sku":{"name":"Standard_GRS"},"properties":{"accessTier":"Hot","allowSharedKeyAccess":false,"minimumTlsVersion":"TLS1_2","networkAcls":{"defaultAction":"Allow"}},"tags":{"aspire-resource-name":"storage"}},{"type":"Microsoft.Storage/storageAccounts/blobServices","apiVersion":"2024-01-01","name":"[format(''{0}/{1}'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24), ''default'')]","dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.Storage/storageAccounts/{0}'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''ba92f5b4-2d11-453d-a403-e96b0029c9fe''))]","properties":{"principalId":"[parameters(''principalId'')]","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''ba92f5b4-2d11-453d-a403-e96b0029c9fe'')]","principalType":"[parameters(''principalType'')]"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.Storage/storageAccounts/{0}'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3''))]","properties":{"principalId":"[parameters(''principalId'')]","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''0a9a7e1f-b9d0-4cc4-a60d-0319b160aaa3'')]","principalType":"[parameters(''principalType'')]"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))]"]},{"type":"Microsoft.Authorization/roleAssignments","apiVersion":"2022-04-01","scope":"[format(''Microsoft.Storage/storageAccounts/{0}'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))]","name":"[guid(resourceId(''Microsoft.Storage/storageAccounts'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)), parameters(''principalId''), subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''974c5e8b-45b9-4653-ba55-5f855dd0fb88''))]","properties":{"principalId":"[parameters(''principalId'')]","roleDefinitionId":"[subscriptionResourceId(''Microsoft.Authorization/roleDefinitions'', ''974c5e8b-45b9-4653-ba55-5f855dd0fb88'')]","principalType":"[parameters(''principalType'')]"},"dependsOn":["[resourceId(''Microsoft.Storage/storageAccounts'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24))]"]}],"outputs":{"blobEndpoint":{"type":"string","value":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)), ''2024-01-01'').primaryEndpoints.blob]"},"queueEndpoint":{"type":"string","value":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)), ''2024-01-01'').primaryEndpoints.queue]"},"tableEndpoint":{"type":"string","value":"[reference(resourceId(''Microsoft.Storage/storageAccounts'', take(format(''storage{0}'', uniqueString(resourceGroup().id)), 24)), ''2024-01-01'').primaryEndpoints.table]"}}}},"dependsOn":["[extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources'')]","[subscriptionResourceId(''Microsoft.Resources/resourceGroups'', format(''rg-{0}'', parameters(''environmentName'')))]"]}],"outputs":{"MANAGED_IDENTITY_CLIENT_ID":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.MANAGED_IDENTITY_CLIENT_ID.value]"},"MANAGED_IDENTITY_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.MANAGED_IDENTITY_NAME.value]"},"AZURE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.AZURE_LOG_ANALYTICS_WORKSPACE_NAME.value]"},"AZURE_CONTAINER_REGISTRY_ENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.AZURE_CONTAINER_REGISTRY_ENDPOINT.value]"},"AZURE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.AZURE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID.value]"},"AZURE_CONTAINER_REGISTRY_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.AZURE_CONTAINER_REGISTRY_NAME.value]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.AZURE_CONTAINER_APPS_ENVIRONMENT_NAME.value]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.AZURE_CONTAINER_APPS_ENVIRONMENT_ID.value]"},"AZURE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.AZURE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN.value]"},"SERVICE_BINDING_KVF2EDECB5_ENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.SERVICE_BINDING_KVF2EDECB5_ENDPOINT.value]"},"SERVICE_BINDING_KVF2EDECB5_NAME":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''resources''), ''2022-09-01'').outputs.SERVICE_BINDING_KVF2EDECB5_NAME.value]"},"STORAGE_BLOBENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''storage''), ''2022-09-01'').outputs.blobEndpoint.value]"},"STORAGE_QUEUEENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''storage''), ''2022-09-01'').outputs.queueEndpoint.value]"},"STORAGE_TABLEENDPOINT":{"type":"string","value":"[reference(extensionResourceId(format(''/subscriptions/{0}/resourceGroups/{1}'', subscription().subscriptionId, format(''rg-{0}'', parameters(''environmentName''))), ''Microsoft.Resources/deployments'', ''storage''), ''2022-09-01'').outputs.tableEndpoint.value]"}}}},"tags":{"azd-env-name":"azdtest-lfa372e","azd-provision-param-hash":"15a2ed734364e02083b6013a24057945563929d961c974ebdcbb7d6d90bdbe31"}}' + body: '{"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{}}},"location":"eastus2","properties":{"configuration":{"activeRevisionsMode":"single","ingress":{"allowInsecure":true,"external":false,"targetPort":8080,"transport":"http"},"registries":[{"identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys","server":"acrlsxjxxqmwlwys.azurecr.io"}],"runtime":{"dotnet":{"autoConfigureDataProtection":true}}},"environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","template":{"containers":[{"env":[{"name":"AZURE_CLIENT_ID","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"image":"acrlsxjxxqmwlwys.azurecr.io/aspire-azd-tests/apiservice-azdtest-l9ec8e0:azd-deploy-1737152443","name":"apiservice"}],"scale":{"minReplicas":1}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"}}' form: {} headers: Accept: @@ -416,12 +554,12 @@ interactions: Authorization: - SANITIZED Content-Length: - - "23808" + - "1530" Content-Type: - application/json User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lfa372e-1731021426?api-version=2021-04-01 + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/apiservice?api-version=2024-02-02-preview method: PUT response: proto: HTTP/2.0 @@ -429,48 +567,52 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3227 + content_length: 4393 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lfa372e-1731021426","name":"azdtest-lfa372e-1731021426","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e","azd-provision-param-hash":"15a2ed734364e02083b6013a24057945563929d961c974ebdcbb7d6d90bdbe31"},"properties":{"templateHash":"10347569819010401111","parameters":{"environmentName":{"type":"String","value":"azdtest-lfa372e"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"62661785-adcf-4117-b9d0-22b3aa2b4ebf"},"goversion":{"type":"String","value":"1.22"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-07T23:17:53.1669028Z","duration":"PT0.0005124S","correlationId":"fb545d4c-36ab-4a63-94eb-afca495ffcc7","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-lfa372e"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-lfa372e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/cosmos","resourceType":"Microsoft.Resources/deployments","resourceName":"cosmos"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-lfa372e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/storage","resourceType":"Microsoft.Resources/deployments","resourceName":"storage"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerapps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:25:23.7820886Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:25:23.7820886Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","20.122.82.135","172.177.177.115","20.122.82.26","20.122.82.51","20.122.81.165","20.122.82.63","20.122.81.203","172.177.180.194","20.122.81.254","20.122.82.103","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","135.224.183.166"],"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":false,"targetPort":8080,"exposedPort":null,"transport":"Http","traffic":null,"customDomains":null,"allowInsecure":true,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrlsxjxxqmwlwys.azurecr.io","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acrlsxjxxqmwlwys.azurecr.io/aspire-azd-tests/apiservice-azdtest-l9ec8e0:azd-deploy-1737152443","imageType":"CloudBuild","name":"apiservice","env":[{"name":"AZURE_CLIENT_ID","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":null,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}}}' headers: + Api-Supported-Versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lfa372e-1731021426/operationStatuses/08584705854142961783?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2887d607-2795-4a5b-a77b-5ac222a5b7a4?api-version=2024-02-02-preview&azureAsyncOperation=true&t=638727495250164659&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=iYC7O5k4IN6LexGd_BbJs45Tsv2Vpr9K7LHg3WYT06MCp_fAoBzNG6VoqUJXJEjyNhHK31EgulzVlwteGZ4CJvOpYzaLzxRKc6tn5RWonNfGUweBu75SsdFhyYc8hI6gzlEefSWz3viyRyDOVBYMj8QVR0CLrdg6i-xaGvI8xT5zOIANW6liIYzJU_n1NJRGRjN7kH0A9RZwLvGk858IAks5JpYq4YLGpVDEJkjQBRjPY7sTDht3ngenbmnoOBuOwh6A_IQLfTd5IOQi6R4USf-kRpM1ciP_HI1BPL-Cmgu6FZFyYSfOcXB5iEyF3KudlN0vQkoVKJL94dkhwdyFPw&h=11etpxNC0gdnOgBcyMpiFt9ujDPOkyu2tP2Bp9h1rhY Cache-Control: - no-cache Content-Length: - - "3227" + - "4393" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:17:54 GMT + - Fri, 17 Jan 2025 22:25:24 GMT Expires: - "-1" Pragma: - no-cache + Retry-After: + - "0" Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff + X-Ms-Async-Operation-Timeout: + - PT15M X-Ms-Correlation-Request-Id: - - fb545d4c-36ab-4a63-94eb-afca495ffcc7 - X-Ms-Deployment-Engine-Version: - - 1.158.0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" + - d5924b84-70a5-496a-afe3-080413178297 + X-Ms-Ratelimit-Remaining-Subscription-Resource-Requests: + - "699" X-Ms-Request-Id: - - fb545d4c-36ab-4a63-94eb-afca495ffcc7 + - d5924b84-70a5-496a-afe3-080413178297 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T231754Z:fb545d4c-36ab-4a63-94eb-afca495ffcc7 + - WESTUS2:20250117T222525Z:d5924b84-70a5-496a-afe3-080413178297 X-Msedge-Ref: - - 'Ref A: 5ED02981F94A4895A190BEBA28D03A78 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:17:50Z' + - 'Ref A: 9F1ED6EFE208466998A219C20474FF13 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:25:22Z' + X-Powered-By: + - ASP.NET status: 201 Created code: 201 - duration: 3.564028621s - - id: 7 + duration: 2.375708071s + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -489,8 +631,8 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lfa372e-1731021426/operationStatuses/08584705854142961783?api-version=2021-04-01 + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2887d607-2795-4a5b-a77b-5ac222a5b7a4?api-version=2024-02-02-preview&azureAsyncOperation=true&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&h=11etpxNC0gdnOgBcyMpiFt9ujDPOkyu2tP2Bp9h1rhY&s=iYC7O5k4IN6LexGd_BbJs45Tsv2Vpr9K7LHg3WYT06MCp_fAoBzNG6VoqUJXJEjyNhHK31EgulzVlwteGZ4CJvOpYzaLzxRKc6tn5RWonNfGUweBu75SsdFhyYc8hI6gzlEefSWz3viyRyDOVBYMj8QVR0CLrdg6i-xaGvI8xT5zOIANW6liIYzJU_n1NJRGRjN7kH0A9RZwLvGk858IAks5JpYq4YLGpVDEJkjQBRjPY7sTDht3ngenbmnoOBuOwh6A_IQLfTd5IOQi6R4USf-kRpM1ciP_HI1BPL-Cmgu6FZFyYSfOcXB5iEyF3KudlN0vQkoVKJL94dkhwdyFPw&t=638727495250164659 method: GET response: proto: HTTP/2.0 @@ -498,44 +640,50 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 22 + content_length: 278 uncompressed: false - body: '{"status":"Succeeded"}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/2887d607-2795-4a5b-a77b-5ac222a5b7a4","name":"2887d607-2795-4a5b-a77b-5ac222a5b7a4","status":"Succeeded","startTime":"2025-01-17T22:25:24.5208536"}' headers: + Api-Supported-Versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "22" + - "278" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:23:57 GMT + - Fri, 17 Jan 2025 22:25:39 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - max-age=31536000; includeSubDomains + Vary: + - Accept-Encoding X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2f6a4702-49c4-461b-b95c-0b18c8de2ace + - 23c2917d-4178-4340-8344-0525fef8678c X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 2f6a4702-49c4-461b-b95c-0b18c8de2ace + - 23c2917d-4178-4340-8344-0525fef8678c X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232357Z:2f6a4702-49c4-461b-b95c-0b18c8de2ace + - WESTUS2:20250117T222540Z:23c2917d-4178-4340-8344-0525fef8678c X-Msedge-Ref: - - 'Ref A: 25F1BE2E2F864744943401ECBBAF4E47 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:23:57Z' + - 'Ref A: FD8AFD5DD0764287B5F14CD696F95A94 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:25:40Z' + X-Powered-By: + - ASP.NET status: 200 OK code: 200 - duration: 313.795391ms - - id: 8 + duration: 372.516961ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -554,8 +702,8 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lfa372e-1731021426?api-version=2021-04-01 + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/apiservice?api-version=2024-02-02-preview method: GET response: proto: HTTP/2.0 @@ -563,44 +711,50 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 8535 + content_length: 4997 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lfa372e-1731021426","name":"azdtest-lfa372e-1731021426","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e","azd-provision-param-hash":"15a2ed734364e02083b6013a24057945563929d961c974ebdcbb7d6d90bdbe31"},"properties":{"templateHash":"10347569819010401111","parameters":{"environmentName":{"type":"String","value":"azdtest-lfa372e"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"62661785-adcf-4117-b9d0-22b3aa2b4ebf"},"goversion":{"type":"String","value":"1.22"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-07T23:23:43.105272Z","duration":"PT5M49.9388816S","correlationId":"fb545d4c-36ab-4a63-94eb-afca495ffcc7","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-lfa372e"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-lfa372e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/cosmos","resourceType":"Microsoft.Resources/deployments","resourceName":"cosmos"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-lfa372e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/storage","resourceType":"Microsoft.Resources/deployments","resourceName":"storage"}],"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-gj2m4tcideyiu"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-gj2m4tcideyiu"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrgj2m4tcideyiu.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acrgj2m4tcideyiu"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-gj2m4tcideyiu"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"livelyisland-b8e736e6.eastus2.azurecontainerapps.io"},"servicE_BINDING_KVF2EDECB5_ENDPOINT":{"type":"String","value":"https://kvf2edecb5gj2m4tcideyiu.vault.azure.net/"},"servicE_BINDING_KVF2EDECB5_NAME":{"type":"String","value":"kvf2edecb5gj2m4tcideyiu"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storagegj2m4tcideyiu.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storagegj2m4tcideyiu.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storagegj2m4tcideyiu.table.core.windows.net/"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/19305341-30ce-5458-9fbe-f4360532fe40"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ContainerRegistry/registries/acrgj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ContainerRegistry/registries/acrgj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/8dfc28cd-f974-54ef-8d43-bdd3c46eaa32"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-gj2m4tcideyiu/sqlDatabases/db3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/348a7c33-1b1f-5bd6-8d16-3c9dc72238fe"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/6a29dbf1-ed9f-5df4-b15e-2bf1ce4c4927"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu/secrets/connectionString"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.OperationalInsights/workspaces/law-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/8ba3fa54-1c85-595d-acca-dc084c613c4f"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/a0691050-95f9-50c3-9c4d-cbe9b5e98488"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/ad5d2df9-e45e-581c-879d-0a2163f80cee"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerapps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:25:23.7820886","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:25:23.7820886"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","20.122.82.135","172.177.177.115","20.122.82.26","20.122.82.51","20.122.81.165","20.122.82.63","20.122.81.203","172.177.180.194","20.122.81.254","20.122.82.103","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","135.224.183.166"],"latestRevisionName":"apiservice--6v0p6um","latestReadyRevisionName":"apiservice--6v0p6um","latestRevisionFqdn":"apiservice--6v0p6um.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"apiservice.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io","external":false,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":true,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrlsxjxxqmwlwys.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrlsxjxxqmwlwys.azurecr.io/aspire-azd-tests/apiservice-azdtest-l9ec8e0:azd-deploy-1737152443","imageType":"ContainerImage","name":"apiservice","env":[{"name":"AZURE_CLIENT_ID","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/containerApps/apiservice/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}}}' headers: + Api-Supported-Versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "8535" + - "4997" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:23:57 GMT + - Fri, 17 Jan 2025 22:25:40 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - max-age=31536000; includeSubDomains + Vary: + - Accept-Encoding X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c860e2ed-a00e-4372-8cde-415a1fb6da31 + - 89019ca9-df10-4940-9f0f-041a68c01f55 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - c860e2ed-a00e-4372-8cde-415a1fb6da31 + - 89019ca9-df10-4940-9f0f-041a68c01f55 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232358Z:c860e2ed-a00e-4372-8cde-415a1fb6da31 + - WESTUS2:20250117T222540Z:89019ca9-df10-4940-9f0f-041a68c01f55 X-Msedge-Ref: - - 'Ref A: 0C57C80E90AA410A90A36736E89EAE4F Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:23:57Z' + - 'Ref A: D77DCE4BD4D44280948B7A23925A6906 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:25:40Z' + X-Powered-By: + - ASP.NET status: 200 OK code: 200 - duration: 419.211249ms - - id: 9 + duration: 537.61074ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -621,8 +775,8 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lfa372e%27&api-version=2021-04-01 + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/apiservice?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -630,44 +784,50 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 4861 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","name":"rg-azdtest-lfa372e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerapps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:25:23.7820886","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:25:23.7820886"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","20.122.82.135","172.177.177.115","20.122.82.26","20.122.82.51","20.122.81.165","20.122.82.63","20.122.81.203","172.177.180.194","20.122.81.254","20.122.82.103","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","135.224.183.166"],"latestRevisionName":"apiservice--6v0p6um","latestReadyRevisionName":"apiservice--6v0p6um","latestRevisionFqdn":"apiservice--6v0p6um.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"apiservice.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io","external":false,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":true,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrlsxjxxqmwlwys.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrlsxjxxqmwlwys.azurecr.io/aspire-azd-tests/apiservice-azdtest-l9ec8e0:azd-deploy-1737152443","name":"apiservice","env":[{"name":"AZURE_CLIENT_ID","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/containerApps/apiservice/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}}}' headers: + Api-Supported-Versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "288" + - "4861" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:23:57 GMT + - Fri, 17 Jan 2025 22:25:40 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - max-age=31536000; includeSubDomains + Vary: + - Accept-Encoding X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9a50f48d-39a7-4cb0-ba76-c718deb2ad2a + - 4cb14e4c-eff0-4e04-9d65-dd85a8be78d7 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" + - "16498" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + - "1098" X-Ms-Request-Id: - - 9a50f48d-39a7-4cb0-ba76-c718deb2ad2a + - 4cb14e4c-eff0-4e04-9d65-dd85a8be78d7 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232358Z:9a50f48d-39a7-4cb0-ba76-c718deb2ad2a + - WESTUS2:20250117T222541Z:4cb14e4c-eff0-4e04-9d65-dd85a8be78d7 X-Msedge-Ref: - - 'Ref A: 8C1715BB1EDB4CA2A693F04934BF715A Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:23:58Z' + - 'Ref A: DDFF6FED0C494EC1B4C510B69769AED8 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:25:40Z' + X-Powered-By: + - ASP.NET status: 200 OK code: 200 - duration: 52.609279ms - - id: 10 + duration: 192.891627ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -689,7 +849,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lfa372e%27&api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l9ec8e0%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -699,7 +859,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","name":"rg-azdtest-lfa372e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","name":"rg-azdtest-l9ec8e0","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -708,7 +868,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:23:58 GMT + - Fri, 17 Jan 2025 22:25:40 GMT Expires: - "-1" Pragma: @@ -720,21 +880,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e43bd2c1-becb-4124-89b4-8c1fdc19d4b3 + - fe3eecab-5f19-4455-b2db-61e20c305971 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - e43bd2c1-becb-4124-89b4-8c1fdc19d4b3 + - fe3eecab-5f19-4455-b2db-61e20c305971 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232358Z:e43bd2c1-becb-4124-89b4-8c1fdc19d4b3 + - WESTUS2:20250117T222541Z:fe3eecab-5f19-4455-b2db-61e20c305971 X-Msedge-Ref: - - 'Ref A: 1AE75474D45D42FD980A8A4C69F190AD Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:23:58Z' + - 'Ref A: 9BEB4938666F4F33BAE5F949D58B9504 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:25:41Z' status: 200 OK code: 200 - duration: 71.975562ms - - id: 11 + duration: 73.487392ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -743,17 +903,17 @@ interactions: transfer_encoding: - chunked trailer: {} - host: acrgj2m4tcideyiu.azurecr.io + host: acrlsxjxxqmwlwys.azurecr.io remote_addr: "" request_uri: "" - body: access_token=SANITIZED&grant_type=access_token&service=acrgj2m4tcideyiu.azurecr.io + body: access_token=SANITIZED&grant_type=access_token&service=acrlsxjxxqmwlwys.azurecr.io form: access_token: - SANITIZED grant_type: - access_token service: - - acrgj2m4tcideyiu.azurecr.io + - acrlsxjxxqmwlwys.azurecr.io headers: Accept-Encoding: - gzip @@ -763,7 +923,7 @@ interactions: - application/x-www-form-urlencoded User-Agent: - azsdk-go-azd-acr/0.0.0-dev.0 (commit 0000000000000000000000000000000000000000) (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://acrgj2m4tcideyiu.azurecr.io:443/oauth2/exchange + url: https://acrlsxjxxqmwlwys.azurecr.io:443/oauth2/exchange method: POST response: proto: HTTP/1.1 @@ -781,30 +941,30 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:23:59 GMT + - Fri, 17 Jan 2025 22:25:41 GMT Server: - AzureContainerRegistry Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Ms-Correlation-Request-Id: - - 9bc8d2a0-0d46-4d6b-a847-ec169c1261d6 + - 32cbcb1f-3519-46ef-b2a9-bcd6427127e7 X-Ms-Ratelimit-Remaining-Calls-Per-Second: - - "166.65" + - "166.633333" status: 200 OK code: 200 - duration: 442.239209ms - - id: 12 + duration: 71.911818ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1530 + content_length: 1118 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{}}},"location":"eastus2","properties":{"configuration":{"activeRevisionsMode":"single","ingress":{"allowInsecure":true,"external":false,"targetPort":8080,"transport":"http"},"registries":[{"identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu","server":"acrgj2m4tcideyiu.azurecr.io"}],"runtime":{"dotnet":{"autoConfigureDataProtection":true}}},"environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","template":{"containers":[{"env":[{"name":"AZURE_CLIENT_ID","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"image":"acrgj2m4tcideyiu.azurecr.io/aspire-azd-tests/apiservice-azdtest-lfa372e:azd-deploy-1731021426","name":"apiservice"}],"scale":{"minReplicas":1}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"}}' + body: '{"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{}}},"location":"eastus2","properties":{"configuration":{"activeRevisionsMode":"single","ingress":{"allowInsecure":false,"external":false,"targetPort":6379,"transport":"tcp"},"registries":[{"identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys","server":"acrlsxjxxqmwlwys.azurecr.io"}],"runtime":{"dotnet":{"autoConfigureDataProtection":true}}},"environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","template":{"containers":[{"env":[{"name":"AZURE_CLIENT_ID","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"}],"image":"docker.io/library/redis:7.4","name":"pubsub"}],"scale":{"minReplicas":1}}},"tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"}}' form: {} headers: Accept: @@ -814,12 +974,12 @@ interactions: Authorization: - SANITIZED Content-Length: - - "1530" + - "1118" Content-Type: - application/json User-Agent: - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/apiservice?api-version=2024-02-02-preview + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/pubsub?api-version=2024-02-02-preview method: PUT response: proto: HTTP/2.0 @@ -827,22 +987,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3897 + content_length: 3973 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerapps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:24:09.7806272Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:24:09.7806272Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","48.214.27.226"],"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":false,"targetPort":8080,"exposedPort":null,"transport":"Http","traffic":null,"customDomains":null,"allowInsecure":true,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrgj2m4tcideyiu.azurecr.io","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acrgj2m4tcideyiu.azurecr.io/aspire-azd-tests/apiservice-azdtest-lfa372e:azd-deploy-1731021426","imageType":"CloudBuild","name":"apiservice","env":[{"name":"AZURE_CLIENT_ID","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":null,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerapps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:25:43.5742355Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:25:43.5742355Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","20.122.82.135","172.177.177.115","20.122.82.26","20.122.82.51","20.122.81.165","20.122.82.63","20.122.81.203","172.177.180.194","20.122.81.254","20.122.82.103","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","135.224.183.166"],"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":false,"targetPort":6379,"exposedPort":null,"transport":"Tcp","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrlsxjxxqmwlwys.azurecr.io","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"docker.io/library/redis:7.4","imageType":"CloudBuild","name":"pubsub","env":[{"name":"AZURE_CLIENT_ID","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"}]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":null,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}}}' headers: Api-Supported-Versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/c3e4de62-80f8-4973-ab19-49bf25c61532?api-version=2024-02-02-preview&azureAsyncOperation=true&t=638666186511556180&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=I9B9g8W1SiqlE2J4-478Zat78q-xXJIiZAWVeO3DlEEK7yNs2LHX-ZJqzghkTGPDalNO5QFXLpXVBlXHTMkS0XB1cSS11qZHburabBzX79vSIqEympt9v3IiUs4kGYFEUtjVK1LFc-MPYGG0k0i79VMRLdr8NB_hVc8yyNPMdwvqlSPrshFywfCy903ikh-in5xjIUguAwft66hXbeVbAlhhQjpQJducKIJy1B1nY6OGaqAgGwOLf_1cbkc4M_Nb1Nb7Kvv316viYf8eS_lI03PLxRnGrkE3Kh4R4-JEdyWfOG0yEQyF46X76oVjt75vXTlKDEd1_UjSmVthT7lgVA&h=alGJTS-_V-XgCV76qGTZQdOZhFWQztgIgbnVGre150w + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/85aa1fcf-fab7-440b-be7d-0b928ea49a9d?api-version=2024-02-02-preview&azureAsyncOperation=true&t=638727495446523689&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=Z-frFlsDHWR-pUPfD334Y4yLG4Vsbf_x9bsEXhL4XTYI1e5ddHs3VPWfOm4yLrA6EwxIbgBOjYc3UrUJf5_F7yRSXc8_YLi2A576oi8Mt071KX8821hNl0y6brRiPA2mPuVG39P3v94MYzdhDP9DSk9goHBsMfSi2w9e4n8ULvu04MxS0DgAk5zec5f1F9VQdgpVh9nd0X8gssP5Q8fO6-QNEwR0d6st0LCxmNqqRunBtoge_Vvf0g-Cfe2a42a1k2d7P7pvVi6h1yuA61PGj3Q1otFWtQjJIzH6sLR9nuW1uzFDsxSAN9fPCyL1AlGT2YMit1-9ELFs-NNk64u_HQ&h=Ir4SNdcCxNYg2UsQhFl-sdS4yGK3-jb_73ttgEi9iHM Cache-Control: - no-cache Content-Length: - - "3897" + - "3973" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:24:10 GMT + - Fri, 17 Jan 2025 22:25:44 GMT Expires: - "-1" Pragma: @@ -858,21 +1018,21 @@ interactions: X-Ms-Async-Operation-Timeout: - PT15M X-Ms-Correlation-Request-Id: - - a321adcc-d2f3-4046-8e08-d714140003bd + - 91b75a73-68ab-4b7b-92b6-fd5f5908d60d X-Ms-Ratelimit-Remaining-Subscription-Resource-Requests: - "699" X-Ms-Request-Id: - - a321adcc-d2f3-4046-8e08-d714140003bd + - 91b75a73-68ab-4b7b-92b6-fd5f5908d60d X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232411Z:a321adcc-d2f3-4046-8e08-d714140003bd + - WESTUS2:20250117T222544Z:91b75a73-68ab-4b7b-92b6-fd5f5908d60d X-Msedge-Ref: - - 'Ref A: 541D8DEBF90A4EE9B7B414966F1C8605 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:24:08Z' + - 'Ref A: BA1483BCC436476DB08834790663433C Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:25:41Z' X-Powered-By: - ASP.NET status: 201 Created code: 201 - duration: 2.325527838s - - id: 13 + duration: 3.324747795s + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -892,7 +1052,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/c3e4de62-80f8-4973-ab19-49bf25c61532?api-version=2024-02-02-preview&azureAsyncOperation=true&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&h=alGJTS-_V-XgCV76qGTZQdOZhFWQztgIgbnVGre150w&s=I9B9g8W1SiqlE2J4-478Zat78q-xXJIiZAWVeO3DlEEK7yNs2LHX-ZJqzghkTGPDalNO5QFXLpXVBlXHTMkS0XB1cSS11qZHburabBzX79vSIqEympt9v3IiUs4kGYFEUtjVK1LFc-MPYGG0k0i79VMRLdr8NB_hVc8yyNPMdwvqlSPrshFywfCy903ikh-in5xjIUguAwft66hXbeVbAlhhQjpQJducKIJy1B1nY6OGaqAgGwOLf_1cbkc4M_Nb1Nb7Kvv316viYf8eS_lI03PLxRnGrkE3Kh4R4-JEdyWfOG0yEQyF46X76oVjt75vXTlKDEd1_UjSmVthT7lgVA&t=638666186511556180 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/85aa1fcf-fab7-440b-be7d-0b928ea49a9d?api-version=2024-02-02-preview&azureAsyncOperation=true&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&h=Ir4SNdcCxNYg2UsQhFl-sdS4yGK3-jb_73ttgEi9iHM&s=Z-frFlsDHWR-pUPfD334Y4yLG4Vsbf_x9bsEXhL4XTYI1e5ddHs3VPWfOm4yLrA6EwxIbgBOjYc3UrUJf5_F7yRSXc8_YLi2A576oi8Mt071KX8821hNl0y6brRiPA2mPuVG39P3v94MYzdhDP9DSk9goHBsMfSi2w9e4n8ULvu04MxS0DgAk5zec5f1F9VQdgpVh9nd0X8gssP5Q8fO6-QNEwR0d6st0LCxmNqqRunBtoge_Vvf0g-Cfe2a42a1k2d7P7pvVi6h1yuA61PGj3Q1otFWtQjJIzH6sLR9nuW1uzFDsxSAN9fPCyL1AlGT2YMit1-9ELFs-NNk64u_HQ&t=638727495446523689 method: GET response: proto: HTTP/2.0 @@ -902,7 +1062,7 @@ interactions: trailer: {} content_length: 278 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/c3e4de62-80f8-4973-ab19-49bf25c61532","name":"c3e4de62-80f8-4973-ab19-49bf25c61532","status":"Succeeded","startTime":"2024-11-07T23:24:10.5093166"}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/85aa1fcf-fab7-440b-be7d-0b928ea49a9d","name":"85aa1fcf-fab7-440b-be7d-0b928ea49a9d","status":"Succeeded","startTime":"2025-01-17T22:25:44.2437429"}' headers: Api-Supported-Versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview @@ -913,7 +1073,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:24:26 GMT + - Fri, 17 Jan 2025 22:25:59 GMT Expires: - "-1" Pragma: @@ -927,23 +1087,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9f1948c3-22b3-416d-b49d-867a5af4d48d + - 4c58cb94-ba60-4f08-9334-b6d86f7964ba X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 9f1948c3-22b3-416d-b49d-867a5af4d48d + - 4c58cb94-ba60-4f08-9334-b6d86f7964ba X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232426Z:9f1948c3-22b3-416d-b49d-867a5af4d48d + - WESTUS2:20250117T222600Z:4c58cb94-ba60-4f08-9334-b6d86f7964ba X-Msedge-Ref: - - 'Ref A: C9FAF17C1CE44D4D95B7A03767B5AB8A Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:24:26Z' + - 'Ref A: CD721C0E71CD48F7B0BFB48E10EAAD27 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:25:59Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 469.675337ms - - id: 14 + duration: 457.660355ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -963,7 +1123,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/apiservice?api-version=2024-02-02-preview + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/pubsub?api-version=2024-02-02-preview method: GET response: proto: HTTP/2.0 @@ -971,20 +1131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4501 + content_length: 4557 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerapps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:24:09.7806272","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:24:09.7806272"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","48.214.27.226"],"latestRevisionName":"apiservice--00h91dt","latestReadyRevisionName":"apiservice--00h91dt","latestRevisionFqdn":"apiservice--00h91dt.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"apiservice.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io","external":false,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":true,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrgj2m4tcideyiu.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrgj2m4tcideyiu.azurecr.io/aspire-azd-tests/apiservice-azdtest-lfa372e:azd-deploy-1731021426","imageType":"ContainerImage","name":"apiservice","env":[{"name":"AZURE_CLIENT_ID","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/containerApps/apiservice/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerapps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:25:43.5742355","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:25:43.5742355"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","20.122.82.135","172.177.177.115","20.122.82.26","20.122.82.51","20.122.81.165","20.122.82.63","20.122.81.203","172.177.180.194","20.122.81.254","20.122.82.103","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","135.224.183.166"],"latestRevisionName":"pubsub--07kxz1o","latestReadyRevisionName":"pubsub--07kxz1o","latestRevisionFqdn":"pubsub--07kxz1o.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"pubsub.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io","external":false,"targetPort":6379,"exposedPort":0,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrlsxjxxqmwlwys.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"docker.io/library/redis:7.4","imageType":"ContainerImage","name":"pubsub","env":[{"name":"AZURE_CLIENT_ID","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/containerApps/pubsub/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}}}' headers: Api-Supported-Versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "4501" + - "4557" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:24:26 GMT + - Fri, 17 Jan 2025 22:26:00 GMT Expires: - "-1" Pragma: @@ -998,23 +1158,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 395acf3c-a5a6-42ce-858a-21e8e461efec + - 1efe9185-ff11-48cc-9cf7-b3a4a1b678fb X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 395acf3c-a5a6-42ce-858a-21e8e461efec + - 1efe9185-ff11-48cc-9cf7-b3a4a1b678fb X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232427Z:395acf3c-a5a6-42ce-858a-21e8e461efec + - WESTUS2:20250117T222600Z:1efe9185-ff11-48cc-9cf7-b3a4a1b678fb X-Msedge-Ref: - - 'Ref A: F2FD825D5F464EECB3E72238E008E15D Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:24:26Z' + - 'Ref A: 451199CE6ED54657A53D736F0557DA09 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:26:00Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 421.995928ms - - id: 15 + duration: 801.533629ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -1036,7 +1196,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/apiservice?api-version=2023-11-02-preview + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/pubsub?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -1044,20 +1204,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4365 + content_length: 4421 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerapps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:24:09.7806272","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:24:09.7806272"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","48.214.27.226"],"latestRevisionName":"apiservice--00h91dt","latestReadyRevisionName":"apiservice--00h91dt","latestRevisionFqdn":"apiservice--00h91dt.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"apiservice.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io","external":false,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":true,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrgj2m4tcideyiu.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrgj2m4tcideyiu.azurecr.io/aspire-azd-tests/apiservice-azdtest-lfa372e:azd-deploy-1731021426","name":"apiservice","env":[{"name":"AZURE_CLIENT_ID","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/containerApps/apiservice/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerapps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:25:43.5742355","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:25:43.5742355"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","20.122.82.135","172.177.177.115","20.122.82.26","20.122.82.51","20.122.81.165","20.122.82.63","20.122.81.203","172.177.180.194","20.122.81.254","20.122.82.103","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","135.224.183.166"],"latestRevisionName":"pubsub--07kxz1o","latestReadyRevisionName":"pubsub--07kxz1o","latestRevisionFqdn":"pubsub--07kxz1o.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"pubsub.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io","external":false,"targetPort":6379,"exposedPort":0,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrlsxjxxqmwlwys.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"docker.io/library/redis:7.4","name":"pubsub","env":[{"name":"AZURE_CLIENT_ID","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/containerApps/pubsub/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}}}' headers: Api-Supported-Versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "4365" + - "4421" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:24:27 GMT + - Fri, 17 Jan 2025 22:26:00 GMT Expires: - "-1" Pragma: @@ -1071,23 +1231,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 421ec5d0-1eed-4ed6-a769-bd104de3c0e4 + - 3138cb7a-fee8-451f-b434-0b310d7481e7 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 421ec5d0-1eed-4ed6-a769-bd104de3c0e4 + - 3138cb7a-fee8-451f-b434-0b310d7481e7 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232427Z:421ec5d0-1eed-4ed6-a769-bd104de3c0e4 + - WESTUS2:20250117T222601Z:3138cb7a-fee8-451f-b434-0b310d7481e7 X-Msedge-Ref: - - 'Ref A: 416D8BEC218A40ED97B53D80778CFED9 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:24:27Z' + - 'Ref A: F00DC36D7D464BFDA58D148A0B25E869 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:26:00Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 445.632183ms - - id: 16 + duration: 466.636838ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -1109,7 +1269,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lfa372e%27&api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l9ec8e0%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1119,7 +1279,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","name":"rg-azdtest-lfa372e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","name":"rg-azdtest-l9ec8e0","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1128,7 +1288,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:24:27 GMT + - Fri, 17 Jan 2025 22:26:01 GMT Expires: - "-1" Pragma: @@ -1140,21 +1300,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 715cb5cc-3788-44b4-91ea-64bc088f1d59 + - 88ecd9a7-9b90-4a3d-b6db-cc90e9191dd7 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 715cb5cc-3788-44b4-91ea-64bc088f1d59 + - 88ecd9a7-9b90-4a3d-b6db-cc90e9191dd7 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232427Z:715cb5cc-3788-44b4-91ea-64bc088f1d59 + - WESTUS2:20250117T222601Z:88ecd9a7-9b90-4a3d-b6db-cc90e9191dd7 X-Msedge-Ref: - - 'Ref A: 14EE04855BFD4E59A5052C8D9A86A60C Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:24:27Z' + - 'Ref A: C2E3CEEC8EE84A9191962300FFA3F03B Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:26:01Z' status: 200 OK code: 200 - duration: 62.967116ms - - id: 17 + duration: 73.354442ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1163,17 +1323,17 @@ interactions: transfer_encoding: - chunked trailer: {} - host: acrgj2m4tcideyiu.azurecr.io + host: acrlsxjxxqmwlwys.azurecr.io remote_addr: "" request_uri: "" - body: access_token=SANITIZED&grant_type=access_token&service=acrgj2m4tcideyiu.azurecr.io + body: access_token=SANITIZED&grant_type=access_token&service=acrlsxjxxqmwlwys.azurecr.io form: access_token: - SANITIZED grant_type: - access_token service: - - acrgj2m4tcideyiu.azurecr.io + - acrlsxjxxqmwlwys.azurecr.io headers: Accept-Encoding: - gzip @@ -1183,7 +1343,7 @@ interactions: - application/x-www-form-urlencoded User-Agent: - azsdk-go-azd-acr/0.0.0-dev.0 (commit 0000000000000000000000000000000000000000) (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://acrgj2m4tcideyiu.azurecr.io:443/oauth2/exchange + url: https://acrlsxjxxqmwlwys.azurecr.io:443/oauth2/exchange method: POST response: proto: HTTP/1.1 @@ -1201,30 +1361,30 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:24:27 GMT + - Fri, 17 Jan 2025 22:26:01 GMT Server: - AzureContainerRegistry Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Ms-Correlation-Request-Id: - - aa32e0ba-9a2a-44fd-8911-91f6f2ad9715 + - d6b2ebba-e40c-437d-a74e-8cbfc34facbc X-Ms-Ratelimit-Remaining-Calls-Per-Second: - "166.633333" status: 200 OK code: 200 - duration: 72.231259ms - - id: 18 + duration: 72.412758ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1118 + content_length: 2534 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{}}},"location":"eastus2","properties":{"configuration":{"activeRevisionsMode":"single","ingress":{"allowInsecure":false,"external":false,"targetPort":6379,"transport":"tcp"},"registries":[{"identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu","server":"acrgj2m4tcideyiu.azurecr.io"}],"runtime":{"dotnet":{"autoConfigureDataProtection":true}}},"environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","template":{"containers":[{"env":[{"name":"AZURE_CLIENT_ID","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}],"image":"docker.io/library/redis:7.4","name":"pubsub"}],"scale":{"minReplicas":1}}},"tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"}}' + body: '{"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{}}},"location":"eastus2","properties":{"configuration":{"activeRevisionsMode":"single","ingress":{"allowInsecure":false,"external":true,"targetPort":8080,"transport":"http"},"registries":[{"identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys","server":"acrlsxjxxqmwlwys.azurecr.io"}],"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"secrets":[{"name":"connectionstrings--markdown","value":"https://storagelsxjxxqmwlwys.blob.core.windows.net/"},{"name":"connectionstrings--messages","value":"https://storagelsxjxxqmwlwys.queue.core.windows.net/"},{"name":"connectionstrings--pubsub","value":"pubsub:6379"},{"name":"connectionstrings--requestlog","value":"https://storagelsxjxxqmwlwys.table.core.windows.net/"}]},"environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","template":{"containers":[{"env":[{"name":"AZURE_CLIENT_ID","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"GOVERSION","value":"1.22"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"},{"name":"services__apiservice__http__0","value":"http://apiservice.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io"},{"name":"services__apiservice__https__0","value":"https://apiservice.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io"},{"name":"ConnectionStrings__markdown","secretRef":"connectionstrings--markdown"},{"name":"ConnectionStrings__messages","secretRef":"connectionstrings--messages"},{"name":"ConnectionStrings__pubsub","secretRef":"connectionstrings--pubsub"},{"name":"ConnectionStrings__requestlog","secretRef":"connectionstrings--requestlog"}],"image":"acrlsxjxxqmwlwys.azurecr.io/aspire-azd-tests/webfrontend-azdtest-l9ec8e0:azd-deploy-1737152443","name":"webfrontend"}],"scale":{"minReplicas":1}}},"tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"}}' form: {} headers: Accept: @@ -1234,12 +1394,12 @@ interactions: Authorization: - SANITIZED Content-Length: - - "1118" + - "2534" Content-Type: - application/json User-Agent: - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/pubsub?api-version=2024-02-02-preview + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/webfrontend?api-version=2024-02-02-preview method: PUT response: proto: HTTP/2.0 @@ -1247,22 +1407,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3477 + content_length: 5174 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerapps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:24:28.7227697Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:24:28.7227697Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","48.214.27.226"],"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":false,"targetPort":6379,"exposedPort":null,"transport":"Tcp","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrgj2m4tcideyiu.azurecr.io","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"docker.io/library/redis:7.4","imageType":"CloudBuild","name":"pubsub","env":[{"name":"AZURE_CLIENT_ID","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":null,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerapps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:26:13.5933528Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:26:13.5933528Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","20.122.82.135","172.177.177.115","20.122.82.26","20.122.82.51","20.122.81.165","20.122.82.63","20.122.81.203","172.177.180.194","20.122.81.254","20.122.82.103","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","135.224.183.166"],"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"connectionstrings--markdown"},{"name":"connectionstrings--messages"},{"name":"connectionstrings--pubsub"},{"name":"connectionstrings--requestlog"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":8080,"exposedPort":null,"transport":"Http","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrlsxjxxqmwlwys.azurecr.io","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acrlsxjxxqmwlwys.azurecr.io/aspire-azd-tests/webfrontend-azdtest-l9ec8e0:azd-deploy-1737152443","imageType":"CloudBuild","name":"webfrontend","env":[{"name":"AZURE_CLIENT_ID","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"GOVERSION","value":"1.22"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"},{"name":"services__apiservice__http__0","value":"http://apiservice.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io"},{"name":"services__apiservice__https__0","value":"https://apiservice.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io"},{"name":"ConnectionStrings__markdown","secretRef":"connectionstrings--markdown"},{"name":"ConnectionStrings__messages","secretRef":"connectionstrings--messages"},{"name":"ConnectionStrings__pubsub","secretRef":"connectionstrings--pubsub"},{"name":"ConnectionStrings__requestlog","secretRef":"connectionstrings--requestlog"}]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":null,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}}}' headers: Api-Supported-Versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/56d10494-8b91-4005-bd65-e7de863f710c?api-version=2024-02-02-preview&azureAsyncOperation=true&t=638666186695665233&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=LtFWPdovQLPUkbVyFr989XmuQZCgRgRwBtcA3SxB4GM29RMVmiPKvuMf7yHAU4h4yAEbd-CWxv_aOZRm9F53j8S-wUFYG6JVDyGzeMqxy1XWPWMn7MTyGJfmlFnbKwBrgxCRZUUywk5Md9k8ynEh10iajNDzN959Wox6PX1IcSDxGAW5MEhW4vMlD4riXrThFj6XWi5Y1Z8QKtZcSaok1q9_WvqgOvWomDd0zepM_WGpTodCOshP0lKYyVRf2Y6hJqDCsWYgRYur1uhlKA9BfPQvWCurtTpbf55J2zZw83n6LEXm3VbB-Vhq14dqdtGqhsebNsnLK0Y6gcaS6_ArVA&h=zWXyHXQ6Gg4Dn5rw6cvvxlV0H98Xsz7ZMh6iGWOj0YE + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/103b43ca-5b9e-4a07-b544-99647f3b6990?api-version=2024-02-02-preview&azureAsyncOperation=true&t=638727495747496159&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=SqbMvTzy43WnKnW0ZAxWdN4cdS7MuH3G8zcuKut-KTt34jF7F18cxGNEdu4d60SMoPcv2tl0Bax2RdMt3IijlrB3g-Kek__buWfI1O3dE2IuAvImM7Y4ZTeuMyUN3IvIKddFVGVDOoUBA6wk2JrB0ooLv7ytXgWL-8FsEmFXQN4tNrmXd-PJpN9n32-rrLzczjzqvoWF7sbNjYIcubIDWSPwQh8mjUii1YMYFvHMIH7JeI94dI3lYNjQqo1p3x08eks4JHlUQtSyn3xdYNXNmdRM0ES1EHpUJopSvNnhIwAju_tpsJSF4BfxC5z36-be7r9N06CVRhH3u_JbNIV_tA&h=6tT4f4sXKyzYUhC6AjuxlLVoYDe89BTZ1eDc-writSM Cache-Control: - no-cache Content-Length: - - "3477" + - "5174" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:24:29 GMT + - Fri, 17 Jan 2025 22:26:14 GMT Expires: - "-1" Pragma: @@ -1278,21 +1438,21 @@ interactions: X-Ms-Async-Operation-Timeout: - PT15M X-Ms-Correlation-Request-Id: - - d5d5c588-94c0-4ef7-af12-4b35126cdd98 + - 66db2256-7ecd-4371-a8b8-cc080df674cc X-Ms-Ratelimit-Remaining-Subscription-Resource-Requests: - "699" X-Ms-Request-Id: - - d5d5c588-94c0-4ef7-af12-4b35126cdd98 + - 66db2256-7ecd-4371-a8b8-cc080df674cc X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232429Z:d5d5c588-94c0-4ef7-af12-4b35126cdd98 + - WESTUS2:20250117T222614Z:66db2256-7ecd-4371-a8b8-cc080df674cc X-Msedge-Ref: - - 'Ref A: 2B4A22B6C7B74F4B973E12C675372A6F Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:24:27Z' + - 'Ref A: 82CB128947524226B9C58739A9623CD6 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:26:12Z' X-Powered-By: - ASP.NET status: 201 Created code: 201 - duration: 1.892794461s - - id: 19 + duration: 2.353538792s + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1312,7 +1472,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/56d10494-8b91-4005-bd65-e7de863f710c?api-version=2024-02-02-preview&azureAsyncOperation=true&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&h=zWXyHXQ6Gg4Dn5rw6cvvxlV0H98Xsz7ZMh6iGWOj0YE&s=LtFWPdovQLPUkbVyFr989XmuQZCgRgRwBtcA3SxB4GM29RMVmiPKvuMf7yHAU4h4yAEbd-CWxv_aOZRm9F53j8S-wUFYG6JVDyGzeMqxy1XWPWMn7MTyGJfmlFnbKwBrgxCRZUUywk5Md9k8ynEh10iajNDzN959Wox6PX1IcSDxGAW5MEhW4vMlD4riXrThFj6XWi5Y1Z8QKtZcSaok1q9_WvqgOvWomDd0zepM_WGpTodCOshP0lKYyVRf2Y6hJqDCsWYgRYur1uhlKA9BfPQvWCurtTpbf55J2zZw83n6LEXm3VbB-Vhq14dqdtGqhsebNsnLK0Y6gcaS6_ArVA&t=638666186695665233 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/103b43ca-5b9e-4a07-b544-99647f3b6990?api-version=2024-02-02-preview&azureAsyncOperation=true&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&h=6tT4f4sXKyzYUhC6AjuxlLVoYDe89BTZ1eDc-writSM&s=SqbMvTzy43WnKnW0ZAxWdN4cdS7MuH3G8zcuKut-KTt34jF7F18cxGNEdu4d60SMoPcv2tl0Bax2RdMt3IijlrB3g-Kek__buWfI1O3dE2IuAvImM7Y4ZTeuMyUN3IvIKddFVGVDOoUBA6wk2JrB0ooLv7ytXgWL-8FsEmFXQN4tNrmXd-PJpN9n32-rrLzczjzqvoWF7sbNjYIcubIDWSPwQh8mjUii1YMYFvHMIH7JeI94dI3lYNjQqo1p3x08eks4JHlUQtSyn3xdYNXNmdRM0ES1EHpUJopSvNnhIwAju_tpsJSF4BfxC5z36-be7r9N06CVRhH3u_JbNIV_tA&t=638727495747496159 method: GET response: proto: HTTP/2.0 @@ -1322,7 +1482,7 @@ interactions: trailer: {} content_length: 278 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/56d10494-8b91-4005-bd65-e7de863f710c","name":"56d10494-8b91-4005-bd65-e7de863f710c","status":"Succeeded","startTime":"2024-11-07T23:24:29.1657764"}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/103b43ca-5b9e-4a07-b544-99647f3b6990","name":"103b43ca-5b9e-4a07-b544-99647f3b6990","status":"Succeeded","startTime":"2025-01-17T22:26:14.3620579"}' headers: Api-Supported-Versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview @@ -1333,7 +1493,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:24:44 GMT + - Fri, 17 Jan 2025 22:26:29 GMT Expires: - "-1" Pragma: @@ -1347,23 +1507,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f0319825-b0bd-4762-9824-ff73d383697d + - b1d8380c-3d43-4336-899f-34d7227f4867 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - f0319825-b0bd-4762-9824-ff73d383697d + - b1d8380c-3d43-4336-899f-34d7227f4867 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232444Z:f0319825-b0bd-4762-9824-ff73d383697d + - WESTUS2:20250117T222630Z:b1d8380c-3d43-4336-899f-34d7227f4867 X-Msedge-Ref: - - 'Ref A: 48DC6172EB344CCA8BD414192A780B09 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:24:44Z' + - 'Ref A: A0707AD756AA40F3B1E8FCDF68ED4905 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:26:29Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 384.628653ms - - id: 20 + duration: 422.548218ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1383,7 +1543,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/pubsub?api-version=2024-02-02-preview + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/webfrontend?api-version=2024-02-02-preview method: GET response: proto: HTTP/2.0 @@ -1391,20 +1551,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4061 + content_length: 5765 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerapps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:24:28.7227697","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:24:28.7227697"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","48.214.27.226"],"latestRevisionName":"pubsub--fj92nwd","latestReadyRevisionName":"pubsub--fj92nwd","latestRevisionFqdn":"pubsub--fj92nwd.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"pubsub.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io","external":false,"targetPort":6379,"exposedPort":0,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrgj2m4tcideyiu.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"docker.io/library/redis:7.4","imageType":"ContainerImage","name":"pubsub","env":[{"name":"AZURE_CLIENT_ID","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/containerApps/pubsub/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerapps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:26:13.5933528","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:26:13.5933528"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","20.122.82.135","172.177.177.115","20.122.82.26","20.122.82.51","20.122.81.165","20.122.82.63","20.122.81.203","172.177.180.194","20.122.81.254","20.122.82.103","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","135.224.183.166"],"latestRevisionName":"webfrontend--wb2hp0r","latestReadyRevisionName":"webfrontend--wb2hp0r","latestRevisionFqdn":"webfrontend--wb2hp0r.kindmushroom-e5145b77.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"connectionstrings--markdown"},{"name":"connectionstrings--messages"},{"name":"connectionstrings--pubsub"},{"name":"connectionstrings--requestlog"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"webfrontend.kindmushroom-e5145b77.eastus2.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrlsxjxxqmwlwys.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrlsxjxxqmwlwys.azurecr.io/aspire-azd-tests/webfrontend-azdtest-l9ec8e0:azd-deploy-1737152443","imageType":"ContainerImage","name":"webfrontend","env":[{"name":"AZURE_CLIENT_ID","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"GOVERSION","value":"1.22"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"},{"name":"services__apiservice__http__0","value":"http://apiservice.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io"},{"name":"services__apiservice__https__0","value":"https://apiservice.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io"},{"name":"ConnectionStrings__markdown","secretRef":"connectionstrings--markdown"},{"name":"ConnectionStrings__messages","secretRef":"connectionstrings--messages"},{"name":"ConnectionStrings__pubsub","secretRef":"connectionstrings--pubsub"},{"name":"ConnectionStrings__requestlog","secretRef":"connectionstrings--requestlog"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/containerApps/webfrontend/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}}}' headers: Api-Supported-Versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "4061" + - "5765" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:24:45 GMT + - Fri, 17 Jan 2025 22:26:30 GMT Expires: - "-1" Pragma: @@ -1418,23 +1578,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - bfc7a65d-f4ad-4290-b618-097cf19236ee + - f41e51ea-d96b-4124-bd33-c68103442f13 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - bfc7a65d-f4ad-4290-b618-097cf19236ee + - f41e51ea-d96b-4124-bd33-c68103442f13 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232445Z:bfc7a65d-f4ad-4290-b618-097cf19236ee + - WESTUS2:20250117T222630Z:f41e51ea-d96b-4124-bd33-c68103442f13 X-Msedge-Ref: - - 'Ref A: 1522A3BA21A243CB8AE8F807BBC5F0F3 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:24:45Z' + - 'Ref A: ADC86A810FE441CA9DF7AB2B56EFDF72 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:26:30Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 539.039811ms - - id: 21 + duration: 501.856747ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1456,7 +1616,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/pubsub?api-version=2023-11-02-preview + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/webfrontend?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -1464,20 +1624,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3925 + content_length: 5629 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerapps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:24:28.7227697","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:24:28.7227697"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","48.214.27.226"],"latestRevisionName":"pubsub--fj92nwd","latestReadyRevisionName":"pubsub--fj92nwd","latestRevisionFqdn":"pubsub--fj92nwd.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"pubsub.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io","external":false,"targetPort":6379,"exposedPort":0,"transport":"Tcp","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrgj2m4tcideyiu.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"docker.io/library/redis:7.4","name":"pubsub","env":[{"name":"AZURE_CLIENT_ID","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/containerApps/pubsub/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerapps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:26:13.5933528","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:26:13.5933528"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","20.122.82.135","172.177.177.115","20.122.82.26","20.122.82.51","20.122.81.165","20.122.82.63","20.122.81.203","172.177.180.194","20.122.81.254","20.122.82.103","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","135.224.183.166"],"latestRevisionName":"webfrontend--wb2hp0r","latestReadyRevisionName":"webfrontend--wb2hp0r","latestRevisionFqdn":"webfrontend--wb2hp0r.kindmushroom-e5145b77.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"connectionstrings--markdown"},{"name":"connectionstrings--messages"},{"name":"connectionstrings--pubsub"},{"name":"connectionstrings--requestlog"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"webfrontend.kindmushroom-e5145b77.eastus2.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrlsxjxxqmwlwys.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrlsxjxxqmwlwys.azurecr.io/aspire-azd-tests/webfrontend-azdtest-l9ec8e0:azd-deploy-1737152443","name":"webfrontend","env":[{"name":"AZURE_CLIENT_ID","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"GOVERSION","value":"1.22"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"},{"name":"services__apiservice__http__0","value":"http://apiservice.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io"},{"name":"services__apiservice__https__0","value":"https://apiservice.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io"},{"name":"ConnectionStrings__markdown","secretRef":"connectionstrings--markdown"},{"name":"ConnectionStrings__messages","secretRef":"connectionstrings--messages"},{"name":"ConnectionStrings__pubsub","secretRef":"connectionstrings--pubsub"},{"name":"ConnectionStrings__requestlog","secretRef":"connectionstrings--requestlog"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/containerApps/webfrontend/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}}}' headers: Api-Supported-Versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "3925" + - "5629" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:24:45 GMT + - Fri, 17 Jan 2025 22:26:30 GMT Expires: - "-1" Pragma: @@ -1491,23 +1651,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 09b7f1de-6009-4d86-a548-df517b9e5c93 + - 9654e6ec-fb62-40eb-9fee-634e320980a2 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16498" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1098" + - "1099" X-Ms-Request-Id: - - 09b7f1de-6009-4d86-a548-df517b9e5c93 + - 9654e6ec-fb62-40eb-9fee-634e320980a2 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232445Z:09b7f1de-6009-4d86-a548-df517b9e5c93 + - WESTUS2:20250117T222631Z:9654e6ec-fb62-40eb-9fee-634e320980a2 X-Msedge-Ref: - - 'Ref A: A7E1829B33AA40E8AA7A19D7EB2B3891 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:24:45Z' + - 'Ref A: 876BF631FED644179E0BD732DEAD8918 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:26:30Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 248.545584ms - - id: 22 + duration: 505.375703ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1529,7 +1689,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lfa372e%27&api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l9ec8e0%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1539,7 +1699,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","name":"rg-azdtest-lfa372e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","name":"rg-azdtest-l9ec8e0","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1548,7 +1708,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:24:45 GMT + - Fri, 17 Jan 2025 22:26:30 GMT Expires: - "-1" Pragma: @@ -1560,21 +1720,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 3295970a-eb7e-424c-a45c-62712bb5cec9 + - 0b2fc8e0-1652-4844-8a85-1bf367f26df0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" + - "16498" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + - "1098" X-Ms-Request-Id: - - 3295970a-eb7e-424c-a45c-62712bb5cec9 + - 0b2fc8e0-1652-4844-8a85-1bf367f26df0 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232445Z:3295970a-eb7e-424c-a45c-62712bb5cec9 + - WESTUS2:20250117T222631Z:0b2fc8e0-1652-4844-8a85-1bf367f26df0 X-Msedge-Ref: - - 'Ref A: D90896A6DDCD406B99C92D580BD06712 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:24:45Z' + - 'Ref A: 9C43E5CEDAB144DFBFCE71FEA369A89D Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:26:31Z' status: 200 OK code: 200 - duration: 53.797772ms - - id: 23 + duration: 80.387009ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1583,17 +1743,17 @@ interactions: transfer_encoding: - chunked trailer: {} - host: acrgj2m4tcideyiu.azurecr.io + host: acrlsxjxxqmwlwys.azurecr.io remote_addr: "" request_uri: "" - body: access_token=SANITIZED&grant_type=access_token&service=acrgj2m4tcideyiu.azurecr.io + body: access_token=SANITIZED&grant_type=access_token&service=acrlsxjxxqmwlwys.azurecr.io form: access_token: - SANITIZED grant_type: - access_token service: - - acrgj2m4tcideyiu.azurecr.io + - acrlsxjxxqmwlwys.azurecr.io headers: Accept-Encoding: - gzip @@ -1603,7 +1763,7 @@ interactions: - application/x-www-form-urlencoded User-Agent: - azsdk-go-azd-acr/0.0.0-dev.0 (commit 0000000000000000000000000000000000000000) (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://acrgj2m4tcideyiu.azurecr.io:443/oauth2/exchange + url: https://acrlsxjxxqmwlwys.azurecr.io:443/oauth2/exchange method: POST response: proto: HTTP/1.1 @@ -1621,30 +1781,30 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:24:45 GMT + - Fri, 17 Jan 2025 22:26:31 GMT Server: - AzureContainerRegistry Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Ms-Correlation-Request-Id: - - fac86d0a-4323-4156-b7c3-bfb1382ea726 + - 374b4cea-2517-4b2e-83f8-b7ad34ecedbc X-Ms-Ratelimit-Remaining-Calls-Per-Second: - "166.633333" status: 200 OK code: 200 - duration: 72.347958ms - - id: 24 + duration: 96.49907ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2912 + content_length: 1328 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{}}},"location":"eastus2","properties":{"configuration":{"activeRevisionsMode":"single","ingress":{"allowInsecure":false,"external":true,"targetPort":8080,"transport":"http"},"registries":[{"identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu","server":"acrgj2m4tcideyiu.azurecr.io"}],"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"secrets":[{"name":"connectionstrings--markdown","value":"https://storagegj2m4tcideyiu.blob.core.windows.net/"},{"name":"connectionstrings--messages","value":"https://storagegj2m4tcideyiu.queue.core.windows.net/"},{"name":"connectionstrings--pubsub","value":"pubsub:6379"},{"name":"connectionstrings--requestlog","value":"https://storagegj2m4tcideyiu.table.core.windows.net/"},{"identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu","keyVaultUrl":"https://kvf2edecb5gj2m4tcideyiu.vault.azure.net/secrets/connectionString","name":"connectionstrings--cosmos"}]},"environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","template":{"containers":[{"env":[{"name":"AZURE_CLIENT_ID","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"GOVERSION","value":"1.22"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"},{"name":"services__apiservice__http__0","value":"http://apiservice.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io"},{"name":"services__apiservice__https__0","value":"https://apiservice.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io"},{"name":"ConnectionStrings__markdown","secretRef":"connectionstrings--markdown"},{"name":"ConnectionStrings__messages","secretRef":"connectionstrings--messages"},{"name":"ConnectionStrings__pubsub","secretRef":"connectionstrings--pubsub"},{"name":"ConnectionStrings__requestlog","secretRef":"connectionstrings--requestlog"},{"name":"ConnectionStrings__cosmos","secretRef":"connectionstrings--cosmos"}],"image":"acrgj2m4tcideyiu.azurecr.io/aspire-azd-tests/webfrontend-azdtest-lfa372e:azd-deploy-1731021426","name":"webfrontend"}],"scale":{"minReplicas":1}}},"tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"}}' + body: '{"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{}}},"location":"eastus2","properties":{"configuration":{"activeRevisionsMode":"single","registries":[{"identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys","server":"acrlsxjxxqmwlwys.azurecr.io"}],"runtime":{"dotnet":{"autoConfigureDataProtection":true}}},"environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","template":{"containers":[{"env":[{"name":"AZURE_CLIENT_ID","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"image":"acrlsxjxxqmwlwys.azurecr.io/aspire-azd-tests/worker-azdtest-l9ec8e0:azd-deploy-1737152443","name":"worker"}],"scale":{"minReplicas":1}}},"tags":{"aspire-resource-name":"worker","azd-service-name":"worker"}}' form: {} headers: Accept: @@ -1654,12 +1814,12 @@ interactions: Authorization: - SANITIZED Content-Length: - - "2912" + - "1328" Content-Type: - application/json User-Agent: - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/webfrontend?api-version=2024-02-02-preview + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/worker?api-version=2024-02-02-preview method: PUT response: proto: HTTP/2.0 @@ -1667,22 +1827,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5054 + content_length: 3974 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerapps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:25:01.703096Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:25:01.703096Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","48.214.27.226"],"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"connectionstrings--markdown"},{"name":"connectionstrings--messages"},{"name":"connectionstrings--pubsub"},{"name":"connectionstrings--requestlog"},{"name":"connectionstrings--cosmos","keyVaultUrl":"https://kvf2edecb5gj2m4tcideyiu.vault.azure.net/secrets/connectionString","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"activeRevisionsMode":"Single","ingress":{"fqdn":null,"external":true,"targetPort":8080,"exposedPort":null,"transport":"Http","traffic":null,"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrgj2m4tcideyiu.azurecr.io","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acrgj2m4tcideyiu.azurecr.io/aspire-azd-tests/webfrontend-azdtest-lfa372e:azd-deploy-1731021426","imageType":"CloudBuild","name":"webfrontend","env":[{"name":"AZURE_CLIENT_ID","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"GOVERSION","value":"1.22"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"},{"name":"services__apiservice__http__0","value":"http://apiservice.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io"},{"name":"services__apiservice__https__0","value":"https://apiservice.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io"},{"name":"ConnectionStrings__markdown","secretRef":"connectionstrings--markdown"},{"name":"ConnectionStrings__messages","secretRef":"connectionstrings--messages"},{"name":"ConnectionStrings__pubsub","secretRef":"connectionstrings--pubsub"},{"name":"ConnectionStrings__requestlog","secretRef":"connectionstrings--requestlog"},{"name":"ConnectionStrings__cosmos","secretRef":"connectionstrings--cosmos"}]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":null,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerapps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:26:39.1500265Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:26:39.1500265Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","20.122.82.135","172.177.177.115","20.122.82.26","20.122.82.51","20.122.81.165","20.122.82.63","20.122.81.203","172.177.180.194","20.122.81.254","20.122.82.103","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","135.224.183.166"],"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"acrlsxjxxqmwlwys.azurecr.io","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acrlsxjxxqmwlwys.azurecr.io/aspire-azd-tests/worker-azdtest-l9ec8e0:azd-deploy-1737152443","imageType":"CloudBuild","name":"worker","env":[{"name":"AZURE_CLIENT_ID","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":null,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}}}' headers: Api-Supported-Versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/fb397e44-76ea-490f-939f-5ce25b461e6d?api-version=2024-02-02-preview&azureAsyncOperation=true&t=638666187029999803&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=PDlJHCWwPpe7cdWbZ8ucq4nnpmCiHirD7EPZEm6JhLlWMOBcdDCWbIjpSHt8kYxlgHgEmx1E2Up-i9I0Uw7mLatNDUVyA2rJqsTFjToLKroK1VXnu65_pIJf3d1scXWVHN4JNP9k_IStqkyy6GkhpDhxZRaRpfVTis_g5ljQF6xAGe7H3bh7TTuRTRhs0ROFemLx5UHkGxvyAmcb7Zz704R1SD3S5ADnrc9nb40xiMiKJjXuRJ8HlOJpSPkfFOBj7TkzRzXVynmlGqbl7VNmU_M70CW-Ll91WOIoEm5nTd9FRwxTrDJxRLhz0GjKAOxOf6SBNzbd7gYkGEbCfFUtPQ&h=NN5f5geamwo8Hx4ueX1ubb6YUS2ddz5dauJevvjsXqE + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/df7dbb9f-fc5a-42ad-91f7-854c8f7d8894?api-version=2024-02-02-preview&azureAsyncOperation=true&t=638727496004000408&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=k5zxEgkxQXvK5O8ONEgVBpS5F2bQTfP6tKBEiX_wioPSiDxU6iNxHWsxvxhjlJh9NdO8z5MRIPz2zxc6Dh70rwpIuFEIkn7dQWKYQcBMZGQzh0QTRgZl3YjXbLIyrLXLIB2HYW818VCV1SwqvA4kRmJDcov-_JJVUUn0JOalnZOZbJ9g9CQt8AoOMMZgwWTOIHgQyNMtkN6mjf1mFhpPrb84ekhHlbBNmiidsb-jjf_zdnfb-_sB1IgDf7vw_-cINc5CoatDChYO0wfG4QKSyCuCbgk3kCOP35mU5J_kDTA6xYX0qLZEo70BDUAvEmMr-9I-_iMi9h-z7Ic5kpclWQ&h=BQL1FjqZLwxfAS0z4wPDYpbyx8lrLHGnWS2aRiDGHgo Cache-Control: - no-cache Content-Length: - - "5054" + - "3974" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:25:02 GMT + - Fri, 17 Jan 2025 22:26:39 GMT Expires: - "-1" Pragma: @@ -1698,21 +1858,21 @@ interactions: X-Ms-Async-Operation-Timeout: - PT15M X-Ms-Correlation-Request-Id: - - a59f68e0-a56c-486b-a349-851f131d3b34 + - 923443a7-1e4b-4f6c-979b-871be9fd8e30 X-Ms-Ratelimit-Remaining-Subscription-Resource-Requests: - "699" X-Ms-Request-Id: - - a59f68e0-a56c-486b-a349-851f131d3b34 + - 923443a7-1e4b-4f6c-979b-871be9fd8e30 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232503Z:a59f68e0-a56c-486b-a349-851f131d3b34 + - WESTUS2:20250117T222640Z:923443a7-1e4b-4f6c-979b-871be9fd8e30 X-Msedge-Ref: - - 'Ref A: 809FEDF46D4B446DA883A6CDBB43E16F Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:25:00Z' + - 'Ref A: 69669D95BEA0467D91937381CE76FBF0 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:26:38Z' X-Powered-By: - ASP.NET status: 201 Created code: 201 - duration: 2.449496439s - - id: 25 + duration: 2.383912941s + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1732,7 +1892,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/fb397e44-76ea-490f-939f-5ce25b461e6d?api-version=2024-02-02-preview&azureAsyncOperation=true&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&h=NN5f5geamwo8Hx4ueX1ubb6YUS2ddz5dauJevvjsXqE&s=PDlJHCWwPpe7cdWbZ8ucq4nnpmCiHirD7EPZEm6JhLlWMOBcdDCWbIjpSHt8kYxlgHgEmx1E2Up-i9I0Uw7mLatNDUVyA2rJqsTFjToLKroK1VXnu65_pIJf3d1scXWVHN4JNP9k_IStqkyy6GkhpDhxZRaRpfVTis_g5ljQF6xAGe7H3bh7TTuRTRhs0ROFemLx5UHkGxvyAmcb7Zz704R1SD3S5ADnrc9nb40xiMiKJjXuRJ8HlOJpSPkfFOBj7TkzRzXVynmlGqbl7VNmU_M70CW-Ll91WOIoEm5nTd9FRwxTrDJxRLhz0GjKAOxOf6SBNzbd7gYkGEbCfFUtPQ&t=638666187029999803 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/df7dbb9f-fc5a-42ad-91f7-854c8f7d8894?api-version=2024-02-02-preview&azureAsyncOperation=true&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&h=BQL1FjqZLwxfAS0z4wPDYpbyx8lrLHGnWS2aRiDGHgo&s=k5zxEgkxQXvK5O8ONEgVBpS5F2bQTfP6tKBEiX_wioPSiDxU6iNxHWsxvxhjlJh9NdO8z5MRIPz2zxc6Dh70rwpIuFEIkn7dQWKYQcBMZGQzh0QTRgZl3YjXbLIyrLXLIB2HYW818VCV1SwqvA4kRmJDcov-_JJVUUn0JOalnZOZbJ9g9CQt8AoOMMZgwWTOIHgQyNMtkN6mjf1mFhpPrb84ekhHlbBNmiidsb-jjf_zdnfb-_sB1IgDf7vw_-cINc5CoatDChYO0wfG4QKSyCuCbgk3kCOP35mU5J_kDTA6xYX0qLZEo70BDUAvEmMr-9I-_iMi9h-z7Ic5kpclWQ&t=638727496004000408 method: GET response: proto: HTTP/2.0 @@ -1742,7 +1902,7 @@ interactions: trailer: {} content_length: 278 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/fb397e44-76ea-490f-939f-5ce25b461e6d","name":"fb397e44-76ea-490f-939f-5ce25b461e6d","status":"Succeeded","startTime":"2024-11-07T23:25:02.5419367"}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/df7dbb9f-fc5a-42ad-91f7-854c8f7d8894","name":"df7dbb9f-fc5a-42ad-91f7-854c8f7d8894","status":"Succeeded","startTime":"2025-01-17T22:26:39.9565639"}' headers: Api-Supported-Versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview @@ -1753,7 +1913,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:25:17 GMT + - Fri, 17 Jan 2025 22:26:55 GMT Expires: - "-1" Pragma: @@ -1767,23 +1927,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 38e2ab9f-bf93-4dd8-acdf-2c4e309705e8 + - 3b5c9770-7daa-4e0a-b7b8-bf68f8795d59 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 38e2ab9f-bf93-4dd8-acdf-2c4e309705e8 + - 3b5c9770-7daa-4e0a-b7b8-bf68f8795d59 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232518Z:38e2ab9f-bf93-4dd8-acdf-2c4e309705e8 + - WESTUS2:20250117T222655Z:3b5c9770-7daa-4e0a-b7b8-bf68f8795d59 X-Msedge-Ref: - - 'Ref A: 999BF62B09284488AE5A2A6282EB3F28 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:25:18Z' + - 'Ref A: BDBA0EBDEA644D8D9382E870180B7E3E Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:26:55Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 378.992083ms - - id: 26 + duration: 357.934355ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1803,7 +1963,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/webfrontend?api-version=2024-02-02-preview + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/worker?api-version=2024-02-02-preview method: GET response: proto: HTTP/2.0 @@ -1811,20 +1971,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5645 + content_length: 4386 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerapps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:25:01.703096","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:25:01.703096"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","48.214.27.226"],"latestRevisionName":"webfrontend--je0r8x6","latestReadyRevisionName":"webfrontend--je0r8x6","latestRevisionFqdn":"webfrontend--je0r8x6.livelyisland-b8e736e6.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"connectionstrings--markdown"},{"name":"connectionstrings--messages"},{"name":"connectionstrings--pubsub"},{"name":"connectionstrings--requestlog"},{"name":"connectionstrings--cosmos","keyVaultUrl":"https://kvf2edecb5gj2m4tcideyiu.vault.azure.net/secrets/connectionString","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"webfrontend.livelyisland-b8e736e6.eastus2.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrgj2m4tcideyiu.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrgj2m4tcideyiu.azurecr.io/aspire-azd-tests/webfrontend-azdtest-lfa372e:azd-deploy-1731021426","imageType":"ContainerImage","name":"webfrontend","env":[{"name":"AZURE_CLIENT_ID","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"GOVERSION","value":"1.22"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"},{"name":"services__apiservice__http__0","value":"http://apiservice.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io"},{"name":"services__apiservice__https__0","value":"https://apiservice.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io"},{"name":"ConnectionStrings__markdown","secretRef":"connectionstrings--markdown"},{"name":"ConnectionStrings__messages","secretRef":"connectionstrings--messages"},{"name":"ConnectionStrings__pubsub","secretRef":"connectionstrings--pubsub"},{"name":"ConnectionStrings__requestlog","secretRef":"connectionstrings--requestlog"},{"name":"ConnectionStrings__cosmos","secretRef":"connectionstrings--cosmos"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/containerApps/webfrontend/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerapps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:26:39.1500265","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:26:39.1500265"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","20.122.82.135","172.177.177.115","20.122.82.26","20.122.82.51","20.122.81.165","20.122.82.63","20.122.81.203","172.177.180.194","20.122.81.254","20.122.82.103","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","135.224.183.166"],"latestRevisionName":"worker--015ac86","latestReadyRevisionName":"worker--015ac86","latestRevisionFqdn":"","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"acrlsxjxxqmwlwys.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrlsxjxxqmwlwys.azurecr.io/aspire-azd-tests/worker-azdtest-l9ec8e0:azd-deploy-1737152443","imageType":"ContainerImage","name":"worker","env":[{"name":"AZURE_CLIENT_ID","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/containerApps/worker/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}}}' headers: Api-Supported-Versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "5645" + - "4386" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:25:18 GMT + - Fri, 17 Jan 2025 22:26:55 GMT Expires: - "-1" Pragma: @@ -1838,23 +1998,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2db54b9d-e41a-4428-ae37-e6dacf2a4e0b + - 2c4b3396-f776-4064-8843-f06daf9818ff X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 2db54b9d-e41a-4428-ae37-e6dacf2a4e0b + - 2c4b3396-f776-4064-8843-f06daf9818ff X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232518Z:2db54b9d-e41a-4428-ae37-e6dacf2a4e0b + - WESTUS2:20250117T222656Z:2c4b3396-f776-4064-8843-f06daf9818ff X-Msedge-Ref: - - 'Ref A: 0B31E4564209459AA7A43ED1A558AE2C Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:25:18Z' + - 'Ref A: EECF099C56354293BDAE0EF329E20405 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:26:55Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 433.138852ms - - id: 27 + duration: 596.981298ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1876,7 +2036,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/webfrontend?api-version=2023-11-02-preview + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/worker?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -1884,20 +2044,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5509 + content_length: 4250 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerapps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:25:01.703096","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:25:01.703096"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","48.214.27.226"],"latestRevisionName":"webfrontend--je0r8x6","latestReadyRevisionName":"webfrontend--je0r8x6","latestRevisionFqdn":"webfrontend--je0r8x6.livelyisland-b8e736e6.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"connectionstrings--markdown"},{"name":"connectionstrings--messages"},{"name":"connectionstrings--pubsub"},{"name":"connectionstrings--requestlog"},{"name":"connectionstrings--cosmos","keyVaultUrl":"https://kvf2edecb5gj2m4tcideyiu.vault.azure.net/secrets/connectionString","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"webfrontend.livelyisland-b8e736e6.eastus2.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrgj2m4tcideyiu.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrgj2m4tcideyiu.azurecr.io/aspire-azd-tests/webfrontend-azdtest-lfa372e:azd-deploy-1731021426","name":"webfrontend","env":[{"name":"AZURE_CLIENT_ID","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"GOVERSION","value":"1.22"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"},{"name":"services__apiservice__http__0","value":"http://apiservice.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io"},{"name":"services__apiservice__https__0","value":"https://apiservice.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io"},{"name":"ConnectionStrings__markdown","secretRef":"connectionstrings--markdown"},{"name":"ConnectionStrings__messages","secretRef":"connectionstrings--messages"},{"name":"ConnectionStrings__pubsub","secretRef":"connectionstrings--pubsub"},{"name":"ConnectionStrings__requestlog","secretRef":"connectionstrings--requestlog"},{"name":"ConnectionStrings__cosmos","secretRef":"connectionstrings--cosmos"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/containerApps/webfrontend/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerapps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:26:39.1500265","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:26:39.1500265"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","20.122.82.135","172.177.177.115","20.122.82.26","20.122.82.51","20.122.81.165","20.122.82.63","20.122.81.203","172.177.180.194","20.122.81.254","20.122.82.103","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","135.224.183.166"],"latestRevisionName":"worker--015ac86","latestReadyRevisionName":"worker--015ac86","latestRevisionFqdn":"","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"acrlsxjxxqmwlwys.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrlsxjxxqmwlwys.azurecr.io/aspire-azd-tests/worker-azdtest-l9ec8e0:azd-deploy-1737152443","name":"worker","env":[{"name":"AZURE_CLIENT_ID","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/containerApps/worker/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}}}' headers: Api-Supported-Versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "5509" + - "4250" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:25:18 GMT + - Fri, 17 Jan 2025 22:26:56 GMT Expires: - "-1" Pragma: @@ -1911,23 +2071,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7d7b136d-56ef-472b-a38c-ca887b3f448f + - 66315c4a-bfc3-4738-8b94-702ff4f2689a X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 7d7b136d-56ef-472b-a38c-ca887b3f448f + - 66315c4a-bfc3-4738-8b94-702ff4f2689a X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232519Z:7d7b136d-56ef-472b-a38c-ca887b3f448f + - WESTUS2:20250117T222656Z:66315c4a-bfc3-4738-8b94-702ff4f2689a X-Msedge-Ref: - - 'Ref A: 9744C40A82E549B28DBC2508A99C3D76 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:25:18Z' + - 'Ref A: 9BCB23EE670F4D3C848982C6D8F41C1D Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:26:56Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 421.221725ms - - id: 28 + duration: 467.15733ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1949,7 +2109,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lfa372e%27&api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l9ec8e0%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1959,7 +2119,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","name":"rg-azdtest-lfa372e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","name":"rg-azdtest-l9ec8e0","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1968,7 +2128,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:25:18 GMT + - Fri, 17 Jan 2025 22:26:56 GMT Expires: - "-1" Pragma: @@ -1980,1176 +2140,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5d1705b7-8205-4347-aaef-0bbb3604f204 + - 2b5a1372-f6bc-4ded-8fa5-433a620b8114 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 5d1705b7-8205-4347-aaef-0bbb3604f204 + - 2b5a1372-f6bc-4ded-8fa5-433a620b8114 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232519Z:5d1705b7-8205-4347-aaef-0bbb3604f204 + - WESTUS2:20250117T222656Z:2b5a1372-f6bc-4ded-8fa5-433a620b8114 X-Msedge-Ref: - - 'Ref A: 7FA1963F09D742AF869F4705C3E09C8B Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:25:19Z' + - 'Ref A: 810B55E3064F4B7BB77FA1F4FBAD2C4F Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:26:56Z' status: 200 OK code: 200 - duration: 87.167967ms - - id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: -1 - transfer_encoding: - - chunked - trailer: {} - host: acrgj2m4tcideyiu.azurecr.io - remote_addr: "" - request_uri: "" - body: access_token=SANITIZED&grant_type=access_token&service=acrgj2m4tcideyiu.azurecr.io - form: - access_token: - - SANITIZED - grant_type: - - access_token - service: - - acrgj2m4tcideyiu.azurecr.io - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - Content-Type: - - application/x-www-form-urlencoded - User-Agent: - - azsdk-go-azd-acr/0.0.0-dev.0 (commit 0000000000000000000000000000000000000000) (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://acrgj2m4tcideyiu.azurecr.io:443/oauth2/exchange - method: POST - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: - - chunked - trailer: {} - content_length: -1 - uncompressed: false - body: '{"refresh_token":"SANITIZED"}' - headers: - Connection: - - keep-alive - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 07 Nov 2024 23:25:19 GMT - Server: - - AzureContainerRegistry - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Ms-Correlation-Request-Id: - - 3163d4bc-01db-4075-96c0-29d906475834 - X-Ms-Ratelimit-Remaining-Calls-Per-Second: - - "166.633333" - status: 200 OK - code: 200 - duration: 108.316638ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 1328 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: '{"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{}}},"location":"eastus2","properties":{"configuration":{"activeRevisionsMode":"single","registries":[{"identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu","server":"acrgj2m4tcideyiu.azurecr.io"}],"runtime":{"dotnet":{"autoConfigureDataProtection":true}}},"environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","template":{"containers":[{"env":[{"name":"AZURE_CLIENT_ID","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"image":"acrgj2m4tcideyiu.azurecr.io/aspire-azd-tests/worker-azdtest-lfa372e:azd-deploy-1731021426","name":"worker"}],"scale":{"minReplicas":1}}},"tags":{"aspire-resource-name":"worker","azd-service-name":"worker"}}' - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - Content-Length: - - "1328" - Content-Type: - - application/json - User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/worker?api-version=2024-02-02-preview - method: PUT - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 3478 - uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerapps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:25:33.2496275Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:25:33.2496275Z"},"properties":{"provisioningState":"InProgress","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","48.214.27.226"],"customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"acrgj2m4tcideyiu.azurecr.io","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":null,"terminationGracePeriodSeconds":null,"containers":[{"image":"acrgj2m4tcideyiu.azurecr.io/aspire-azd-tests/worker-azdtest-lfa372e:azd-deploy-1731021426","imageType":"CloudBuild","name":"worker","env":[{"name":"AZURE_CLIENT_ID","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}]}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":null,"rules":null},"volumes":null,"serviceBinds":null},"delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}}}' - headers: - Api-Supported-Versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview - Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d4eca5c0-096e-41b5-9028-3bc881523d62?api-version=2024-02-02-preview&azureAsyncOperation=true&t=638666187342027585&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=DFleJ5PSjUhlkKoHJgE15uP_0eZd3VGfp8osNritPE6AZ71hXbwvC0yFPNvMhJ7f_M5zs9BbSLE8iK4YyyZyURYW2QBpIzIvEQuFK7l9RCX6QE6u4M2AEEgo2iNlRMnGk132Xl1ZHOGVihFVQRCVuZsW6nVv4lU7IbY_pHQ_PbJIILKJzD5nQ4tfpHAVOQBiTkzRj51lMSqH_BvuhjCHdd2Z1HxxTP4qG-gkUBt8Kv9sDsIeAPHVSuHLG1noQx5YpjErPI0WbOnn251f10vmXZmU__JV9jwo0DihsBOpyVeb9NHGFUEB70ItIXhfx-Kx1_19MYtFoon149-IyEj4JA&h=BsTOWCN5fPEmsz5cc4W9ZfDVSONoGfiv_lgqMVgmqVs - Cache-Control: - - no-cache - Content-Length: - - "3478" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 07 Nov 2024 23:25:33 GMT - Expires: - - "-1" - Pragma: - - no-cache - Retry-After: - - "0" - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Async-Operation-Timeout: - - PT15M - X-Ms-Correlation-Request-Id: - - 3c11af79-7809-4bd0-bdcd-c0e6127b2665 - X-Ms-Ratelimit-Remaining-Subscription-Resource-Requests: - - "699" - X-Ms-Request-Id: - - 3c11af79-7809-4bd0-bdcd-c0e6127b2665 - X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232534Z:3c11af79-7809-4bd0-bdcd-c0e6127b2665 - X-Msedge-Ref: - - 'Ref A: 5BE71777899E41C9A26A9B406DE26CAC Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:25:32Z' - X-Powered-By: - - ASP.NET - status: 201 Created - code: 201 - duration: 2.161457177s - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d4eca5c0-096e-41b5-9028-3bc881523d62?api-version=2024-02-02-preview&azureAsyncOperation=true&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&h=BsTOWCN5fPEmsz5cc4W9ZfDVSONoGfiv_lgqMVgmqVs&s=DFleJ5PSjUhlkKoHJgE15uP_0eZd3VGfp8osNritPE6AZ71hXbwvC0yFPNvMhJ7f_M5zs9BbSLE8iK4YyyZyURYW2QBpIzIvEQuFK7l9RCX6QE6u4M2AEEgo2iNlRMnGk132Xl1ZHOGVihFVQRCVuZsW6nVv4lU7IbY_pHQ_PbJIILKJzD5nQ4tfpHAVOQBiTkzRj51lMSqH_BvuhjCHdd2Z1HxxTP4qG-gkUBt8Kv9sDsIeAPHVSuHLG1noQx5YpjErPI0WbOnn251f10vmXZmU__JV9jwo0DihsBOpyVeb9NHGFUEB70ItIXhfx-Kx1_19MYtFoon149-IyEj4JA&t=638666187342027585 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 278 - uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.App/locations/eastus2/containerappOperationStatuses/d4eca5c0-096e-41b5-9028-3bc881523d62","name":"d4eca5c0-096e-41b5-9028-3bc881523d62","status":"Succeeded","startTime":"2024-11-07T23:25:33.7233048"}' - headers: - Api-Supported-Versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview - Cache-Control: - - no-cache - Content-Length: - - "278" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 07 Nov 2024 23:25:48 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - Vary: - - Accept-Encoding - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - f9848558-d79d-43ab-8ab6-004e03291387 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - f9848558-d79d-43ab-8ab6-004e03291387 - X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232549Z:f9848558-d79d-43ab-8ab6-004e03291387 - X-Msedge-Ref: - - 'Ref A: F6E3599A392E4EFBA2E071D9474EA5D5 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:25:49Z' - X-Powered-By: - - ASP.NET - status: 200 OK - code: 200 - duration: 116.444287ms - - id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/worker?api-version=2024-02-02-preview - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 3890 - uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerapps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:25:33.2496275","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:25:33.2496275"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","workloadProfileName":"consumption","patchingMode":"Automatic","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","48.214.27.226"],"latestRevisionName":"worker--zkkxaun","latestReadyRevisionName":"worker--zkkxaun","latestRevisionFqdn":"","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"acrgj2m4tcideyiu.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"identitySettings":[],"dapr":null,"runtime":{"dotnet":{"autoConfigureDataProtection":true}},"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrgj2m4tcideyiu.azurecr.io/aspire-azd-tests/worker-azdtest-lfa372e:azd-deploy-1731021426","imageType":"ContainerImage","name":"worker","env":[{"name":"AZURE_CLIENT_ID","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/containerApps/worker/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}}}' - headers: - Api-Supported-Versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview - Cache-Control: - - no-cache - Content-Length: - - "3890" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 07 Nov 2024 23:25:49 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - Vary: - - Accept-Encoding - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 463c2ac1-95b7-4717-b2f2-69dfa50f5fed - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16498" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1098" - X-Ms-Request-Id: - - 463c2ac1-95b7-4717-b2f2-69dfa50f5fed - X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232549Z:463c2ac1-95b7-4717-b2f2-69dfa50f5fed - X-Msedge-Ref: - - 'Ref A: 365C5634A64041D1A721AB8D8CF159DA Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:25:49Z' - X-Powered-By: - - ASP.NET - status: 200 OK - code: 200 - duration: 199.899976ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/worker?api-version=2023-11-02-preview - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 3754 - uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerapps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:25:33.2496275","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:25:33.2496275"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","48.214.27.226"],"latestRevisionName":"worker--zkkxaun","latestReadyRevisionName":"worker--zkkxaun","latestRevisionFqdn":"","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"acrgj2m4tcideyiu.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrgj2m4tcideyiu.azurecr.io/aspire-azd-tests/worker-azdtest-lfa372e:azd-deploy-1731021426","name":"worker","env":[{"name":"AZURE_CLIENT_ID","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/containerApps/worker/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}}}' - headers: - Api-Supported-Versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview - Cache-Control: - - no-cache - Content-Length: - - "3754" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 07 Nov 2024 23:25:49 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - Vary: - - Accept-Encoding - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - e33565f2-5b6b-4394-afe8-5f32324b80be - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - e33565f2-5b6b-4394-afe8-5f32324b80be - X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232550Z:e33565f2-5b6b-4394-afe8-5f32324b80be - X-Msedge-Ref: - - 'Ref A: 75557FF8ACC342DC93C1D5583FDC291C Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:25:49Z' - X-Powered-By: - - ASP.NET - status: 200 OK - code: 200 - duration: 549.822434ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lfa372e%27&api-version=2021-04-01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 288 - uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","name":"rg-azdtest-lfa372e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"properties":{"provisioningState":"Succeeded"}}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "288" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 07 Nov 2024 23:25:49 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 402bb058-0709-4019-b8c0-ba38278a3c8c - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - 402bb058-0709-4019-b8c0-ba38278a3c8c - X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232550Z:402bb058-0709-4019-b8c0-ba38278a3c8c - X-Msedge-Ref: - - 'Ref A: A5C5847F79AE481CB06FB7AE113F731E Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:25:50Z' - status: 200 OK - code: 200 - duration: 51.842083ms - - id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2189911 - uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=zVDLaoNAFP0W7zqBMZVS3MXcCUgzdzKvlHQXUiOijNAaxir%2be2tb%2f6HL84JzzgjX1neVv1%2b6qvW2rQv%2fAekIL9xYZzaQ%2bnvTrIBv%2f%2bAIvui74%2bW9q%2bbAc%2fEJKcTRU0T23IvhvIbVj0O3YdFixiJd7zOBZVDuFYVTCWGWaWxQsdNeOM7IZqjsaUf27aZjkgfDgkT37bv2hHmgoUwk1om05QNVMRnMH0WtehpEELbcCMwZTEvPecC%2frrnjZPX24Mzy73w3d1oe%2bS8zTV8%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lfa372e-1731021426","location":"eastus2","name":"azdtest-lfa372e-1731021426","properties":{"correlationId":"fb545d4c-36ab-4a63-94eb-afca495ffcc7","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceName":"rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceName":"rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/cosmos","resourceName":"cosmos","resourceType":"Microsoft.Resources/deployments"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceName":"rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/storage","resourceName":"storage","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT5M49.9388816S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/19305341-30ce-5458-9fbe-f4360532fe40"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ContainerRegistry/registries/acrgj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ContainerRegistry/registries/acrgj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/8dfc28cd-f974-54ef-8d43-bdd3c46eaa32"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-gj2m4tcideyiu/sqlDatabases/db3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/348a7c33-1b1f-5bd6-8d16-3c9dc72238fe"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/6a29dbf1-ed9f-5df4-b15e-2bf1ce4c4927"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu/secrets/connectionString"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.OperationalInsights/workspaces/law-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/8ba3fa54-1c85-595d-acca-dc084c613c4f"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/a0691050-95f9-50c3-9c4d-cbe9b5e98488"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/ad5d2df9-e45e-581c-879d-0a2163f80cee"}],"outputs":{"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"livelyisland-b8e736e6.eastus2.azurecontainerapps.io"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-gj2m4tcideyiu"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrgj2m4tcideyiu.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acrgj2m4tcideyiu"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-gj2m4tcideyiu"},"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-gj2m4tcideyiu"},"servicE_BINDING_KVF2EDECB5_ENDPOINT":{"type":"String","value":"https://kvf2edecb5gj2m4tcideyiu.vault.azure.net/"},"servicE_BINDING_KVF2EDECB5_NAME":{"type":"String","value":"kvf2edecb5gj2m4tcideyiu"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storagegj2m4tcideyiu.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storagegj2m4tcideyiu.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storagegj2m4tcideyiu.table.core.windows.net/"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-lfa372e"},"goversion":{"type":"String","value":"1.22"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"62661785-adcf-4117-b9d0-22b3aa2b4ebf"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"10347569819010401111","timestamp":"2024-11-07T23:23:43.105272Z"},"tags":{"azd-env-name":"azdtest-lfa372e","azd-provision-param-hash":"15a2ed734364e02083b6013a24057945563929d961c974ebdcbb7d6d90bdbe31"},"type":"Microsoft.Resources/deployments"}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "2189911" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 07 Nov 2024 23:26:03 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 24a955bf-315f-4682-bd4e-e0630e04f151 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16500" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1100" - X-Ms-Request-Id: - - 24a955bf-315f-4682-bd4e-e0630e04f151 - X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232603Z:24a955bf-315f-4682-bd4e-e0630e04f151 - X-Msedge-Ref: - - 'Ref A: 484DE0FB41AC481495B7A08360F3DA31 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:25:54Z' - status: 200 OK - code: 200 - duration: 9.692721228s - - id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=zVDLaoNAFP0W7zqBMZVS3MXcCUgzdzKvlHQXUiOijNAaxir%2be2tb%2f6HL84JzzgjX1neVv1%2b6qvW2rQv%2fAekIL9xYZzaQ%2bnvTrIBv%2f%2bAIvui74%2bW9q%2bbAc%2fEJKcTRU0T23IvhvIbVj0O3YdFixiJd7zOBZVDuFYVTCWGWaWxQsdNeOM7IZqjsaUf27aZjkgfDgkT37bv2hHmgoUwk1om05QNVMRnMH0WtehpEELbcCMwZTEvPecC%2frrnjZPX24Mzy73w3d1oe%2bS8zTV8%3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1239007 - uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=3ZHNboMwEISfBZ9TCZcqqrgBNkpDbPD6p6K3iNKKgIzUEkGJePdCCS%2fR2%2b7MtyuN5oaK1naVvZ67qrWqrUv7jfwbooFUWj4uoy2HLjt%2fddVCJOUP8hF2nh2u8oGN%2bQPa%2fRHQ9puHvb0DdRwy8tkL%2fUaYFk%2bchCGQhgjXxExTl6uQCGUirt4%2fAPP0JN0%2bJXrmioGPec%2bJdufvLr%2fMtxGmYEKmcHMAAxIMz4w5klmTCoexbuAIhu1ZDS9wKTwxmlzoLhG1UWja3bP8iyivdKnFQ769Ns0O6USmWh22NQp4QIKluk1Z%2bbnGlY8oVxCctNyExaca0oyuyjT9Ag%3d%3d","value":[]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "1239007" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 07 Nov 2024 23:26:08 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - c08044f9-c08a-4e95-a851-b3ecfa41d7de - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - c08044f9-c08a-4e95-a851-b3ecfa41d7de - X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232608Z:c08044f9-c08a-4e95-a851-b3ecfa41d7de - X-Msedge-Ref: - - 'Ref A: 690F4519615D4F81B13D7F7F2563DFEC Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:03Z' - status: 200 OK - code: 200 - duration: 4.580065135s - - id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=3ZHNboMwEISfBZ9TCZcqqrgBNkpDbPD6p6K3iNKKgIzUEkGJePdCCS%2fR2%2b7MtyuN5oaK1naVvZ67qrWqrUv7jfwbooFUWj4uoy2HLjt%2fddVCJOUP8hF2nh2u8oGN%2bQPa%2fRHQ9puHvb0DdRwy8tkL%2fUaYFk%2bchCGQhgjXxExTl6uQCGUirt4%2fAPP0JN0%2bJXrmioGPec%2bJdufvLr%2fMtxGmYEKmcHMAAxIMz4w5klmTCoexbuAIhu1ZDS9wKTwxmlzoLhG1UWja3bP8iyivdKnFQ769Ns0O6USmWh22NQp4QIKluk1Z%2bbnGlY8oVxCctNyExaca0oyuyjT9Ag%3d%3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1687773 - uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=ZVBda4MwFP0t5tlBbGUM36I3MmlzU2PS0b2VzokoETaLzuJ%2f3zLrXvZ4vrj3nBu5dLav7fXc153VXVPaTxLdCGeFNsWGRPbatv4druiFO9HZbDn2h%2fNHX7v0rvwiEQm8Jw%2f1aRTT6YH4vw7VDasWUOqpJo0FVENuXkGYPESIYwUt5PSYCsMp6hhyfUxQv72rAOW%2boIME8%2bO7jAjZgFMVSmhCqast1gEWkD2KJh9xEoPQ1UZARsnsE%2fdmwlErtnffLk1SxTDhd3oll0LbFZpdIY1%2bXmHCkAFzi6zM4v9b598Rp3Oj5IEviXn%2bBg%3d%3d","value":[]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "1687773" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 07 Nov 2024 23:26:11 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 90cddb57-d027-4ba8-a9ce-29fe98387323 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - 90cddb57-d027-4ba8-a9ce-29fe98387323 - X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232612Z:90cddb57-d027-4ba8-a9ce-29fe98387323 - X-Msedge-Ref: - - 'Ref A: 8EAE6F4195F34C9E9BC6C1E31C04954C Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:08Z' - status: 200 OK - code: 200 - duration: 3.749204221s - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZVBda4MwFP0t5tlBbGUM36I3MmlzU2PS0b2VzokoETaLzuJ%2f3zLrXvZ4vrj3nBu5dLav7fXc153VXVPaTxLdCGeFNsWGRPbatv4druiFO9HZbDn2h%2fNHX7v0rvwiEQm8Jw%2f1aRTT6YH4vw7VDasWUOqpJo0FVENuXkGYPESIYwUt5PSYCsMp6hhyfUxQv72rAOW%2boIME8%2bO7jAjZgFMVSmhCqast1gEWkD2KJh9xEoPQ1UZARsnsE%2fdmwlErtnffLk1SxTDhd3oll0LbFZpdIY1%2bXmHCkAFzi6zM4v9b598Rp3Oj5IEviXn%2bBg%3d%3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 45429 - uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=ZVBdT4NAEPwtvWdMODGN6RtwR2rpHdzeh8G3BtFQCCRKA9Lw3%2bVaMZq%2b7czO7GT2jPK26crmdOjKtlFtVTSfaHNGz1QqLe3UFEOXHj660gri4gttEF49rrjKBjZmd8i5KKDtlx321iuoooCR917oF8K0eOAkCIDURLgmYpq6XAVEKBNy9foGmCd76fYJ0bMuH%2fiY9Zxod77u8uPsDTEFEzCF6y0YkGB4asyOzJxUOIh0DTswbM0qeIJj7onRZEJ3saiMQpODZKLVNqRcgb%2b3lZpTXTuI%2brbg%2fX%2b4INv%2bxhGBz0P6Q%2f9VauktUMeXtAWGPveJb6MW5vrX39ibELunGpKUXh3T9A0%3d","value":[]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "45429" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 07 Nov 2024 23:26:12 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 8cbeefac-cb32-4598-9334-642f03d2457f - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - 8cbeefac-cb32-4598-9334-642f03d2457f - X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232613Z:8cbeefac-cb32-4598-9334-642f03d2457f - X-Msedge-Ref: - - 'Ref A: D0F8AB2BD0534A3793A87E60871893A7 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:12Z' - status: 200 OK - code: 200 - duration: 796.269819ms - - id: 39 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZVBdT4NAEPwtvWdMODGN6RtwR2rpHdzeh8G3BtFQCCRKA9Lw3%2bVaMZq%2b7czO7GT2jPK26crmdOjKtlFtVTSfaHNGz1QqLe3UFEOXHj660gri4gttEF49rrjKBjZmd8i5KKDtlx321iuoooCR917oF8K0eOAkCIDURLgmYpq6XAVEKBNy9foGmCd76fYJ0bMuH%2fiY9Zxod77u8uPsDTEFEzCF6y0YkGB4asyOzJxUOIh0DTswbM0qeIJj7onRZEJ3saiMQpODZKLVNqRcgb%2b3lZpTXTuI%2brbg%2fX%2b4INv%2bxhGBz0P6Q%2f9VauktUMeXtAWGPveJb6MW5vrX39ibELunGpKUXh3T9A0%3d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 4787 - uncompressed: false - body: '{"value":[]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "4787" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 07 Nov 2024 23:26:13 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - aae33e75-a0df-4789-9080-107ec4a54eab - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - aae33e75-a0df-4789-9080-107ec4a54eab - X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232613Z:aae33e75-a0df-4789-9080-107ec4a54eab - X-Msedge-Ref: - - 'Ref A: 4FA26D54CFB34B328755B5BA8A7EEC5A Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:13Z' - status: 200 OK - code: 200 - duration: 674.134668ms - - id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lfa372e%27&api-version=2021-04-01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 288 - uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","name":"rg-azdtest-lfa372e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"properties":{"provisioningState":"Succeeded"}}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "288" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 07 Nov 2024 23:26:13 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 6c27b03f-ee0a-4c9a-8f1c-00b3bec52acc - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - 6c27b03f-ee0a-4c9a-8f1c-00b3bec52acc - X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232614Z:6c27b03f-ee0a-4c9a-8f1c-00b3bec52acc - X-Msedge-Ref: - - 'Ref A: 9E594D2914FC44B097A41468C9847413 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:14Z' - status: 200 OK - code: 200 - duration: 70.595367ms - - id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27apiservice%27&api-version=2021-04-01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 666 - uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"}}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "666" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 07 Nov 2024 23:26:13 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 03ae56e3-05d5-4864-bf26-70f4c632634d - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16498" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1098" - X-Ms-Request-Id: - - 03ae56e3-05d5-4864-bf26-70f4c632634d - X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232614Z:03ae56e3-05d5-4864-bf26-70f4c632634d - X-Msedge-Ref: - - 'Ref A: 0EAC74C95B6341B59788F822A9752D49 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:14Z' - status: 200 OK - code: 200 - duration: 311.61839ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lfa372e%27&api-version=2021-04-01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 288 - uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","name":"rg-azdtest-lfa372e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"properties":{"provisioningState":"Succeeded"}}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "288" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 07 Nov 2024 23:26:13 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 4438f934-8027-48d1-a414-e48d07299d8f - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16497" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1097" - X-Ms-Request-Id: - - 4438f934-8027-48d1-a414-e48d07299d8f - X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232614Z:4438f934-8027-48d1-a414-e48d07299d8f - X-Msedge-Ref: - - 'Ref A: 818488EC13374FB99762D93DC69E421F Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:14Z' - status: 200 OK - code: 200 - duration: 44.302629ms - - id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27apiservice%27&api-version=2021-04-01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 666 - uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"azd-service-name":"apiservice","aspire-resource-name":"apiservice"}}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "666" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 07 Nov 2024 23:26:14 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 17ad1961-4cfd-4d84-9ea7-3daefa521840 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16496" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1096" - X-Ms-Request-Id: - - 17ad1961-4cfd-4d84-9ea7-3daefa521840 - X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232614Z:17ad1961-4cfd-4d84-9ea7-3daefa521840 - X-Msedge-Ref: - - 'Ref A: 563E859544A348EAB8ABE6192B56EE76 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:14Z' - status: 200 OK - code: 200 - duration: 365.037462ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/apiservice?api-version=2023-11-02-preview - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 4365 - uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerapps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:24:09.7806272","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:24:09.7806272"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","48.214.27.226"],"latestRevisionName":"apiservice--00h91dt","latestReadyRevisionName":"apiservice--00h91dt","latestRevisionFqdn":"apiservice--00h91dt.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"apiservice.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io","external":false,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":true,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrgj2m4tcideyiu.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrgj2m4tcideyiu.azurecr.io/aspire-azd-tests/apiservice-azdtest-lfa372e:azd-deploy-1731021426","name":"apiservice","env":[{"name":"AZURE_CLIENT_ID","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/containerApps/apiservice/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}}}' - headers: - Api-Supported-Versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview - Cache-Control: - - no-cache - Content-Length: - - "4365" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 07 Nov 2024 23:26:14 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - Vary: - - Accept-Encoding - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - f52e911a-4399-4d61-8720-5002fce8f849 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16495" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1095" - X-Ms-Request-Id: - - f52e911a-4399-4d61-8720-5002fce8f849 - X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232615Z:f52e911a-4399-4d61-8720-5002fce8f849 - X-Msedge-Ref: - - 'Ref A: 013F844AA5F14C648127C87CD1CC7F0C Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:14Z' - X-Powered-By: - - ASP.NET - status: 200 OK - code: 200 - duration: 367.553146ms - - id: 45 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27pubsub%27&api-version=2021-04-01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 650 - uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"}}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "650" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 07 Nov 2024 23:26:15 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - e8fd9bbb-57a0-4f68-a33f-aad5eae49841 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - e8fd9bbb-57a0-4f68-a33f-aad5eae49841 - X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232615Z:e8fd9bbb-57a0-4f68-a33f-aad5eae49841 - X-Msedge-Ref: - - 'Ref A: DCF1D6C7FDD04C1DB0CFE4AE72734BD2 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:15Z' - status: 200 OK - code: 200 - duration: 319.513241ms - - id: 46 + duration: 83.641223ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -3170,8 +2175,8 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27webfrontend%27&api-version=2021-04-01 + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3179,18 +2184,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 670 + content_length: 7301 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l9ec8e0-1737152443","location":"eastus2","name":"azdtest-l9ec8e0-1737152443","properties":{"correlationId":"9ba108b9-2a4e-4013-92a9-70f87d052c91","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","resourceName":"rg-azdtest-l9ec8e0","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","resourceName":"rg-azdtest-l9ec8e0","resourceType":"Microsoft.Resources/resourceGroups"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/storage","resourceName":"storage","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT3M46.7563092S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/8ce016b1-9caf-533a-aedd-7b26b1744d62"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ContainerRegistry/registries/acrlsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ContainerRegistry/registries/acrlsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/3bae0392-4f0c-5dbb-8852-0bea6a880238"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.OperationalInsights/workspaces/law-lsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/69a275a2-c893-532c-b813-19ce25202057"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/c25fd737-9232-5f2f-9190-8100cb9c056b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/ca8eed46-c023-55b7-9acd-f361e8f31f51"}],"outputs":{"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"kindmushroom-e5145b77.eastus2.azurecontainerapps.io"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-lsxjxxqmwlwys"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrlsxjxxqmwlwys.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acrlsxjxxqmwlwys"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-lsxjxxqmwlwys"},"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-lsxjxxqmwlwys"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storagelsxjxxqmwlwys.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storagelsxjxxqmwlwys.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storagelsxjxxqmwlwys.table.core.windows.net/"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-l9ec8e0"},"goversion":{"type":"String","value":"1.22"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"62661785-adcf-4117-b9d0-22b3aa2b4ebf"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"7799194296368964685","timestamp":"2025-01-17T22:24:56.7441448Z"},"tags":{"azd-env-name":"azdtest-l9ec8e0","azd-provision-param-hash":"5078b0222ae3b911466620e07caac5df333846f9302ccf48f5425f919d2b93fd"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "670" + - "7301" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:15 GMT + - Fri, 17 Jan 2025 22:27:00 GMT Expires: - "-1" Pragma: @@ -3202,21 +2207,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c887ca07-fa1b-4620-a306-691edf14c640 + - 680675eb-08f8-4150-ac92-6e94f07c736a X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - c887ca07-fa1b-4620-a306-691edf14c640 + - 680675eb-08f8-4150-ac92-6e94f07c736a X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232615Z:c887ca07-fa1b-4620-a306-691edf14c640 + - WESTUS2:20250117T222701Z:680675eb-08f8-4150-ac92-6e94f07c736a X-Msedge-Ref: - - 'Ref A: AEBAC1DFAC8C492AAD46A45DD02AEC12 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:15Z' + - 'Ref A: FE27F379B5004223BAA2EDFDF742326B Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:00Z' status: 200 OK code: 200 - duration: 326.813696ms - - id: 47 + duration: 509.739092ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -3238,7 +2243,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lfa372e%27&api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l9ec8e0%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3248,7 +2253,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","name":"rg-azdtest-lfa372e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","name":"rg-azdtest-l9ec8e0","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -3257,173 +2262,33 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:15 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - d3dbed3c-1056-4c66-9ec7-0d0b70b0707e - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - d3dbed3c-1056-4c66-9ec7-0d0b70b0707e - X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232615Z:d3dbed3c-1056-4c66-9ec7-0d0b70b0707e - X-Msedge-Ref: - - 'Ref A: FBB614935A3343D7A8C99FFCA7FCA0B0 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:15Z' - status: 200 OK - code: 200 - duration: 51.368785ms - - id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27webfrontend%27&api-version=2021-04-01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 670 - uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"}}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "670" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 07 Nov 2024 23:26:15 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 339e6811-fc28-4d1a-a3d0-deb382021d82 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - 339e6811-fc28-4d1a-a3d0-deb382021d82 - X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232616Z:339e6811-fc28-4d1a-a3d0-deb382021d82 - X-Msedge-Ref: - - 'Ref A: EA24BFA28E28495C8B39DA03BC0BC816 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:15Z' - status: 200 OK - code: 200 - duration: 301.172453ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/webfrontend?api-version=2023-11-02-preview - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 5509 - uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerapps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:25:01.703096","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:25:01.703096"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","48.214.27.226"],"latestRevisionName":"webfrontend--je0r8x6","latestReadyRevisionName":"webfrontend--je0r8x6","latestRevisionFqdn":"webfrontend--je0r8x6.livelyisland-b8e736e6.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"connectionstrings--markdown"},{"name":"connectionstrings--messages"},{"name":"connectionstrings--pubsub"},{"name":"connectionstrings--requestlog"},{"name":"connectionstrings--cosmos","keyVaultUrl":"https://kvf2edecb5gj2m4tcideyiu.vault.azure.net/secrets/connectionString","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"webfrontend.livelyisland-b8e736e6.eastus2.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrgj2m4tcideyiu.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrgj2m4tcideyiu.azurecr.io/aspire-azd-tests/webfrontend-azdtest-lfa372e:azd-deploy-1731021426","name":"webfrontend","env":[{"name":"AZURE_CLIENT_ID","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"GOVERSION","value":"1.22"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"},{"name":"services__apiservice__http__0","value":"http://apiservice.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io"},{"name":"services__apiservice__https__0","value":"https://apiservice.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io"},{"name":"ConnectionStrings__markdown","secretRef":"connectionstrings--markdown"},{"name":"ConnectionStrings__messages","secretRef":"connectionstrings--messages"},{"name":"ConnectionStrings__pubsub","secretRef":"connectionstrings--pubsub"},{"name":"ConnectionStrings__requestlog","secretRef":"connectionstrings--requestlog"},{"name":"ConnectionStrings__cosmos","secretRef":"connectionstrings--cosmos"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/containerApps/webfrontend/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}}}' - headers: - Api-Supported-Versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview - Cache-Control: - - no-cache - Content-Length: - - "5509" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 07 Nov 2024 23:26:16 GMT + - Fri, 17 Jan 2025 22:27:00 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - max-age=31536000; includeSubDomains - Vary: - - Accept-Encoding X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 53c7f990-9056-4115-8f9e-5e2773372b70 + - 87bbae36-4807-4587-a3f4-b6a5dab7c742 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 53c7f990-9056-4115-8f9e-5e2773372b70 + - 87bbae36-4807-4587-a3f4-b6a5dab7c742 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232616Z:53c7f990-9056-4115-8f9e-5e2773372b70 + - WESTUS2:20250117T222701Z:87bbae36-4807-4587-a3f4-b6a5dab7c742 X-Msedge-Ref: - - 'Ref A: 90DCF27F22E54D9CBE47AAF9A5A7F451 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:16Z' - X-Powered-By: - - ASP.NET + - 'Ref A: 5CBA647900184CF49671C7BBCC20ABBC Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:01Z' status: 200 OK code: 200 - duration: 565.483733ms - - id: 50 + duration: 61.714641ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -3445,7 +2310,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27worker%27&api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27apiservice%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3453,18 +2318,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 650 + content_length: 666 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/worker","name":"worker","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"azd-service-name":"worker","aspire-resource-name":"worker"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "650" + - "666" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:16 GMT + - Fri, 17 Jan 2025 22:27:00 GMT Expires: - "-1" Pragma: @@ -3476,21 +2341,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 10acaf21-5d1d-441d-b3aa-ae3faa8047f0 + - dec414db-e30e-4ffa-be6a-d53a511e4e79 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 10acaf21-5d1d-441d-b3aa-ae3faa8047f0 + - dec414db-e30e-4ffa-be6a-d53a511e4e79 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232617Z:10acaf21-5d1d-441d-b3aa-ae3faa8047f0 + - WESTUS2:20250117T222701Z:dec414db-e30e-4ffa-be6a-d53a511e4e79 X-Msedge-Ref: - - 'Ref A: AB0E0FE4EC5A44568B075C060BA23B7E Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:16Z' + - 'Ref A: 22EFC616BDCA46DFB04B4DFAF1316030 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:01Z' status: 200 OK code: 200 - duration: 458.38359ms - - id: 51 + duration: 299.766328ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -3512,7 +2377,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lfa372e%27&api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l9ec8e0%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3522,7 +2387,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","name":"rg-azdtest-lfa372e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","name":"rg-azdtest-l9ec8e0","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -3531,7 +2396,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:16 GMT + - Fri, 17 Jan 2025 22:27:01 GMT Expires: - "-1" Pragma: @@ -3543,21 +2408,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 0934118e-af12-4803-ae39-3fcc599a1b35 + - 3f4f73ee-b7a2-4949-ac12-99ff8b9776d1 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 0934118e-af12-4803-ae39-3fcc599a1b35 + - 3f4f73ee-b7a2-4949-ac12-99ff8b9776d1 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232617Z:0934118e-af12-4803-ae39-3fcc599a1b35 + - WESTUS2:20250117T222701Z:3f4f73ee-b7a2-4949-ac12-99ff8b9776d1 X-Msedge-Ref: - - 'Ref A: 5940B9DDDBA24D23BDC00976E11BD3FE Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:17Z' + - 'Ref A: 296E240A372B445CABB0C8E0017087AF Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:01Z' status: 200 OK code: 200 - duration: 39.504658ms - - id: 52 + duration: 89.846349ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -3579,7 +2444,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27worker%27&api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27apiservice%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3587,18 +2452,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 650 + content_length: 666 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/worker","name":"worker","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"worker","azd-service-name":"worker"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "650" + - "666" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:17 GMT + - Fri, 17 Jan 2025 22:27:01 GMT Expires: - "-1" Pragma: @@ -3610,21 +2475,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6285ed00-f13c-44b0-ac6e-9804ffb04546 + - e9b2b698-f356-4517-b229-0ed81df1ac8d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 6285ed00-f13c-44b0-ac6e-9804ffb04546 + - e9b2b698-f356-4517-b229-0ed81df1ac8d X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232617Z:6285ed00-f13c-44b0-ac6e-9804ffb04546 + - WESTUS2:20250117T222701Z:e9b2b698-f356-4517-b229-0ed81df1ac8d X-Msedge-Ref: - - 'Ref A: 1CCEDECF43DF4950983E5ABBAFBA995B Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:17Z' + - 'Ref A: F60BF5BFF95F4D8C85F2E644429FBFB1 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:01Z' status: 200 OK code: 200 - duration: 306.399121ms - - id: 53 + duration: 168.788251ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -3646,7 +2511,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/worker?api-version=2023-11-02-preview + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/apiservice?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -3654,20 +2519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3754 + content_length: 4861 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerapps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:25:33.2496275","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:25:33.2496275"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","48.214.27.226"],"latestRevisionName":"worker--zkkxaun","latestReadyRevisionName":"worker--zkkxaun","latestRevisionFqdn":"","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"acrgj2m4tcideyiu.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrgj2m4tcideyiu.azurecr.io/aspire-azd-tests/worker-azdtest-lfa372e:azd-deploy-1731021426","name":"worker","env":[{"name":"AZURE_CLIENT_ID","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/containerApps/worker/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerapps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:25:23.7820886","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:25:23.7820886"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","20.122.82.135","172.177.177.115","20.122.82.26","20.122.82.51","20.122.81.165","20.122.82.63","20.122.81.203","172.177.180.194","20.122.81.254","20.122.82.103","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","135.224.183.166"],"latestRevisionName":"apiservice--6v0p6um","latestReadyRevisionName":"apiservice--6v0p6um","latestRevisionFqdn":"apiservice--6v0p6um.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"apiservice.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io","external":false,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":true,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrlsxjxxqmwlwys.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrlsxjxxqmwlwys.azurecr.io/aspire-azd-tests/apiservice-azdtest-l9ec8e0:azd-deploy-1737152443","name":"apiservice","env":[{"name":"AZURE_CLIENT_ID","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/containerApps/apiservice/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}}}' headers: Api-Supported-Versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "3754" + - "4861" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:17 GMT + - Fri, 17 Jan 2025 22:27:01 GMT Expires: - "-1" Pragma: @@ -3681,23 +2546,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 81631cd6-bb7e-4d36-b017-7603153a9765 + - 2f7025cd-a7a2-40aa-b4c6-218f549882f0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 81631cd6-bb7e-4d36-b017-7603153a9765 + - 2f7025cd-a7a2-40aa-b4c6-218f549882f0 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232618Z:81631cd6-bb7e-4d36-b017-7603153a9765 + - WESTUS2:20250117T222702Z:2f7025cd-a7a2-40aa-b4c6-218f549882f0 X-Msedge-Ref: - - 'Ref A: 5C9D7C02195E410B886468C175871B2D Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:17Z' + - 'Ref A: CEE825D395C4490AA29E2292300D9B47 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:01Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 516.315535ms - - id: 54 + duration: 608.959935ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -3719,7 +2584,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/resources?api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27pubsub%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3727,18 +2592,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 6408 + content_length: 650 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu","name":"mi-gj2m4tcideyiu","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.OperationalInsights/workspaces/law-gj2m4tcideyiu","name":"law-gj2m4tcideyiu","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ContainerRegistry/registries/acrgj2m4tcideyiu","name":"acrgj2m4tcideyiu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:18:01.8245097Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:18:01.8245097Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu","name":"kvf2edecb5gj2m4tcideyiu","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:18:01.84Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:18:01.84Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","name":"cae-gj2m4tcideyiu","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:18:19.2499114Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:18:19.2499114Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-gj2m4tcideyiu","name":"cosmos-gj2m4tcideyiu","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","location":"eastus2","identity":{"type":"None"},"tags":{"aspire-resource-name":"cosmos"},"systemData":{"createdAt":"2024-11-07T23:23:03.2341225Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu","name":"storagegj2m4tcideyiu","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"aspire-resource-name":"storage"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:24:09.7806272Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:24:09.7806272Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:24:28.7227697Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:24:28.7227697Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:25:01.703096Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:25:01.703096Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:25:33.2496275Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:25:33.2496275Z"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "6408" + - "650" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:17 GMT + - Fri, 17 Jan 2025 22:27:02 GMT Expires: - "-1" Pragma: @@ -3750,21 +2615,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7f2391a1-7efc-4f08-b4a2-e6d4a72f4ad0 + - 25257e01-d247-41ee-98d5-d6f04c522089 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 7f2391a1-7efc-4f08-b4a2-e6d4a72f4ad0 + - 25257e01-d247-41ee-98d5-d6f04c522089 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232618Z:7f2391a1-7efc-4f08-b4a2-e6d4a72f4ad0 + - WESTUS2:20250117T222702Z:25257e01-d247-41ee-98d5-d6f04c522089 X-Msedge-Ref: - - 'Ref A: 7349017416B54922BE0B7CA94F8AADC5 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:18Z' + - 'Ref A: 99C8649FBC094F348353C0D9CE34269F Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:02Z' status: 200 OK code: 200 - duration: 203.100655ms - - id: 55 + duration: 287.513007ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -3785,8 +2650,8 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27webfrontend%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3794,18 +2659,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2189911 + content_length: 670 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=zVDLaoNAFP0W7zqBMZVS3MXcCUgzdzKvlHQXUiOijNAaxir%2be2tb%2f6HL84JzzgjX1neVv1%2b6qvW2rQv%2fAekIL9xYZzaQ%2bnvTrIBv%2f%2bAIvui74%2bW9q%2bbAc%2fEJKcTRU0T23IvhvIbVj0O3YdFixiJd7zOBZVDuFYVTCWGWaWxQsdNeOM7IZqjsaUf27aZjkgfDgkT37bv2hHmgoUwk1om05QNVMRnMH0WtehpEELbcCMwZTEvPecC%2frrnjZPX24Mzy73w3d1oe%2bS8zTV8%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lfa372e-1731021426","location":"eastus2","name":"azdtest-lfa372e-1731021426","properties":{"correlationId":"fb545d4c-36ab-4a63-94eb-afca495ffcc7","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceName":"rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceName":"rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/cosmos","resourceName":"cosmos","resourceType":"Microsoft.Resources/deployments"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceName":"rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/storage","resourceName":"storage","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT5M49.9388816S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/19305341-30ce-5458-9fbe-f4360532fe40"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ContainerRegistry/registries/acrgj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ContainerRegistry/registries/acrgj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/8dfc28cd-f974-54ef-8d43-bdd3c46eaa32"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-gj2m4tcideyiu/sqlDatabases/db3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/348a7c33-1b1f-5bd6-8d16-3c9dc72238fe"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/6a29dbf1-ed9f-5df4-b15e-2bf1ce4c4927"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu/secrets/connectionString"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.OperationalInsights/workspaces/law-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/8ba3fa54-1c85-595d-acca-dc084c613c4f"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/a0691050-95f9-50c3-9c4d-cbe9b5e98488"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/ad5d2df9-e45e-581c-879d-0a2163f80cee"}],"outputs":{"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"livelyisland-b8e736e6.eastus2.azurecontainerapps.io"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-gj2m4tcideyiu"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrgj2m4tcideyiu.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acrgj2m4tcideyiu"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-gj2m4tcideyiu"},"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-gj2m4tcideyiu"},"servicE_BINDING_KVF2EDECB5_ENDPOINT":{"type":"String","value":"https://kvf2edecb5gj2m4tcideyiu.vault.azure.net/"},"servicE_BINDING_KVF2EDECB5_NAME":{"type":"String","value":"kvf2edecb5gj2m4tcideyiu"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storagegj2m4tcideyiu.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storagegj2m4tcideyiu.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storagegj2m4tcideyiu.table.core.windows.net/"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-lfa372e"},"goversion":{"type":"String","value":"1.22"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"62661785-adcf-4117-b9d0-22b3aa2b4ebf"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"10347569819010401111","timestamp":"2024-11-07T23:23:43.105272Z"},"tags":{"azd-env-name":"azdtest-lfa372e","azd-provision-param-hash":"15a2ed734364e02083b6013a24057945563929d961c974ebdcbb7d6d90bdbe31"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "2189911" + - "670" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:37 GMT + - Fri, 17 Jan 2025 22:27:02 GMT Expires: - "-1" Pragma: @@ -3817,21 +2682,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - fa4a862a-e6b5-4226-ad2b-e16f37aaf6b2 + - 56ad0d98-01d0-4de3-97fe-0b4b14eefc05 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16500" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1100" + - "1099" X-Ms-Request-Id: - - fa4a862a-e6b5-4226-ad2b-e16f37aaf6b2 + - 56ad0d98-01d0-4de3-97fe-0b4b14eefc05 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232637Z:fa4a862a-e6b5-4226-ad2b-e16f37aaf6b2 + - WESTUS2:20250117T222702Z:56ad0d98-01d0-4de3-97fe-0b4b14eefc05 X-Msedge-Ref: - - 'Ref A: 36626BB7FFCB4E0097AC4ACAD84F7241 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:29Z' + - 'Ref A: 0A52721684414BDFA4FDCF228E57A021 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:02Z' status: 200 OK code: 200 - duration: 9.009009727s - - id: 56 + duration: 238.840583ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -3845,13 +2710,15 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=zVDLaoNAFP0W7zqBMZVS3MXcCUgzdzKvlHQXUiOijNAaxir%2be2tb%2f6HL84JzzgjX1neVv1%2b6qvW2rQv%2fAekIL9xYZzaQ%2bnvTrIBv%2f%2bAIvui74%2bW9q%2bbAc%2fEJKcTRU0T23IvhvIbVj0O3YdFixiJd7zOBZVDuFYVTCWGWaWxQsdNeOM7IZqjsaUf27aZjkgfDgkT37bv2hHmgoUwk1om05QNVMRnMH0WtehpEELbcCMwZTEvPecC%2frrnjZPX24Mzy73w3d1oe%2bS8zTV8%3d + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l9ec8e0%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3859,18 +2726,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1239007 + content_length: 288 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=3ZHNboMwEISfBZ9TCZcqqrgBNkpDbPD6p6K3iNKKgIzUEkGJePdCCS%2fR2%2b7MtyuN5oaK1naVvZ67qrWqrUv7jfwbooFUWj4uoy2HLjt%2fddVCJOUP8hF2nh2u8oGN%2bQPa%2fRHQ9puHvb0DdRwy8tkL%2fUaYFk%2bchCGQhgjXxExTl6uQCGUirt4%2fAPP0JN0%2bJXrmioGPec%2bJdufvLr%2fMtxGmYEKmcHMAAxIMz4w5klmTCoexbuAIhu1ZDS9wKTwxmlzoLhG1UWja3bP8iyivdKnFQ769Ns0O6USmWh22NQp4QIKluk1Z%2bbnGlY8oVxCctNyExaca0oyuyjT9Ag%3d%3d","value":[]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","name":"rg-azdtest-l9ec8e0","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "1239007" + - "288" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:42 GMT + - Fri, 17 Jan 2025 22:27:02 GMT Expires: - "-1" Pragma: @@ -3882,21 +2749,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 92a8c260-ccea-46dc-9e12-1866ef2bcb60 + - 6603d91d-b94e-4f02-bfa3-ecd5a97c8a1c X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" + - "16498" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + - "1098" X-Ms-Request-Id: - - 92a8c260-ccea-46dc-9e12-1866ef2bcb60 + - 6603d91d-b94e-4f02-bfa3-ecd5a97c8a1c X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232643Z:92a8c260-ccea-46dc-9e12-1866ef2bcb60 + - WESTUS2:20250117T222702Z:6603d91d-b94e-4f02-bfa3-ecd5a97c8a1c X-Msedge-Ref: - - 'Ref A: 02A58FDB2D714F5AA3E75A15E77E78E3 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:38Z' + - 'Ref A: 140793C53EBA42A39793946D9A6D6463 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:02Z' status: 200 OK code: 200 - duration: 5.347450281s - - id: 57 + duration: 80.242486ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -3910,13 +2777,15 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=3ZHNboMwEISfBZ9TCZcqqrgBNkpDbPD6p6K3iNKKgIzUEkGJePdCCS%2fR2%2b7MtyuN5oaK1naVvZ67qrWqrUv7jfwbooFUWj4uoy2HLjt%2fddVCJOUP8hF2nh2u8oGN%2bQPa%2fRHQ9puHvb0DdRwy8tkL%2fUaYFk%2bchCGQhgjXxExTl6uQCGUirt4%2fAPP0JN0%2bJXrmioGPec%2bJdufvLr%2fMtxGmYEKmcHMAAxIMz4w5klmTCoexbuAIhu1ZDS9wKTwxmlzoLhG1UWja3bP8iyivdKnFQ769Ns0O6USmWh22NQp4QIKluk1Z%2bbnGlY8oVxCctNyExaca0oyuyjT9Ag%3d%3d + - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27webfrontend%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3924,18 +2793,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1687773 + content_length: 670 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=ZVBda4MwFP0t5tlBbGUM36I3MmlzU2PS0b2VzokoETaLzuJ%2f3zLrXvZ4vrj3nBu5dLav7fXc153VXVPaTxLdCGeFNsWGRPbatv4druiFO9HZbDn2h%2fNHX7v0rvwiEQm8Jw%2f1aRTT6YH4vw7VDasWUOqpJo0FVENuXkGYPESIYwUt5PSYCsMp6hhyfUxQv72rAOW%2boIME8%2bO7jAjZgFMVSmhCqast1gEWkD2KJh9xEoPQ1UZARsnsE%2fdmwlErtnffLk1SxTDhd3oll0LbFZpdIY1%2bXmHCkAFzi6zM4v9b598Rp3Oj5IEviXn%2bBg%3d%3d","value":[]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "1687773" + - "670" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:47 GMT + - Fri, 17 Jan 2025 22:27:02 GMT Expires: - "-1" Pragma: @@ -3947,21 +2816,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5ff9ae45-572c-4f3c-a113-27aaa9c59607 + - 9404b35f-ef09-48be-9fab-812af0be5c26 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 5ff9ae45-572c-4f3c-a113-27aaa9c59607 + - 9404b35f-ef09-48be-9fab-812af0be5c26 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232648Z:5ff9ae45-572c-4f3c-a113-27aaa9c59607 + - WESTUS2:20250117T222703Z:9404b35f-ef09-48be-9fab-812af0be5c26 X-Msedge-Ref: - - 'Ref A: 1113B6C866064568AEE2007091418669 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:43Z' + - 'Ref A: 001CFDCD0CA3446EB00B6386CE6CDE2C Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:03Z' status: 200 OK code: 200 - duration: 4.626695798s - - id: 58 + duration: 243.89372ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -3975,13 +2844,15 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZVBda4MwFP0t5tlBbGUM36I3MmlzU2PS0b2VzokoETaLzuJ%2f3zLrXvZ4vrj3nBu5dLav7fXc153VXVPaTxLdCGeFNsWGRPbatv4druiFO9HZbDn2h%2fNHX7v0rvwiEQm8Jw%2f1aRTT6YH4vw7VDasWUOqpJo0FVENuXkGYPESIYwUt5PSYCsMp6hhyfUxQv72rAOW%2boIME8%2bO7jAjZgFMVSmhCqast1gEWkD2KJh9xEoPQ1UZARsnsE%2fdmwlErtnffLk1SxTDhd3oll0LbFZpdIY1%2bXmHCkAFzi6zM4v9b598Rp3Oj5IEviXn%2bBg%3d%3d + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/webfrontend?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -3989,44 +2860,50 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 45429 + content_length: 5629 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=ZVBdT4NAEPwtvWdMODGN6RtwR2rpHdzeh8G3BtFQCCRKA9Lw3%2bVaMZq%2b7czO7GT2jPK26crmdOjKtlFtVTSfaHNGz1QqLe3UFEOXHj660gri4gttEF49rrjKBjZmd8i5KKDtlx321iuoooCR917oF8K0eOAkCIDURLgmYpq6XAVEKBNy9foGmCd76fYJ0bMuH%2fiY9Zxod77u8uPsDTEFEzCF6y0YkGB4asyOzJxUOIh0DTswbM0qeIJj7onRZEJ3saiMQpODZKLVNqRcgb%2b3lZpTXTuI%2brbg%2fX%2b4INv%2bxhGBz0P6Q%2f9VauktUMeXtAWGPveJb6MW5vrX39ibELunGpKUXh3T9A0%3d","value":[]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerapps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:26:13.5933528","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:26:13.5933528"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","20.122.82.135","172.177.177.115","20.122.82.26","20.122.82.51","20.122.81.165","20.122.82.63","20.122.81.203","172.177.180.194","20.122.81.254","20.122.82.103","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","135.224.183.166"],"latestRevisionName":"webfrontend--wb2hp0r","latestReadyRevisionName":"webfrontend--wb2hp0r","latestRevisionFqdn":"webfrontend--wb2hp0r.kindmushroom-e5145b77.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"connectionstrings--markdown"},{"name":"connectionstrings--messages"},{"name":"connectionstrings--pubsub"},{"name":"connectionstrings--requestlog"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"webfrontend.kindmushroom-e5145b77.eastus2.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrlsxjxxqmwlwys.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrlsxjxxqmwlwys.azurecr.io/aspire-azd-tests/webfrontend-azdtest-l9ec8e0:azd-deploy-1737152443","name":"webfrontend","env":[{"name":"AZURE_CLIENT_ID","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"GOVERSION","value":"1.22"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"},{"name":"services__apiservice__http__0","value":"http://apiservice.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io"},{"name":"services__apiservice__https__0","value":"https://apiservice.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io"},{"name":"ConnectionStrings__markdown","secretRef":"connectionstrings--markdown"},{"name":"ConnectionStrings__messages","secretRef":"connectionstrings--messages"},{"name":"ConnectionStrings__pubsub","secretRef":"connectionstrings--pubsub"},{"name":"ConnectionStrings__requestlog","secretRef":"connectionstrings--requestlog"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/containerApps/webfrontend/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}}}' headers: + Api-Supported-Versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "45429" + - "5629" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:48 GMT + - Fri, 17 Jan 2025 22:27:03 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - max-age=31536000; includeSubDomains + Vary: + - Accept-Encoding X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 27a3cbbd-76ff-4e47-9462-76ca8eab9dc0 + - 0c22e8a5-4ce0-4a10-b5bc-d2aa5709347c X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 27a3cbbd-76ff-4e47-9462-76ca8eab9dc0 + - 0c22e8a5-4ce0-4a10-b5bc-d2aa5709347c X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232649Z:27a3cbbd-76ff-4e47-9462-76ca8eab9dc0 + - WESTUS2:20250117T222703Z:0c22e8a5-4ce0-4a10-b5bc-d2aa5709347c X-Msedge-Ref: - - 'Ref A: 55853DD5A55546EFA72BC83565E7867D Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:48Z' + - 'Ref A: 8089883398F94A7F883D5B3D61C05ACC Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:03Z' + X-Powered-By: + - ASP.NET status: 200 OK code: 200 - duration: 673.326566ms - - id: 59 + duration: 478.949762ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -4040,13 +2917,15 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZVBdT4NAEPwtvWdMODGN6RtwR2rpHdzeh8G3BtFQCCRKA9Lw3%2bVaMZq%2b7czO7GT2jPK26crmdOjKtlFtVTSfaHNGz1QqLe3UFEOXHj660gri4gttEF49rrjKBjZmd8i5KKDtlx321iuoooCR917oF8K0eOAkCIDURLgmYpq6XAVEKBNy9foGmCd76fYJ0bMuH%2fiY9Zxod77u8uPsDTEFEzCF6y0YkGB4asyOzJxUOIh0DTswbM0qeIJj7onRZEJ3saiMQpODZKLVNqRcgb%2b3lZpTXTuI%2brbg%2fX%2b4INv%2bxhGBz0P6Q%2f9VauktUMeXtAWGPveJb6MW5vrX39ibELunGpKUXh3T9A0%3d + - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27worker%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4054,18 +2933,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4787 + content_length: 650 uncompressed: false - body: '{"value":[]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/worker","name":"worker","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"worker","azd-service-name":"worker"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "4787" + - "650" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:49 GMT + - Fri, 17 Jan 2025 22:27:03 GMT Expires: - "-1" Pragma: @@ -4077,21 +2956,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 22b17e73-0c57-419a-8341-6564dbe859f0 + - 472e6ce3-b75f-4b6d-b20f-61389cc0e5f0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 22b17e73-0c57-419a-8341-6564dbe859f0 + - 472e6ce3-b75f-4b6d-b20f-61389cc0e5f0 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232649Z:22b17e73-0c57-419a-8341-6564dbe859f0 + - WESTUS2:20250117T222704Z:472e6ce3-b75f-4b6d-b20f-61389cc0e5f0 X-Msedge-Ref: - - 'Ref A: E7271F73CA6545FABA6F15634028ED4A Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:49Z' + - 'Ref A: 45BDC54C887D42D4A4CC6251F853826A Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:03Z' status: 200 OK code: 200 - duration: 657.919461ms - - id: 60 + duration: 264.508535ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -4113,7 +2992,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lfa372e%27&api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l9ec8e0%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4123,7 +3002,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","name":"rg-azdtest-lfa372e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","name":"rg-azdtest-l9ec8e0","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -4132,7 +3011,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:49 GMT + - Fri, 17 Jan 2025 22:27:03 GMT Expires: - "-1" Pragma: @@ -4144,21 +3023,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - eccf785c-7878-4268-a450-3a41761e268f + - 680e0730-3e12-41cd-ba65-0690cb9372bf X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - eccf785c-7878-4268-a450-3a41761e268f + - 680e0730-3e12-41cd-ba65-0690cb9372bf X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232649Z:eccf785c-7878-4268-a450-3a41761e268f + - WESTUS2:20250117T222704Z:680e0730-3e12-41cd-ba65-0690cb9372bf X-Msedge-Ref: - - 'Ref A: 0AC00006BA61432590B6EF75B9F7B8EB Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:49Z' + - 'Ref A: DC32F4FB8BD44DE9B60151B386EDB011 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:04Z' status: 200 OK code: 200 - duration: 45.895418ms - - id: 61 + duration: 55.477133ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -4180,7 +3059,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27apiservice%27&api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27worker%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4188,18 +3067,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 666 + content_length: 650 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/worker","name":"worker","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"worker","azd-service-name":"worker"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "666" + - "650" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:49 GMT + - Fri, 17 Jan 2025 22:27:03 GMT Expires: - "-1" Pragma: @@ -4211,21 +3090,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b3403e8f-46e2-4f92-8ec2-e9347400465f + - 0fdd70b1-2f73-46d3-94af-113a459aebde X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - b3403e8f-46e2-4f92-8ec2-e9347400465f + - 0fdd70b1-2f73-46d3-94af-113a459aebde X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232650Z:b3403e8f-46e2-4f92-8ec2-e9347400465f + - WESTUS2:20250117T222704Z:0fdd70b1-2f73-46d3-94af-113a459aebde X-Msedge-Ref: - - 'Ref A: 0CD09010036E42058ED23ABC9D9B401D Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:49Z' + - 'Ref A: A2B626DF2F334660BA0BC36E1664C44D Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:04Z' status: 200 OK code: 200 - duration: 280.995275ms - - id: 62 + duration: 233.085677ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -4246,8 +3125,8 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lfa372e%27&api-version=2021-04-01 + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/worker?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -4255,44 +3134,50 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 4250 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","name":"rg-azdtest-lfa372e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerapps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:26:39.1500265","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:26:39.1500265"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","20.122.82.135","172.177.177.115","20.122.82.26","20.122.82.51","20.122.81.165","20.122.82.63","20.122.81.203","172.177.180.194","20.122.81.254","20.122.82.103","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","135.224.183.166"],"latestRevisionName":"worker--015ac86","latestReadyRevisionName":"worker--015ac86","latestRevisionFqdn":"","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"acrlsxjxxqmwlwys.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrlsxjxxqmwlwys.azurecr.io/aspire-azd-tests/worker-azdtest-l9ec8e0:azd-deploy-1737152443","name":"worker","env":[{"name":"AZURE_CLIENT_ID","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/containerApps/worker/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}}}' headers: + Api-Supported-Versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "288" + - "4250" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:49 GMT + - Fri, 17 Jan 2025 22:27:04 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - max-age=31536000; includeSubDomains + Vary: + - Accept-Encoding X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 87ec546c-1093-40db-a768-2885a4223730 + - d2c7f6f7-bfa3-4a8c-baa8-d7844c923dcb X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 87ec546c-1093-40db-a768-2885a4223730 + - d2c7f6f7-bfa3-4a8c-baa8-d7844c923dcb X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232650Z:87ec546c-1093-40db-a768-2885a4223730 + - WESTUS2:20250117T222704Z:d2c7f6f7-bfa3-4a8c-baa8-d7844c923dcb X-Msedge-Ref: - - 'Ref A: E75D96625EF747C38986E481241C3D3A Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:50Z' + - 'Ref A: 834283FE22BF4D35BB9E0C80A803860A Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:04Z' + X-Powered-By: + - ASP.NET status: 200 OK code: 200 - duration: 66.927989ms - - id: 63 + duration: 601.407083ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -4314,7 +3199,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27apiservice%27&api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4322,18 +3207,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 666 + content_length: 5518 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.OperationalInsights/workspaces/law-lsxjxxqmwlwys","name":"law-lsxjxxqmwlwys","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys","name":"mi-lsxjxxqmwlwys","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ContainerRegistry/registries/acrlsxjxxqmwlwys","name":"acrlsxjxxqmwlwys","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:21:16.3444511Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:21:16.3444511Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","name":"cae-lsxjxxqmwlwys","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:21:34.4412588Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:21:34.4412588Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys","name":"storagelsxjxxqmwlwys","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"aspire-resource-name":"storage"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:25:23.7820886Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:25:23.7820886Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:25:43.5742355Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:25:43.5742355Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:26:13.5933528Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:26:13.5933528Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:26:39.1500265Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:26:39.1500265Z"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "666" + - "5518" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:49 GMT + - Fri, 17 Jan 2025 22:27:04 GMT Expires: - "-1" Pragma: @@ -4345,21 +3230,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5b993f76-eb4c-4f24-b141-228e1f674463 + - 19a2f738-1bde-4137-8232-753a7194e270 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 5b993f76-eb4c-4f24-b141-228e1f674463 + - 19a2f738-1bde-4137-8232-753a7194e270 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232650Z:5b993f76-eb4c-4f24-b141-228e1f674463 + - WESTUS2:20250117T222705Z:19a2f738-1bde-4137-8232-753a7194e270 X-Msedge-Ref: - - 'Ref A: D2CEC5F409D142F29699664988370CF6 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:50Z' + - 'Ref A: EF7709DADD4B4EA7B541872ED01DD77F Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:04Z' status: 200 OK code: 200 - duration: 364.981959ms - - id: 64 + duration: 189.119989ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -4380,8 +3265,8 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/apiservice?api-version=2023-11-02-preview + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4389,50 +3274,44 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4365 + content_length: 7301 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerapps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:24:09.7806272","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:24:09.7806272"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","48.214.27.226"],"latestRevisionName":"apiservice--00h91dt","latestReadyRevisionName":"apiservice--00h91dt","latestRevisionFqdn":"apiservice--00h91dt.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"apiservice.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io","external":false,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":true,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrgj2m4tcideyiu.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrgj2m4tcideyiu.azurecr.io/aspire-azd-tests/apiservice-azdtest-lfa372e:azd-deploy-1731021426","name":"apiservice","env":[{"name":"AZURE_CLIENT_ID","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/containerApps/apiservice/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}}}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l9ec8e0-1737152443","location":"eastus2","name":"azdtest-l9ec8e0-1737152443","properties":{"correlationId":"9ba108b9-2a4e-4013-92a9-70f87d052c91","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","resourceName":"rg-azdtest-l9ec8e0","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","resourceName":"rg-azdtest-l9ec8e0","resourceType":"Microsoft.Resources/resourceGroups"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/storage","resourceName":"storage","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT3M46.7563092S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/8ce016b1-9caf-533a-aedd-7b26b1744d62"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ContainerRegistry/registries/acrlsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ContainerRegistry/registries/acrlsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/3bae0392-4f0c-5dbb-8852-0bea6a880238"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.OperationalInsights/workspaces/law-lsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/69a275a2-c893-532c-b813-19ce25202057"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/c25fd737-9232-5f2f-9190-8100cb9c056b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/ca8eed46-c023-55b7-9acd-f361e8f31f51"}],"outputs":{"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"kindmushroom-e5145b77.eastus2.azurecontainerapps.io"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-lsxjxxqmwlwys"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrlsxjxxqmwlwys.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acrlsxjxxqmwlwys"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-lsxjxxqmwlwys"},"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-lsxjxxqmwlwys"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storagelsxjxxqmwlwys.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storagelsxjxxqmwlwys.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storagelsxjxxqmwlwys.table.core.windows.net/"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-l9ec8e0"},"goversion":{"type":"String","value":"1.22"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"62661785-adcf-4117-b9d0-22b3aa2b4ebf"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"7799194296368964685","timestamp":"2025-01-17T22:24:56.7441448Z"},"tags":{"azd-env-name":"azdtest-l9ec8e0","azd-provision-param-hash":"5078b0222ae3b911466620e07caac5df333846f9302ccf48f5425f919d2b93fd"},"type":"Microsoft.Resources/deployments"}]}' headers: - Api-Supported-Versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "4365" + - "7301" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:50 GMT + - Fri, 17 Jan 2025 22:27:15 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - max-age=31536000; includeSubDomains - Vary: - - Accept-Encoding X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 73513d63-7168-4a8a-babd-b9e21cd77018 + - 8a9f663a-a6d6-4e78-b60a-1eefc67cb244 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 73513d63-7168-4a8a-babd-b9e21cd77018 + - 8a9f663a-a6d6-4e78-b60a-1eefc67cb244 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232651Z:73513d63-7168-4a8a-babd-b9e21cd77018 + - WESTUS2:20250117T222715Z:8a9f663a-a6d6-4e78-b60a-1eefc67cb244 X-Msedge-Ref: - - 'Ref A: 8A441E20C9B448369A598B0C21A3FF0C Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:50Z' - X-Powered-By: - - ASP.NET + - 'Ref A: F9FF3E3153A04D3690AA8390136A80BE Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:15Z' status: 200 OK code: 200 - duration: 469.955215ms - - id: 65 + duration: 273.315506ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -4453,8 +3332,8 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27pubsub%27&api-version=2021-04-01 + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l9ec8e0%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4462,18 +3341,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 650 + content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","name":"rg-azdtest-l9ec8e0","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "650" + - "288" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:50 GMT + - Fri, 17 Jan 2025 22:27:15 GMT Expires: - "-1" Pragma: @@ -4485,21 +3364,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c8710458-3ca5-4f02-8f55-51cae52d74d2 + - b089e555-cd14-4c1f-9a39-067c1e814612 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - c8710458-3ca5-4f02-8f55-51cae52d74d2 + - b089e555-cd14-4c1f-9a39-067c1e814612 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232651Z:c8710458-3ca5-4f02-8f55-51cae52d74d2 + - WESTUS2:20250117T222715Z:b089e555-cd14-4c1f-9a39-067c1e814612 X-Msedge-Ref: - - 'Ref A: 721966A2E5774D24942D64965D2E2018 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:51Z' + - 'Ref A: DAE502A9A12948559498BFEE211BBA21 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:15Z' status: 200 OK code: 200 - duration: 298.617967ms - - id: 66 + duration: 65.83151ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -4521,7 +3400,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27webfrontend%27&api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27apiservice%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4529,18 +3408,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 670 + content_length: 666 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"azd-service-name":"webfrontend","aspire-resource-name":"webfrontend"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "670" + - "666" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:51 GMT + - Fri, 17 Jan 2025 22:27:15 GMT Expires: - "-1" Pragma: @@ -4552,21 +3431,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 29a5c793-aa82-457d-8104-367520b81550 + - a2846295-22f4-4f24-83e8-44dcf1c40d2f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" + - "16498" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + - "1098" X-Ms-Request-Id: - - 29a5c793-aa82-457d-8104-367520b81550 + - a2846295-22f4-4f24-83e8-44dcf1c40d2f X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232651Z:29a5c793-aa82-457d-8104-367520b81550 + - WESTUS2:20250117T222716Z:a2846295-22f4-4f24-83e8-44dcf1c40d2f X-Msedge-Ref: - - 'Ref A: 187185B8EA4D4BBAADEE723FF472C459 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:51Z' + - 'Ref A: AC233CA98438446AA440CFF8242CB98A Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:15Z' status: 200 OK code: 200 - duration: 243.109607ms - - id: 67 + duration: 358.630363ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -4588,7 +3467,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lfa372e%27&api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l9ec8e0%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4598,7 +3477,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","name":"rg-azdtest-lfa372e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","name":"rg-azdtest-l9ec8e0","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -4607,7 +3486,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:51 GMT + - Fri, 17 Jan 2025 22:27:15 GMT Expires: - "-1" Pragma: @@ -4619,21 +3498,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c9b58fc3-5ed7-4788-8837-6d58426d70c9 + - b414a811-160c-42da-ac1d-915829b3ea58 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - c9b58fc3-5ed7-4788-8837-6d58426d70c9 + - b414a811-160c-42da-ac1d-915829b3ea58 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232651Z:c9b58fc3-5ed7-4788-8837-6d58426d70c9 + - WESTUS2:20250117T222716Z:b414a811-160c-42da-ac1d-915829b3ea58 X-Msedge-Ref: - - 'Ref A: 3B0CDD9EF8144B2E9B2F7E56F60C50F6 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:51Z' + - 'Ref A: 7A1C32BFEA85496B83622D15CCD12B61 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:16Z' status: 200 OK code: 200 - duration: 127.527617ms - - id: 68 + duration: 51.258709ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -4655,7 +3534,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27webfrontend%27&api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27apiservice%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4663,18 +3542,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 670 + content_length: 666 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "670" + - "666" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:51 GMT + - Fri, 17 Jan 2025 22:27:16 GMT Expires: - "-1" Pragma: @@ -4686,21 +3565,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f5049668-b7b1-4b82-8572-3d5908cd78d9 + - 70608c83-e658-4481-ab4d-058734cfacb5 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - f5049668-b7b1-4b82-8572-3d5908cd78d9 + - 70608c83-e658-4481-ab4d-058734cfacb5 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232652Z:f5049668-b7b1-4b82-8572-3d5908cd78d9 + - WESTUS2:20250117T222716Z:70608c83-e658-4481-ab4d-058734cfacb5 X-Msedge-Ref: - - 'Ref A: C9E677E6084F47C483E8D740A5DA9FA9 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:51Z' + - 'Ref A: BB2359913F684179A0BBE6FBD7890CEB Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:16Z' status: 200 OK code: 200 - duration: 288.624328ms - - id: 69 + duration: 163.750091ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -4722,7 +3601,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/webfrontend?api-version=2023-11-02-preview + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/apiservice?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -4730,20 +3609,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5509 + content_length: 4861 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerapps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:25:01.703096","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:25:01.703096"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","48.214.27.226"],"latestRevisionName":"webfrontend--je0r8x6","latestReadyRevisionName":"webfrontend--je0r8x6","latestRevisionFqdn":"webfrontend--je0r8x6.livelyisland-b8e736e6.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"connectionstrings--markdown"},{"name":"connectionstrings--messages"},{"name":"connectionstrings--pubsub"},{"name":"connectionstrings--requestlog"},{"name":"connectionstrings--cosmos","keyVaultUrl":"https://kvf2edecb5gj2m4tcideyiu.vault.azure.net/secrets/connectionString","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"webfrontend.livelyisland-b8e736e6.eastus2.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrgj2m4tcideyiu.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrgj2m4tcideyiu.azurecr.io/aspire-azd-tests/webfrontend-azdtest-lfa372e:azd-deploy-1731021426","name":"webfrontend","env":[{"name":"AZURE_CLIENT_ID","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"GOVERSION","value":"1.22"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"},{"name":"services__apiservice__http__0","value":"http://apiservice.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io"},{"name":"services__apiservice__https__0","value":"https://apiservice.internal.livelyisland-b8e736e6.eastus2.azurecontainerapps.io"},{"name":"ConnectionStrings__markdown","secretRef":"connectionstrings--markdown"},{"name":"ConnectionStrings__messages","secretRef":"connectionstrings--messages"},{"name":"ConnectionStrings__pubsub","secretRef":"connectionstrings--pubsub"},{"name":"ConnectionStrings__requestlog","secretRef":"connectionstrings--requestlog"},{"name":"ConnectionStrings__cosmos","secretRef":"connectionstrings--cosmos"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/containerApps/webfrontend/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerapps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:25:23.7820886","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:25:23.7820886"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","20.122.82.135","172.177.177.115","20.122.82.26","20.122.82.51","20.122.81.165","20.122.82.63","20.122.81.203","172.177.180.194","20.122.81.254","20.122.82.103","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","135.224.183.166"],"latestRevisionName":"apiservice--6v0p6um","latestReadyRevisionName":"apiservice--6v0p6um","latestRevisionFqdn":"apiservice--6v0p6um.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":{"fqdn":"apiservice.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io","external":false,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":true,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrlsxjxxqmwlwys.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrlsxjxxqmwlwys.azurecr.io/aspire-azd-tests/apiservice-azdtest-l9ec8e0:azd-deploy-1737152443","name":"apiservice","env":[{"name":"AZURE_CLIENT_ID","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/containerApps/apiservice/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}}}' headers: Api-Supported-Versions: - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "5509" + - "4861" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:51 GMT + - Fri, 17 Jan 2025 22:27:16 GMT Expires: - "-1" Pragma: @@ -4757,23 +3636,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c3e5b99c-faa6-4985-80ec-33db27693d75 + - 61df792d-c06f-4948-97d3-094a79c47cd5 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - c3e5b99c-faa6-4985-80ec-33db27693d75 + - 61df792d-c06f-4948-97d3-094a79c47cd5 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232652Z:c3e5b99c-faa6-4985-80ec-33db27693d75 + - WESTUS2:20250117T222717Z:61df792d-c06f-4948-97d3-094a79c47cd5 X-Msedge-Ref: - - 'Ref A: 1D793A45B93E47469AF9B765B6A6CF8F Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:52Z' + - 'Ref A: DCB03DD0663142939986C08D677960D4 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:16Z' X-Powered-By: - ASP.NET status: 200 OK code: 200 - duration: 426.166684ms - - id: 70 + duration: 476.681373ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -4795,7 +3674,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27worker%27&api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27pubsub%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4805,7 +3684,7 @@ interactions: trailer: {} content_length: 650 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/worker","name":"worker","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"azd-service-name":"worker","aspire-resource-name":"worker"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"}}]}' headers: Cache-Control: - no-cache @@ -4814,7 +3693,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:52 GMT + - Fri, 17 Jan 2025 22:27:17 GMT Expires: - "-1" Pragma: @@ -4826,21 +3705,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 9eaf541b-117c-4b4c-8a84-bf067605e0b4 + - 1a6bd8aa-3411-4185-aab8-196c367d62a2 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 9eaf541b-117c-4b4c-8a84-bf067605e0b4 + - 1a6bd8aa-3411-4185-aab8-196c367d62a2 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232652Z:9eaf541b-117c-4b4c-8a84-bf067605e0b4 + - WESTUS2:20250117T222717Z:1a6bd8aa-3411-4185-aab8-196c367d62a2 X-Msedge-Ref: - - 'Ref A: 60D429C46AA34BDABB5FBEFF32351C3F Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:52Z' + - 'Ref A: B74C2C21AAEE42EBB7E9A80B0FAB4355 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:17Z' status: 200 OK code: 200 - duration: 313.733674ms - - id: 71 + duration: 466.670219ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -4861,8 +3740,8 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lfa372e%27&api-version=2021-04-01 + - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27webfrontend%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4870,18 +3749,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 670 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","name":"rg-azdtest-lfa372e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"azd-service-name":"webfrontend","aspire-resource-name":"webfrontend"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "288" + - "670" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:52 GMT + - Fri, 17 Jan 2025 22:27:17 GMT Expires: - "-1" Pragma: @@ -4893,21 +3772,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5c5a5086-ad8f-48b4-9bc7-019ae6f7df2f + - 5f1d6558-dcfb-433a-a421-bc1e71738b69 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16498" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1098" + - "1099" X-Ms-Request-Id: - - 5c5a5086-ad8f-48b4-9bc7-019ae6f7df2f + - 5f1d6558-dcfb-433a-a421-bc1e71738b69 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232652Z:5c5a5086-ad8f-48b4-9bc7-019ae6f7df2f + - WESTUS2:20250117T222717Z:5f1d6558-dcfb-433a-a421-bc1e71738b69 X-Msedge-Ref: - - 'Ref A: 07DD9CC764C9436EAACF20F8B1421AE5 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:52Z' + - 'Ref A: 727484A28EC94C60A59DA9DBB7200CB3 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:17Z' status: 200 OK code: 200 - duration: 43.681932ms - - id: 72 + duration: 234.438145ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -4928,8 +3807,8 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27worker%27&api-version=2021-04-01 + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l9ec8e0%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -4937,18 +3816,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 650 + content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/worker","name":"worker","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"worker","azd-service-name":"worker"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","name":"rg-azdtest-l9ec8e0","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "650" + - "288" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:52 GMT + - Fri, 17 Jan 2025 22:27:17 GMT Expires: - "-1" Pragma: @@ -4960,21 +3839,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1e5b0e7f-74f9-44bc-9df7-06296d64e59b + - 6e7f086d-a0b9-4a37-b850-e47950f15907 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 1e5b0e7f-74f9-44bc-9df7-06296d64e59b + - 6e7f086d-a0b9-4a37-b850-e47950f15907 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232653Z:1e5b0e7f-74f9-44bc-9df7-06296d64e59b + - WESTUS2:20250117T222717Z:6e7f086d-a0b9-4a37-b850-e47950f15907 X-Msedge-Ref: - - 'Ref A: E00BEDA6C1274A71A9F62C3AF70A2FD3 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:52Z' + - 'Ref A: 0C8C45FE43544C8898AEFC2FBA6FB531 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:17Z' status: 200 OK code: 200 - duration: 286.57314ms - - id: 73 + duration: 58.946306ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -4995,8 +3874,8 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/worker?api-version=2023-11-02-preview + - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27webfrontend%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -5004,50 +3883,44 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3754 + content_length: 670 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerapps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:25:33.2496275","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:25:33.2496275"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","48.214.27.226"],"latestRevisionName":"worker--zkkxaun","latestReadyRevisionName":"worker--zkkxaun","latestRevisionFqdn":"","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"acrgj2m4tcideyiu.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrgj2m4tcideyiu.azurecr.io/aspire-azd-tests/worker-azdtest-lfa372e:azd-deploy-1731021426","name":"worker","env":[{"name":"AZURE_CLIENT_ID","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/containerApps/worker/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}}}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"azd-service-name":"webfrontend","aspire-resource-name":"webfrontend"}}]}' headers: - Api-Supported-Versions: - - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "3754" + - "670" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:53 GMT + - Fri, 17 Jan 2025 22:27:17 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - max-age=31536000; includeSubDomains - Vary: - - Accept-Encoding X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 479537c9-4241-4de1-afce-3694e2f163f6 + - 0285f77e-4e87-4a94-b32d-6b557a7ead29 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 479537c9-4241-4de1-afce-3694e2f163f6 + - 0285f77e-4e87-4a94-b32d-6b557a7ead29 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232653Z:479537c9-4241-4de1-afce-3694e2f163f6 + - WESTUS2:20250117T222718Z:0285f77e-4e87-4a94-b32d-6b557a7ead29 X-Msedge-Ref: - - 'Ref A: 54C02971CDB145838CC0480619421536 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:53Z' - X-Powered-By: - - ASP.NET + - 'Ref A: CC1F58A480CF47F6BF270E0974D2B9FE Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:17Z' status: 200 OK code: 200 - duration: 583.574416ms - - id: 74 + duration: 297.863196ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -5068,8 +3941,8 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/resources?api-version=2021-04-01 + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/webfrontend?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -5077,44 +3950,50 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 6408 + content_length: 5629 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu","name":"mi-gj2m4tcideyiu","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.OperationalInsights/workspaces/law-gj2m4tcideyiu","name":"law-gj2m4tcideyiu","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ContainerRegistry/registries/acrgj2m4tcideyiu","name":"acrgj2m4tcideyiu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:18:01.8245097Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:18:01.8245097Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu","name":"kvf2edecb5gj2m4tcideyiu","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:18:01.84Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:18:01.84Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","name":"cae-gj2m4tcideyiu","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:18:19.2499114Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:18:19.2499114Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-gj2m4tcideyiu","name":"cosmos-gj2m4tcideyiu","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","location":"eastus2","identity":{"type":"None"},"tags":{"aspire-resource-name":"cosmos"},"systemData":{"createdAt":"2024-11-07T23:23:03.2341225Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu","name":"storagegj2m4tcideyiu","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"aspire-resource-name":"storage"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:24:09.7806272Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:24:09.7806272Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:24:28.7227697Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:24:28.7227697Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:25:01.703096Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:25:01.703096Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:25:33.2496275Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:25:33.2496275Z"}}]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerapps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:26:13.5933528","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:26:13.5933528"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","20.122.82.135","172.177.177.115","20.122.82.26","20.122.82.51","20.122.81.165","20.122.82.63","20.122.81.203","172.177.180.194","20.122.81.254","20.122.82.103","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","135.224.183.166"],"latestRevisionName":"webfrontend--wb2hp0r","latestReadyRevisionName":"webfrontend--wb2hp0r","latestRevisionFqdn":"webfrontend--wb2hp0r.kindmushroom-e5145b77.eastus2.azurecontainerapps.io","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":[{"name":"connectionstrings--markdown"},{"name":"connectionstrings--messages"},{"name":"connectionstrings--pubsub"},{"name":"connectionstrings--requestlog"}],"activeRevisionsMode":"Single","ingress":{"fqdn":"webfrontend.kindmushroom-e5145b77.eastus2.azurecontainerapps.io","external":true,"targetPort":8080,"exposedPort":0,"transport":"Http","traffic":[{"weight":100,"latestRevision":true}],"customDomains":null,"allowInsecure":false,"ipSecurityRestrictions":null,"corsPolicy":null,"clientCertificateMode":null,"stickySessions":null,"additionalPortMappings":null,"targetPortHttpScheme":null},"registries":[{"server":"acrlsxjxxqmwlwys.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrlsxjxxqmwlwys.azurecr.io/aspire-azd-tests/webfrontend-azdtest-l9ec8e0:azd-deploy-1737152443","name":"webfrontend","env":[{"name":"AZURE_CLIENT_ID","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},{"name":"ASPNETCORE_FORWARDEDHEADERS_ENABLED","value":"true"},{"name":"GOVERSION","value":"1.22"},{"name":"HTTP_PORTS","value":"8080"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"},{"name":"services__apiservice__http__0","value":"http://apiservice.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io"},{"name":"services__apiservice__https__0","value":"https://apiservice.internal.kindmushroom-e5145b77.eastus2.azurecontainerapps.io"},{"name":"ConnectionStrings__markdown","secretRef":"connectionstrings--markdown"},{"name":"ConnectionStrings__messages","secretRef":"connectionstrings--messages"},{"name":"ConnectionStrings__pubsub","secretRef":"connectionstrings--pubsub"},{"name":"ConnectionStrings__requestlog","secretRef":"connectionstrings--requestlog"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/containerApps/webfrontend/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}}}' headers: + Api-Supported-Versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "6408" + - "5629" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:26:53 GMT + - Fri, 17 Jan 2025 22:27:18 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - max-age=31536000; includeSubDomains + Vary: + - Accept-Encoding X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 03bee67a-1f5d-4af5-9e55-f6370a03753d + - fa0f2e2c-b97a-47e7-9a16-a154ecd3f193 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 03bee67a-1f5d-4af5-9e55-f6370a03753d + - fa0f2e2c-b97a-47e7-9a16-a154ecd3f193 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232653Z:03bee67a-1f5d-4af5-9e55-f6370a03753d + - WESTUS2:20250117T222718Z:fa0f2e2c-b97a-47e7-9a16-a154ecd3f193 X-Msedge-Ref: - - 'Ref A: 92DADA3937584F3E8B9933452D4E9D87 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:26:53Z' + - 'Ref A: 077B3453F15D4FAF86C225AB936A722F Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:18Z' + X-Powered-By: + - ASP.NET status: 200 OK code: 200 - duration: 224.874519ms - - id: 75 + duration: 442.583556ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -5135,8 +4014,8 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27worker%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -5144,18 +4023,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2189911 + content_length: 650 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=zVDLaoNAFP0W7zqBMZVS3MXcCUgzdzKvlHQXUiOijNAaxir%2be2tb%2f6HL84JzzgjX1neVv1%2b6qvW2rQv%2fAekIL9xYZzaQ%2bnvTrIBv%2f%2bAIvui74%2bW9q%2bbAc%2fEJKcTRU0T23IvhvIbVj0O3YdFixiJd7zOBZVDuFYVTCWGWaWxQsdNeOM7IZqjsaUf27aZjkgfDgkT37bv2hHmgoUwk1om05QNVMRnMH0WtehpEELbcCMwZTEvPecC%2frrnjZPX24Mzy73w3d1oe%2bS8zTV8%3d","value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lfa372e-1731021426","location":"eastus2","name":"azdtest-lfa372e-1731021426","properties":{"correlationId":"fb545d4c-36ab-4a63-94eb-afca495ffcc7","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceName":"rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceName":"rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/cosmos","resourceName":"cosmos","resourceType":"Microsoft.Resources/deployments"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceName":"rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/storage","resourceName":"storage","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT5M49.9388816S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/19305341-30ce-5458-9fbe-f4360532fe40"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ContainerRegistry/registries/acrgj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ContainerRegistry/registries/acrgj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/8dfc28cd-f974-54ef-8d43-bdd3c46eaa32"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-gj2m4tcideyiu/sqlDatabases/db3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/348a7c33-1b1f-5bd6-8d16-3c9dc72238fe"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/6a29dbf1-ed9f-5df4-b15e-2bf1ce4c4927"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu/secrets/connectionString"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.OperationalInsights/workspaces/law-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/8ba3fa54-1c85-595d-acca-dc084c613c4f"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/a0691050-95f9-50c3-9c4d-cbe9b5e98488"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/ad5d2df9-e45e-581c-879d-0a2163f80cee"}],"outputs":{"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"livelyisland-b8e736e6.eastus2.azurecontainerapps.io"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-gj2m4tcideyiu"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrgj2m4tcideyiu.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acrgj2m4tcideyiu"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-gj2m4tcideyiu"},"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-gj2m4tcideyiu"},"servicE_BINDING_KVF2EDECB5_ENDPOINT":{"type":"String","value":"https://kvf2edecb5gj2m4tcideyiu.vault.azure.net/"},"servicE_BINDING_KVF2EDECB5_NAME":{"type":"String","value":"kvf2edecb5gj2m4tcideyiu"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storagegj2m4tcideyiu.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storagegj2m4tcideyiu.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storagegj2m4tcideyiu.table.core.windows.net/"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-lfa372e"},"goversion":{"type":"String","value":"1.22"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"62661785-adcf-4117-b9d0-22b3aa2b4ebf"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"10347569819010401111","timestamp":"2024-11-07T23:23:43.105272Z"},"tags":{"azd-env-name":"azdtest-lfa372e","azd-provision-param-hash":"15a2ed734364e02083b6013a24057945563929d961c974ebdcbb7d6d90bdbe31"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/worker","name":"worker","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"worker","azd-service-name":"worker"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "2189911" + - "650" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:27:10 GMT + - Fri, 17 Jan 2025 22:27:18 GMT Expires: - "-1" Pragma: @@ -5167,21 +4046,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7b79e0b9-4113-499d-939d-4d8afc217ef8 + - 21de3e8a-8ad2-4554-869e-4bb53b8c4644 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16500" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1100" + - "1099" X-Ms-Request-Id: - - 7b79e0b9-4113-499d-939d-4d8afc217ef8 + - 21de3e8a-8ad2-4554-869e-4bb53b8c4644 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232711Z:7b79e0b9-4113-499d-939d-4d8afc217ef8 + - WESTUS2:20250117T222718Z:21de3e8a-8ad2-4554-869e-4bb53b8c4644 X-Msedge-Ref: - - 'Ref A: B7506205DA4D4CC787BE104CD498CEEE Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:27:02Z' + - 'Ref A: A90A3979D9894DEFBDB350F0E7320820 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:18Z' status: 200 OK code: 200 - duration: 8.565468372s - - id: 76 + duration: 167.963445ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -5195,13 +4074,15 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=zVDLaoNAFP0W7zqBMZVS3MXcCUgzdzKvlHQXUiOijNAaxir%2be2tb%2f6HL84JzzgjX1neVv1%2b6qvW2rQv%2fAekIL9xYZzaQ%2bnvTrIBv%2f%2bAIvui74%2bW9q%2bbAc%2fEJKcTRU0T23IvhvIbVj0O3YdFixiJd7zOBZVDuFYVTCWGWaWxQsdNeOM7IZqjsaUf27aZjkgfDgkT37bv2hHmgoUwk1om05QNVMRnMH0WtehpEELbcCMwZTEvPecC%2frrnjZPX24Mzy73w3d1oe%2bS8zTV8%3d + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l9ec8e0%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -5209,18 +4090,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1239007 + content_length: 288 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=3ZHNboMwEISfBZ9TCZcqqrgBNkpDbPD6p6K3iNKKgIzUEkGJePdCCS%2fR2%2b7MtyuN5oaK1naVvZ67qrWqrUv7jfwbooFUWj4uoy2HLjt%2fddVCJOUP8hF2nh2u8oGN%2bQPa%2fRHQ9puHvb0DdRwy8tkL%2fUaYFk%2bchCGQhgjXxExTl6uQCGUirt4%2fAPP0JN0%2bJXrmioGPec%2bJdufvLr%2fMtxGmYEKmcHMAAxIMz4w5klmTCoexbuAIhu1ZDS9wKTwxmlzoLhG1UWja3bP8iyivdKnFQ769Ns0O6USmWh22NQp4QIKluk1Z%2bbnGlY8oVxCctNyExaca0oyuyjT9Ag%3d%3d","value":[]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","name":"rg-azdtest-l9ec8e0","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "1239007" + - "288" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:27:15 GMT + - Fri, 17 Jan 2025 22:27:18 GMT Expires: - "-1" Pragma: @@ -5232,21 +4113,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - dc09f824-d5dd-4edc-9fc9-dd6e60242f1e + - 32ef218e-43c4-45de-a388-c2d1245db399 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - dc09f824-d5dd-4edc-9fc9-dd6e60242f1e + - 32ef218e-43c4-45de-a388-c2d1245db399 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232716Z:dc09f824-d5dd-4edc-9fc9-dd6e60242f1e + - WESTUS2:20250117T222718Z:32ef218e-43c4-45de-a388-c2d1245db399 X-Msedge-Ref: - - 'Ref A: CD8A5838FAE34336B40D08ED55C018EA Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:27:11Z' + - 'Ref A: F7806CC46EC244F2B90DA18613AEBBE4 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:18Z' status: 200 OK code: 200 - duration: 4.927224217s - - id: 77 + duration: 65.473121ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -5260,13 +4141,15 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=3ZHNboMwEISfBZ9TCZcqqrgBNkpDbPD6p6K3iNKKgIzUEkGJePdCCS%2fR2%2b7MtyuN5oaK1naVvZ67qrWqrUv7jfwbooFUWj4uoy2HLjt%2fddVCJOUP8hF2nh2u8oGN%2bQPa%2fRHQ9puHvb0DdRwy8tkL%2fUaYFk%2bchCGQhgjXxExTl6uQCGUirt4%2fAPP0JN0%2bJXrmioGPec%2bJdufvLr%2fMtxGmYEKmcHMAAxIMz4w5klmTCoexbuAIhu1ZDS9wKTwxmlzoLhG1UWja3bP8iyivdKnFQ769Ns0O6USmWh22NQp4QIKluk1Z%2bbnGlY8oVxCctNyExaca0oyuyjT9Ag%3d%3d + - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/resources?%24filter=tagName+eq+%27azd-service-name%27+and+tagValue+eq+%27worker%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -5274,18 +4157,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1687773 + content_length: 650 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=ZVBda4MwFP0t5tlBbGUM36I3MmlzU2PS0b2VzokoETaLzuJ%2f3zLrXvZ4vrj3nBu5dLav7fXc153VXVPaTxLdCGeFNsWGRPbatv4druiFO9HZbDn2h%2fNHX7v0rvwiEQm8Jw%2f1aRTT6YH4vw7VDasWUOqpJo0FVENuXkGYPESIYwUt5PSYCsMp6hhyfUxQv72rAOW%2boIME8%2bO7jAjZgFMVSmhCqast1gEWkD2KJh9xEoPQ1UZARsnsE%2fdmwlErtnffLk1SxTDhd3oll0LbFZpdIY1%2bXmHCkAFzi6zM4v9b598Rp3Oj5IEviXn%2bBg%3d%3d","value":[]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/worker","name":"worker","type":"Microsoft.App/containerApps","kind":"","managedBy":"","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"worker","azd-service-name":"worker"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "1687773" + - "650" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:27:20 GMT + - Fri, 17 Jan 2025 22:27:18 GMT Expires: - "-1" Pragma: @@ -5297,21 +4180,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a8806c22-34e7-431f-afcf-c49d5288d868 + - d6d26ce7-ae94-465f-8eb7-0762c47699a9 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - a8806c22-34e7-431f-afcf-c49d5288d868 + - d6d26ce7-ae94-465f-8eb7-0762c47699a9 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232720Z:a8806c22-34e7-431f-afcf-c49d5288d868 + - WESTUS2:20250117T222719Z:d6d26ce7-ae94-465f-8eb7-0762c47699a9 X-Msedge-Ref: - - 'Ref A: 8FAEB2C25F7941B0A4CA37375FF81163 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:27:16Z' + - 'Ref A: AE30378D585843C99BAED47BE64D046A Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:18Z' status: 200 OK code: 200 - duration: 4.495980063s - - id: 78 + duration: 147.451421ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -5325,13 +4208,15 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZVBda4MwFP0t5tlBbGUM36I3MmlzU2PS0b2VzokoETaLzuJ%2f3zLrXvZ4vrj3nBu5dLav7fXc153VXVPaTxLdCGeFNsWGRPbatv4druiFO9HZbDn2h%2fNHX7v0rvwiEQm8Jw%2f1aRTT6YH4vw7VDasWUOqpJo0FVENuXkGYPESIYwUt5PSYCsMp6hhyfUxQv72rAOW%2boIME8%2bO7jAjZgFMVSmhCqast1gEWkD2KJh9xEoPQ1UZARsnsE%2fdmwlErtnffLk1SxTDhd3oll0LbFZpdIY1%2bXmHCkAFzi6zM4v9b598Rp3Oj5IEviXn%2bBg%3d%3d + - azsdk-go-armappcontainers/v3.0.0-beta.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/worker?api-version=2023-11-02-preview method: GET response: proto: HTTP/2.0 @@ -5339,44 +4224,50 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 45429 + content_length: 4250 uncompressed: false - body: '{"nextLink":"https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01\u0026%24skiptoken=ZVBdT4NAEPwtvWdMODGN6RtwR2rpHdzeh8G3BtFQCCRKA9Lw3%2bVaMZq%2b7czO7GT2jPK26crmdOjKtlFtVTSfaHNGz1QqLe3UFEOXHj660gri4gttEF49rrjKBjZmd8i5KKDtlx321iuoooCR917oF8K0eOAkCIDURLgmYpq6XAVEKBNy9foGmCd76fYJ0bMuH%2fiY9Zxod77u8uPsDTEFEzCF6y0YkGB4asyOzJxUOIh0DTswbM0qeIJj7onRZEJ3saiMQpODZKLVNqRcgb%2b3lZpTXTuI%2brbg%2fX%2b4INv%2bxhGBz0P6Q%2f9VauktUMeXtAWGPveJb6MW5vrX39ibELunGpKUXh3T9A0%3d","value":[]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerapps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"East US 2","tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:26:39.1500265","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:26:39.1500265"},"properties":{"provisioningState":"Succeeded","runningStatus":"Running","managedEnvironmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","environmentId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","workloadProfileName":"consumption","outboundIpAddresses":["20.1.250.250","20.1.251.135","20.7.131.26","20.7.130.240","20.7.131.54","20.7.131.60","20.7.131.34","20.7.131.59","20.7.131.44","20.7.131.5","20.7.131.39","20.7.131.50","20.1.251.104","172.200.51.234","172.200.52.27","172.200.51.44","172.200.51.235","172.200.51.243","172.200.51.45","172.200.51.191","172.200.51.242","172.200.52.26","172.200.51.190","20.1.251.2","13.68.118.203","13.68.119.127","52.184.147.35","52.184.147.9","20.94.111.32","20.94.110.46","20.97.130.219","20.69.200.68","52.167.135.54","52.184.149.238","52.179.250.88","52.184.149.147","52.184.198.180","52.184.138.179","52.179.253.112","52.184.190.79","52.184.141.185","52.184.151.206","20.97.132.38","20.97.133.137","20.94.122.99","20.94.122.65","20.94.122.133","20.94.122.111","20.94.122.70","20.94.122.101","20.161.138.86","20.161.137.24","4.153.72.251","4.153.73.13","4.153.73.38","4.153.72.240","4.153.73.30","4.153.72.243","4.153.73.23","4.153.72.247","4.153.73.6","4.153.73.37","20.161.137.25","52.184.192.104","52.177.123.74","52.177.123.175","52.177.123.148","52.177.123.136","52.177.123.98","52.177.123.102","52.177.123.125","52.177.123.90","52.177.123.69","20.161.138.87","20.122.82.135","172.177.177.115","20.122.82.26","20.122.82.51","20.122.81.165","20.122.82.63","20.122.81.203","172.177.180.194","20.122.81.254","20.122.82.103","4.153.106.247","4.153.107.93","4.153.108.180","4.153.107.3","4.153.110.115","4.153.108.140","135.224.183.166"],"latestRevisionName":"worker--015ac86","latestReadyRevisionName":"worker--015ac86","latestRevisionFqdn":"","customDomainVerificationId":"952E2B5B449FE1809E86B56F4189627111A065213A56FF099BE2E8782C9EB920","configuration":{"secrets":null,"activeRevisionsMode":"Single","ingress":null,"registries":[{"server":"acrlsxjxxqmwlwys.azurecr.io","username":"","passwordSecretRef":"","identity":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"}],"dapr":null,"maxInactiveRevisions":100,"service":null},"template":{"revisionSuffix":"","terminationGracePeriodSeconds":null,"containers":[{"image":"acrlsxjxxqmwlwys.azurecr.io/aspire-azd-tests/worker-azdtest-l9ec8e0:azd-deploy-1737152443","name":"worker","env":[{"name":"AZURE_CLIENT_ID","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EVENT_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_EMIT_EXCEPTION_LOG_ATTRIBUTES","value":"true"},{"name":"OTEL_DOTNET_EXPERIMENTAL_OTLP_RETRY","value":"in_memory"}],"resources":{"cpu":0.5,"memory":"1Gi","ephemeralStorage":"2Gi"}}],"initContainers":null,"scale":{"minReplicas":1,"maxReplicas":10,"rules":null},"volumes":null,"serviceBinds":null},"eventStreamEndpoint":"https://eastus2.azurecontainerapps.dev/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/containerApps/worker/eventstream","delegatedIdentities":[]},"identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}}}' headers: + Api-Supported-Versions: + - 2022-03-01, 2022-06-01-preview, 2022-10-01, 2022-11-01-preview, 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview Cache-Control: - no-cache Content-Length: - - "45429" + - "4250" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:27:21 GMT + - Fri, 17 Jan 2025 22:27:19 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - max-age=31536000; includeSubDomains + Vary: + - Accept-Encoding X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 86202460-033f-48b4-bf41-26e31f0aa8d9 + - 7207d578-a22b-4a1e-97e5-f5db1970ade1 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 86202460-033f-48b4-bf41-26e31f0aa8d9 + - 7207d578-a22b-4a1e-97e5-f5db1970ade1 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232721Z:86202460-033f-48b4-bf41-26e31f0aa8d9 + - WESTUS2:20250117T222719Z:7207d578-a22b-4a1e-97e5-f5db1970ade1 X-Msedge-Ref: - - 'Ref A: 9FFF5219C59640759762B1DA1C3B5964 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:27:21Z' + - 'Ref A: FBC1F4E687324E6EB0320CE40ECAFADB Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:19Z' + X-Powered-By: + - ASP.NET status: 200 OK code: 200 - duration: 716.892693ms - - id: 79 + duration: 464.16388ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -5390,13 +4281,15 @@ interactions: body: "" form: {} headers: + Accept: + - application/json Accept-Encoding: - gzip Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01&%24skiptoken=ZVBdT4NAEPwtvWdMODGN6RtwR2rpHdzeh8G3BtFQCCRKA9Lw3%2bVaMZq%2b7czO7GT2jPK26crmdOjKtlFtVTSfaHNGz1QqLe3UFEOXHj660gri4gttEF49rrjKBjZmd8i5KKDtlx321iuoooCR917oF8K0eOAkCIDURLgmYpq6XAVEKBNy9foGmCd76fYJ0bMuH%2fiY9Zxod77u8uPsDTEFEzCF6y0YkGB4asyOzJxUOIh0DTswbM0qeIJj7onRZEJ3saiMQpODZKLVNqRcgb%2b3lZpTXTuI%2brbg%2fX%2b4INv%2bxhGBz0P6Q%2f9VauktUMeXtAWGPveJb6MW5vrX39ibELunGpKUXh3T9A0%3d + - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -5404,18 +4297,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4787 + content_length: 5518 uncompressed: false - body: '{"value":[]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.OperationalInsights/workspaces/law-lsxjxxqmwlwys","name":"law-lsxjxxqmwlwys","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys","name":"mi-lsxjxxqmwlwys","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ContainerRegistry/registries/acrlsxjxxqmwlwys","name":"acrlsxjxxqmwlwys","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:21:16.3444511Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:21:16.3444511Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","name":"cae-lsxjxxqmwlwys","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:21:34.4412588Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:21:34.4412588Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys","name":"storagelsxjxxqmwlwys","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"aspire-resource-name":"storage"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:25:23.7820886Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:25:23.7820886Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:25:43.5742355Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:25:43.5742355Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:26:13.5933528Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:26:13.5933528Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:26:39.1500265Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:26:39.1500265Z"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "4787" + - "5518" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:27:21 GMT + - Fri, 17 Jan 2025 22:27:19 GMT Expires: - "-1" Pragma: @@ -5427,21 +4320,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e3296a05-5f29-44d3-b428-27aa3f676c30 + - d1841636-295b-463f-8dfc-b9c30e7c0519 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - e3296a05-5f29-44d3-b428-27aa3f676c30 + - d1841636-295b-463f-8dfc-b9c30e7c0519 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232722Z:e3296a05-5f29-44d3-b428-27aa3f676c30 + - WESTUS2:20250117T222719Z:d1841636-295b-463f-8dfc-b9c30e7c0519 X-Msedge-Ref: - - 'Ref A: EA3AA65BB9A64B29A5B9CA949946BCF3 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:27:21Z' + - 'Ref A: D95CB7FCD3FD4F148486C6DDC69B8B36 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:19Z' status: 200 OK code: 200 - duration: 691.013352ms - - id: 80 + duration: 204.066965ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -5463,7 +4356,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lfa372e-1731021426?api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -5471,18 +4364,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 8535 + content_length: 7301 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lfa372e-1731021426","name":"azdtest-lfa372e-1731021426","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e","azd-provision-param-hash":"15a2ed734364e02083b6013a24057945563929d961c974ebdcbb7d6d90bdbe31"},"properties":{"templateHash":"10347569819010401111","parameters":{"environmentName":{"type":"String","value":"azdtest-lfa372e"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"62661785-adcf-4117-b9d0-22b3aa2b4ebf"},"goversion":{"type":"String","value":"1.22"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-07T23:23:43.105272Z","duration":"PT5M49.9388816S","correlationId":"fb545d4c-36ab-4a63-94eb-afca495ffcc7","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-lfa372e"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-lfa372e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/cosmos","resourceType":"Microsoft.Resources/deployments","resourceName":"cosmos"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-lfa372e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/storage","resourceType":"Microsoft.Resources/deployments","resourceName":"storage"}],"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-gj2m4tcideyiu"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-gj2m4tcideyiu"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrgj2m4tcideyiu.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acrgj2m4tcideyiu"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-gj2m4tcideyiu"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"livelyisland-b8e736e6.eastus2.azurecontainerapps.io"},"servicE_BINDING_KVF2EDECB5_ENDPOINT":{"type":"String","value":"https://kvf2edecb5gj2m4tcideyiu.vault.azure.net/"},"servicE_BINDING_KVF2EDECB5_NAME":{"type":"String","value":"kvf2edecb5gj2m4tcideyiu"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storagegj2m4tcideyiu.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storagegj2m4tcideyiu.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storagegj2m4tcideyiu.table.core.windows.net/"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/19305341-30ce-5458-9fbe-f4360532fe40"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ContainerRegistry/registries/acrgj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ContainerRegistry/registries/acrgj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/8dfc28cd-f974-54ef-8d43-bdd3c46eaa32"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-gj2m4tcideyiu/sqlDatabases/db3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/348a7c33-1b1f-5bd6-8d16-3c9dc72238fe"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/6a29dbf1-ed9f-5df4-b15e-2bf1ce4c4927"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu/secrets/connectionString"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.OperationalInsights/workspaces/law-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/8ba3fa54-1c85-595d-acca-dc084c613c4f"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/a0691050-95f9-50c3-9c4d-cbe9b5e98488"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/ad5d2df9-e45e-581c-879d-0a2163f80cee"}]}}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l9ec8e0-1737152443","location":"eastus2","name":"azdtest-l9ec8e0-1737152443","properties":{"correlationId":"9ba108b9-2a4e-4013-92a9-70f87d052c91","dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","resourceName":"rg-azdtest-l9ec8e0","resourceType":"Microsoft.Resources/resourceGroups"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","resourceName":"rg-azdtest-l9ec8e0","resourceType":"Microsoft.Resources/resourceGroups"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceName":"resources","resourceType":"Microsoft.Resources/deployments"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/storage","resourceName":"storage","resourceType":"Microsoft.Resources/deployments"}],"duration":"PT3M46.7563092S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/8ce016b1-9caf-533a-aedd-7b26b1744d62"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ContainerRegistry/registries/acrlsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ContainerRegistry/registries/acrlsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/3bae0392-4f0c-5dbb-8852-0bea6a880238"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.OperationalInsights/workspaces/law-lsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/69a275a2-c893-532c-b813-19ce25202057"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/c25fd737-9232-5f2f-9190-8100cb9c056b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/ca8eed46-c023-55b7-9acd-f361e8f31f51"}],"outputs":{"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"kindmushroom-e5145b77.eastus2.azurecontainerapps.io"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-lsxjxxqmwlwys"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrlsxjxxqmwlwys.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acrlsxjxxqmwlwys"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-lsxjxxqmwlwys"},"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-lsxjxxqmwlwys"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storagelsxjxxqmwlwys.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storagelsxjxxqmwlwys.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storagelsxjxxqmwlwys.table.core.windows.net/"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-l9ec8e0"},"goversion":{"type":"String","value":"1.22"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"62661785-adcf-4117-b9d0-22b3aa2b4ebf"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"},{"locations":[null],"resourceType":"deployments"}]}],"provisioningState":"Succeeded","templateHash":"7799194296368964685","timestamp":"2025-01-17T22:24:56.7441448Z"},"tags":{"azd-env-name":"azdtest-l9ec8e0","azd-provision-param-hash":"5078b0222ae3b911466620e07caac5df333846f9302ccf48f5425f919d2b93fd"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "8535" + - "7301" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:27:22 GMT + - Fri, 17 Jan 2025 22:27:28 GMT Expires: - "-1" Pragma: @@ -5494,21 +4387,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c079b6ed-ff8b-42af-afb3-abd44bed25e4 + - a8588e70-ec71-4c32-a87e-64d544ed23ef X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - c079b6ed-ff8b-42af-afb3-abd44bed25e4 + - a8588e70-ec71-4c32-a87e-64d544ed23ef X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232722Z:c079b6ed-ff8b-42af-afb3-abd44bed25e4 + - WESTUS2:20250117T222729Z:a8588e70-ec71-4c32-a87e-64d544ed23ef X-Msedge-Ref: - - 'Ref A: 4D51BF8BAAB0412087A84365FBB66CA7 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:27:22Z' + - 'Ref A: 64DBAD879B064B4D87FB72BE22230AB7 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:28Z' status: 200 OK code: 200 - duration: 349.804549ms - - id: 81 + duration: 403.285104ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -5529,8 +4422,8 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lfa372e%27&api-version=2021-04-01 + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l9ec8e0-1737152443?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -5538,18 +4431,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 6284 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","name":"rg-azdtest-lfa372e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l9ec8e0-1737152443","name":"azdtest-l9ec8e0-1737152443","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0","azd-provision-param-hash":"5078b0222ae3b911466620e07caac5df333846f9302ccf48f5425f919d2b93fd"},"properties":{"templateHash":"7799194296368964685","parameters":{"environmentName":{"type":"String","value":"azdtest-l9ec8e0"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"62661785-adcf-4117-b9d0-22b3aa2b4ebf"},"goversion":{"type":"String","value":"1.22"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-17T22:24:56.7441448Z","duration":"PT3M46.7563092S","correlationId":"9ba108b9-2a4e-4013-92a9-70f87d052c91","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l9ec8e0"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l9ec8e0"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/storage","resourceType":"Microsoft.Resources/deployments","resourceName":"storage"}],"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-lsxjxxqmwlwys"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-lsxjxxqmwlwys"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrlsxjxxqmwlwys.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acrlsxjxxqmwlwys"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-lsxjxxqmwlwys"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"kindmushroom-e5145b77.eastus2.azurecontainerapps.io"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storagelsxjxxqmwlwys.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storagelsxjxxqmwlwys.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storagelsxjxxqmwlwys.table.core.windows.net/"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/8ce016b1-9caf-533a-aedd-7b26b1744d62"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ContainerRegistry/registries/acrlsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ContainerRegistry/registries/acrlsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/3bae0392-4f0c-5dbb-8852-0bea6a880238"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.OperationalInsights/workspaces/law-lsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/69a275a2-c893-532c-b813-19ce25202057"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/c25fd737-9232-5f2f-9190-8100cb9c056b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/ca8eed46-c023-55b7-9acd-f361e8f31f51"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "288" + - "6284" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:27:22 GMT + - Fri, 17 Jan 2025 22:27:28 GMT Expires: - "-1" Pragma: @@ -5561,21 +4454,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - fec1ac52-1b39-483e-a8a5-83bcc5060c53 + - aa1f6c9b-bd2f-431b-87d3-aea3affd191a X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - fec1ac52-1b39-483e-a8a5-83bcc5060c53 + - aa1f6c9b-bd2f-431b-87d3-aea3affd191a X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232722Z:fec1ac52-1b39-483e-a8a5-83bcc5060c53 + - WESTUS2:20250117T222729Z:aa1f6c9b-bd2f-431b-87d3-aea3affd191a X-Msedge-Ref: - - 'Ref A: ABDFF52ACA6D4CD6942C57BB6E1170F3 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:27:22Z' + - 'Ref A: E7C3D99B4920433CBE02E7957760FF75 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:29Z' status: 200 OK code: 200 - duration: 66.536191ms - - id: 82 + duration: 199.240285ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -5596,8 +4489,8 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/resources?api-version=2021-04-01 + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l9ec8e0%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -5605,18 +4498,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 6408 + content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu","name":"mi-gj2m4tcideyiu","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.OperationalInsights/workspaces/law-gj2m4tcideyiu","name":"law-gj2m4tcideyiu","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ContainerRegistry/registries/acrgj2m4tcideyiu","name":"acrgj2m4tcideyiu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:18:01.8245097Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:18:01.8245097Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu","name":"kvf2edecb5gj2m4tcideyiu","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:18:01.84Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:18:01.84Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","name":"cae-gj2m4tcideyiu","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:18:19.2499114Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:18:19.2499114Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-gj2m4tcideyiu","name":"cosmos-gj2m4tcideyiu","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","location":"eastus2","identity":{"type":"None"},"tags":{"aspire-resource-name":"cosmos"},"systemData":{"createdAt":"2024-11-07T23:23:03.2341225Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu","name":"storagegj2m4tcideyiu","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"aspire-resource-name":"storage"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:24:09.7806272Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:24:09.7806272Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:24:28.7227697Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:24:28.7227697Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:25:01.703096Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:25:01.703096Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:25:33.2496275Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:25:33.2496275Z"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","name":"rg-azdtest-l9ec8e0","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "6408" + - "288" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:27:22 GMT + - Fri, 17 Jan 2025 22:27:29 GMT Expires: - "-1" Pragma: @@ -5628,21 +4521,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - bee0c58f-2255-4c03-a780-9c5a0352d309 + - 19c2651e-1e3a-4c03-9777-318623c8bd87 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16498" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1098" + - "1099" X-Ms-Request-Id: - - bee0c58f-2255-4c03-a780-9c5a0352d309 + - 19c2651e-1e3a-4c03-9777-318623c8bd87 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232723Z:bee0c58f-2255-4c03-a780-9c5a0352d309 + - WESTUS2:20250117T222729Z:19c2651e-1e3a-4c03-9777-318623c8bd87 X-Msedge-Ref: - - 'Ref A: 275298C3E02744009CFAC50BB0E1C24F Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:27:22Z' + - 'Ref A: 3093DA18E2E14272B228A87B66100E6D Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:29Z' status: 200 OK code: 200 - duration: 227.165204ms - - id: 83 + duration: 85.515678ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -5663,8 +4556,8 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armkeyvault/v1.0.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu?api-version=2021-10-01 + - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -5672,50 +4565,44 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 842 + content_length: 5518 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu","name":"kvf2edecb5gj2m4tcideyiu","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:18:01.84Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:18:01.84Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://kvf2edecb5gj2m4tcideyiu.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.OperationalInsights/workspaces/law-lsxjxxqmwlwys","name":"law-lsxjxxqmwlwys","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys","name":"mi-lsxjxxqmwlwys","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ContainerRegistry/registries/acrlsxjxxqmwlwys","name":"acrlsxjxxqmwlwys","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:21:16.3444511Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:21:16.3444511Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","name":"cae-lsxjxxqmwlwys","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:21:34.4412588Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:21:34.4412588Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys","name":"storagelsxjxxqmwlwys","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"aspire-resource-name":"storage"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:25:23.7820886Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:25:23.7820886Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:25:43.5742355Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:25:43.5742355Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:26:13.5933528Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:26:13.5933528Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:26:39.1500265Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:26:39.1500265Z"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "842" + - "5518" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:27:22 GMT + - Fri, 17 Jan 2025 22:27:29 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - max-age=31536000; includeSubDomains - X-Aspnet-Version: - - 4.0.30319 X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Ms-Client-Request-Id: - - 27e79841-8847-45ee-8e0c-7b496e77a00b X-Ms-Correlation-Request-Id: - - a86e5897-5dbe-4bdd-994b-59add10052ff - X-Ms-Keyvault-Service-Version: - - 1.5.1361.0 + - 133fe31c-47b4-4e74-be9a-a0505f339e4e X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - d0b6510c-eab8-49bf-9652-c72a5b8801c4 + - 133fe31c-47b4-4e74-be9a-a0505f339e4e X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232723Z:a86e5897-5dbe-4bdd-994b-59add10052ff + - WESTUS2:20250117T222729Z:133fe31c-47b4-4e74-be9a-a0505f339e4e X-Msedge-Ref: - - 'Ref A: 0D736FAF88314CF4B154C883793FD333 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:27:23Z' + - 'Ref A: C260D63749374E628880A1B542AFCB21 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:29Z' status: 200 OK code: 200 - duration: 207.436324ms - - id: 84 + duration: 213.172803ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -5737,7 +4624,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lfa372e-1731021426?api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l9ec8e0-1737152443?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -5745,18 +4632,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 8535 + content_length: 6284 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lfa372e-1731021426","name":"azdtest-lfa372e-1731021426","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e","azd-provision-param-hash":"15a2ed734364e02083b6013a24057945563929d961c974ebdcbb7d6d90bdbe31"},"properties":{"templateHash":"10347569819010401111","parameters":{"environmentName":{"type":"String","value":"azdtest-lfa372e"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"62661785-adcf-4117-b9d0-22b3aa2b4ebf"},"goversion":{"type":"String","value":"1.22"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-07T23:23:43.105272Z","duration":"PT5M49.9388816S","correlationId":"fb545d4c-36ab-4a63-94eb-afca495ffcc7","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-lfa372e"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-lfa372e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/cosmos","resourceType":"Microsoft.Resources/deployments","resourceName":"cosmos"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-lfa372e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/storage","resourceType":"Microsoft.Resources/deployments","resourceName":"storage"}],"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-gj2m4tcideyiu"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-gj2m4tcideyiu"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrgj2m4tcideyiu.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acrgj2m4tcideyiu"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-gj2m4tcideyiu"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"livelyisland-b8e736e6.eastus2.azurecontainerapps.io"},"servicE_BINDING_KVF2EDECB5_ENDPOINT":{"type":"String","value":"https://kvf2edecb5gj2m4tcideyiu.vault.azure.net/"},"servicE_BINDING_KVF2EDECB5_NAME":{"type":"String","value":"kvf2edecb5gj2m4tcideyiu"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storagegj2m4tcideyiu.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storagegj2m4tcideyiu.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storagegj2m4tcideyiu.table.core.windows.net/"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/19305341-30ce-5458-9fbe-f4360532fe40"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ContainerRegistry/registries/acrgj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ContainerRegistry/registries/acrgj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/8dfc28cd-f974-54ef-8d43-bdd3c46eaa32"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-gj2m4tcideyiu/sqlDatabases/db3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/348a7c33-1b1f-5bd6-8d16-3c9dc72238fe"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/6a29dbf1-ed9f-5df4-b15e-2bf1ce4c4927"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu/secrets/connectionString"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.OperationalInsights/workspaces/law-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/8ba3fa54-1c85-595d-acca-dc084c613c4f"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/a0691050-95f9-50c3-9c4d-cbe9b5e98488"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/ad5d2df9-e45e-581c-879d-0a2163f80cee"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l9ec8e0-1737152443","name":"azdtest-l9ec8e0-1737152443","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0","azd-provision-param-hash":"5078b0222ae3b911466620e07caac5df333846f9302ccf48f5425f919d2b93fd"},"properties":{"templateHash":"7799194296368964685","parameters":{"environmentName":{"type":"String","value":"azdtest-l9ec8e0"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"62661785-adcf-4117-b9d0-22b3aa2b4ebf"},"goversion":{"type":"String","value":"1.22"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-17T22:24:56.7441448Z","duration":"PT3M46.7563092S","correlationId":"9ba108b9-2a4e-4013-92a9-70f87d052c91","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l9ec8e0"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l9ec8e0"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/storage","resourceType":"Microsoft.Resources/deployments","resourceName":"storage"}],"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-lsxjxxqmwlwys"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-lsxjxxqmwlwys"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrlsxjxxqmwlwys.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acrlsxjxxqmwlwys"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-lsxjxxqmwlwys"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"kindmushroom-e5145b77.eastus2.azurecontainerapps.io"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storagelsxjxxqmwlwys.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storagelsxjxxqmwlwys.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storagelsxjxxqmwlwys.table.core.windows.net/"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/8ce016b1-9caf-533a-aedd-7b26b1744d62"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ContainerRegistry/registries/acrlsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ContainerRegistry/registries/acrlsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/3bae0392-4f0c-5dbb-8852-0bea6a880238"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.OperationalInsights/workspaces/law-lsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/69a275a2-c893-532c-b813-19ce25202057"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/c25fd737-9232-5f2f-9190-8100cb9c056b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/ca8eed46-c023-55b7-9acd-f361e8f31f51"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "8535" + - "6284" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:27:23 GMT + - Fri, 17 Jan 2025 22:27:29 GMT Expires: - "-1" Pragma: @@ -5768,21 +4655,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 83e65702-ff77-4646-b3e9-d1cc49160286 + - dc216f75-e2e5-4173-a8c0-9629d38df551 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 83e65702-ff77-4646-b3e9-d1cc49160286 + - dc216f75-e2e5-4173-a8c0-9629d38df551 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232723Z:83e65702-ff77-4646-b3e9-d1cc49160286 + - WESTUS2:20250117T222730Z:dc216f75-e2e5-4173-a8c0-9629d38df551 X-Msedge-Ref: - - 'Ref A: BCD03FAE741F4E3D93D4BEFA9F5C3652 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:27:23Z' + - 'Ref A: 30E8FD6482C848BA8EFFD13482E7AD97 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:29Z' status: 200 OK code: 200 - duration: 191.233724ms - - id: 85 + duration: 347.491245ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -5804,7 +4691,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lfa372e%27&api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l9ec8e0%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -5814,7 +4701,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","name":"rg-azdtest-lfa372e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","name":"rg-azdtest-l9ec8e0","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -5823,7 +4710,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:27:23 GMT + - Fri, 17 Jan 2025 22:27:29 GMT Expires: - "-1" Pragma: @@ -5835,21 +4722,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - ec2a46f6-a1b0-444c-a9da-9348cb803a02 + - 530b3e4d-19b9-46f4-bc8f-5f22f570ceb3 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16497" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1097" + - "1099" X-Ms-Request-Id: - - ec2a46f6-a1b0-444c-a9da-9348cb803a02 + - 530b3e4d-19b9-46f4-bc8f-5f22f570ceb3 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232723Z:ec2a46f6-a1b0-444c-a9da-9348cb803a02 + - WESTUS2:20250117T222730Z:530b3e4d-19b9-46f4-bc8f-5f22f570ceb3 X-Msedge-Ref: - - 'Ref A: 7894CE9C6D4244D5BA4C16A74FBBCC02 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:27:23Z' + - 'Ref A: 77303DF5DA6C4776B3AA034436924C01 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:30Z' status: 200 OK code: 200 - duration: 46.576113ms - - id: 86 + duration: 63.630567ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -5871,7 +4758,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.Client/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/resources?api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/resources?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -5879,18 +4766,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 6408 + content_length: 5518 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu","name":"mi-gj2m4tcideyiu","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.OperationalInsights/workspaces/law-gj2m4tcideyiu","name":"law-gj2m4tcideyiu","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu","name":"kvf2edecb5gj2m4tcideyiu","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:18:01.84Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:18:01.84Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ContainerRegistry/registries/acrgj2m4tcideyiu","name":"acrgj2m4tcideyiu","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:18:01.8245097Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:18:01.8245097Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu","name":"cae-gj2m4tcideyiu","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:18:19.2499114Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:18:19.2499114Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-gj2m4tcideyiu","name":"cosmos-gj2m4tcideyiu","type":"Microsoft.DocumentDB/databaseAccounts","kind":"GlobalDocumentDB","location":"eastus2","identity":{"type":"None"},"tags":{"aspire-resource-name":"cosmos"},"systemData":{"createdAt":"2024-11-07T23:23:03.2341225Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu","name":"storagegj2m4tcideyiu","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"aspire-resource-name":"storage"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:24:09.7806272Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:24:09.7806272Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:24:28.7227697Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:24:28.7227697Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:25:01.703096Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:25:01.703096Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/containerApps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu":{"principalId":"9ada2523-b27e-4d50-9f8b-62cf590c5132","clientId":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"}}},"tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2024-11-07T23:25:33.2496275Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2024-11-07T23:25:33.2496275Z"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.OperationalInsights/workspaces/law-lsxjxxqmwlwys","name":"law-lsxjxxqmwlwys","type":"Microsoft.OperationalInsights/workspaces","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys","name":"mi-lsxjxxqmwlwys","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ContainerRegistry/registries/acrlsxjxxqmwlwys","name":"acrlsxjxxqmwlwys","type":"Microsoft.ContainerRegistry/registries","sku":{"name":"Basic","tier":"Basic"},"location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:21:16.3444511Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:21:16.3444511Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys","name":"cae-lsxjxxqmwlwys","type":"Microsoft.App/managedEnvironments","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:21:34.4412588Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:21:34.4412588Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys","name":"storagelsxjxxqmwlwys","type":"Microsoft.Storage/storageAccounts","sku":{"name":"Standard_GRS","tier":"Standard"},"kind":"StorageV2","location":"eastus2","tags":{"aspire-resource-name":"storage"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/apiservice","name":"apiservice","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"apiservice","azd-service-name":"apiservice"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:25:23.7820886Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:25:23.7820886Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/pubsub","name":"pubsub","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"pubsub","azd-service-name":"pubsub"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:25:43.5742355Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:25:43.5742355Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/webfrontend","name":"webfrontend","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"webfrontend","azd-service-name":"webfrontend"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:26:13.5933528Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:26:13.5933528Z"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/containerApps/worker","name":"worker","type":"Microsoft.App/containerApps","location":"eastus2","identity":{"type":"UserAssigned","userAssignedIdentities":{"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys":{"principalId":"3d511431-5042-491f-b1b6-d5649d904d15","clientId":"693e6797-aed5-46f4-be7b-f7d146b91f51"}}},"tags":{"aspire-resource-name":"worker","azd-service-name":"worker"},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-17T22:26:39.1500265Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-17T22:26:39.1500265Z"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "6408" + - "5518" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:27:23 GMT + - Fri, 17 Jan 2025 22:27:29 GMT Expires: - "-1" Pragma: @@ -5902,21 +4789,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 7e0ee300-89c0-41dd-8185-caf2ecbe0535 + - 3690f5c2-2c35-4df5-8fb7-cf57c89cb189 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16496" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1096" + - "1099" X-Ms-Request-Id: - - 7e0ee300-89c0-41dd-8185-caf2ecbe0535 + - 3690f5c2-2c35-4df5-8fb7-cf57c89cb189 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232723Z:7e0ee300-89c0-41dd-8185-caf2ecbe0535 + - WESTUS2:20250117T222730Z:3690f5c2-2c35-4df5-8fb7-cf57c89cb189 X-Msedge-Ref: - - 'Ref A: 5D37AC23E80648FD872FF46AFA83B839 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:27:23Z' + - 'Ref A: 0BA693AA1A7F469EA6D2951586A6439E Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:30Z' status: 200 OK code: 200 - duration: 217.818161ms - - id: 87 + duration: 184.294387ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -5938,7 +4825,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-lfa372e?api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-azdtest-l9ec8e0?api-version=2021-04-01 method: DELETE response: proto: HTTP/2.0 @@ -5955,11 +4842,11 @@ interactions: Content-Length: - "0" Date: - - Thu, 07 Nov 2024 23:27:24 GMT + - Fri, 17 Jan 2025 22:27:31 GMT Expires: - "-1" Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRMRkEzNzJFLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638666199179181649&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=gk94ItYpxPq6cE2wCmQ4_ZCU_lSnNaAPsoNypxLeW23YS6tuteUGEPFejQ1i2FrXcTU0DG30wqsTilJNN-CqWIuXf9IDmzJjIYLHWS-_S4qdqrJkbXug6fMDQZuUsrRgOVl-WjzV9rcjPR3lR8oalWo-DfW0IxI9JDJJk-I51l_EdpJtGP7zVnsdAR1_Z3-5MiH_s0aQDPV38iDEk7YbNxJlS7bCKL9ixmjJGC9gzb9b9VnAVeFyfCXREtVBKKuNMugOKQquocLahBc53IbOJytQNJvQWtEVp2y38u7IDzlroGSBBgiGRXSvnr7ozPGFlEsuSJmyCTEBu-mLuUKb2g&h=FiHE3H8r_tbypD0Ltama8MxozFLBQeHwl4kTg_Bv55I + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRMOUVDOEUwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638727507381066753&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=ZXlUqmscDTJx8gT8yORrGW74QobAzAp73sZHOlr_ZXG033gF3IQBbcfSY9wZgfsoyqlFo93QeQP82y5ilceOCKCBNRVDVuZ41k0Js6GwKrTezFweJ-roZPWelkOH6Jikukav7v7vpFJmSRtpRda7i9Ur7WRoiZXIBJYIk9u2p63njvx2EsMjjhC-LlP3-26YjHHIsp_zMTFbmNXz-zEvfC9kiSsVt6gU9LXXM-KGXKjJQt19Xn5Wu-c0ESNIXv3xpAPvI_OwCz-ViZtGqWB1SnLucavwrSpZBFOwPJs-HJS2OVBH-7WELMv5cl_hk5d40rxaqxP9KnYmw_KzJ5IqKA&h=C-hrqIUlVD5aIB2I1VOhvC20zjdLJESwKU1jAFE14Ok Pragma: - no-cache Retry-After: @@ -5971,21 +4858,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 07244dfe-71d9-4dcd-9f57-861a7713f3cb + - 79955f38-9e8e-4dd9-9424-9229430a1602 X-Ms-Ratelimit-Remaining-Subscription-Deletes: - "799" X-Ms-Ratelimit-Remaining-Subscription-Global-Deletes: - "11999" X-Ms-Request-Id: - - 07244dfe-71d9-4dcd-9f57-861a7713f3cb + - 79955f38-9e8e-4dd9-9424-9229430a1602 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T232724Z:07244dfe-71d9-4dcd-9f57-861a7713f3cb + - WESTUS2:20250117T222732Z:79955f38-9e8e-4dd9-9424-9229430a1602 X-Msedge-Ref: - - 'Ref A: 2A0D34033F57470C954E01671178F8D5 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:27:23Z' + - 'Ref A: 37F40FB62654497684F127BC2C05BAB5 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:27:30Z' status: 202 Accepted code: 202 - duration: 1.071484512s - - id: 88 + duration: 1.596025929s + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -6005,7 +4892,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRMRkEzNzJFLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638666199179181649&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=gk94ItYpxPq6cE2wCmQ4_ZCU_lSnNaAPsoNypxLeW23YS6tuteUGEPFejQ1i2FrXcTU0DG30wqsTilJNN-CqWIuXf9IDmzJjIYLHWS-_S4qdqrJkbXug6fMDQZuUsrRgOVl-WjzV9rcjPR3lR8oalWo-DfW0IxI9JDJJk-I51l_EdpJtGP7zVnsdAR1_Z3-5MiH_s0aQDPV38iDEk7YbNxJlS7bCKL9ixmjJGC9gzb9b9VnAVeFyfCXREtVBKKuNMugOKQquocLahBc53IbOJytQNJvQWtEVp2y38u7IDzlroGSBBgiGRXSvnr7ozPGFlEsuSJmyCTEBu-mLuUKb2g&h=FiHE3H8r_tbypD0Ltama8MxozFLBQeHwl4kTg_Bv55I + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzoyREFaRFRFU1Q6MkRMOUVDOEUwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2021-04-01&t=638727507381066753&c=MIIHhzCCBm-gAwIBAgITHgVxvH65_BmPrKxDIgAABXG8fjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDYwHhcNMjQwOTI1MTkzNzA4WhcNMjUwMzI0MTkzNzA4WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKlHcl7gn1b6aLS1hLftgvWE8n-Z9liLRsNGgjYfyY_1N6TVDEHJTtctREIaCRDPEC-hePKBe7OS45JIAD6cl5AGU_dQlGd-3bBZeVfAPJFUnC910pwhDca2OXlf4LyB1KSofXaA4xDB6G7cHXRld_URCnol2LHQEGox0vBzaPz30AUB0ZhAatZgqhXy5qnroV3zbEZC3m4qLDSnG8QNEnw8Wv5GpYH_MxK9mgDPwoIObeDBnjtQonKzvItZ8jXwF-wEmcVAnhr6Dvq3rWdBY9616kXvQ7E3eEvGqMn9W_NZTAqlaanfaACfITkIJZkgsSoJGw5USCMC-vzAb1Ms0j0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAyLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA2LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMi5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNi5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDIuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3J0MB0GA1UdDgQWBBTELag1gS_F07Xj1us9l4ySYrHYYjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDYuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBTxRmjG8cPwKy19i2rhsvm-NfzRQTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBABJx3Gb3LtjBZ4x70SioNIk8ap3qwt2DMEu9dXEhi28jFB87BBsTCkNeuhGlLzHm7Ykx6xpUjJp4F2_qmJKrQjDH4U0VYT_yc8Ow5mxrFJcewgTXzwmwqXOodok5WWOUVP4Mmdp_O_3je1dVgw4TrdrypIZImBn2jVDrXQ79fFXTR-Td0XMOtWPDwreoMRagD769QW4hlGtVaZCqOAzyomfSc8PhDzKhllbZQrmP-UgiLU14SDsxwq6AHG413ClcJIDGfEsEKwlUyIIAKHDwSdbO41Zs7ZQG5k_eBlGTkr-5Zye8vT7OeGf1_mGZSme6otyTUL_3-6gJ282qCPXoflc&s=ZXlUqmscDTJx8gT8yORrGW74QobAzAp73sZHOlr_ZXG033gF3IQBbcfSY9wZgfsoyqlFo93QeQP82y5ilceOCKCBNRVDVuZ41k0Js6GwKrTezFweJ-roZPWelkOH6Jikukav7v7vpFJmSRtpRda7i9Ur7WRoiZXIBJYIk9u2p63njvx2EsMjjhC-LlP3-26YjHHIsp_zMTFbmNXz-zEvfC9kiSsVt6gU9LXXM-KGXKjJQt19Xn5Wu-c0ESNIXv3xpAPvI_OwCz-ViZtGqWB1SnLucavwrSpZBFOwPJs-HJS2OVBH-7WELMv5cl_hk5d40rxaqxP9KnYmw_KzJ5IqKA&h=C-hrqIUlVD5aIB2I1VOhvC20zjdLJESwKU1jAFE14Ok method: GET response: proto: HTTP/2.0 @@ -6022,7 +4909,7 @@ interactions: Content-Length: - "0" Date: - - Thu, 07 Nov 2024 23:45:33 GMT + - Fri, 17 Jan 2025 22:45:53 GMT Expires: - "-1" Pragma: @@ -6034,21 +4921,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 25cf9d3b-35b3-49b2-9bf4-cff099a93a1b + - 84530adc-c9bb-40dc-a318-eccde9ad9f01 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 25cf9d3b-35b3-49b2-9bf4-cff099a93a1b + - 84530adc-c9bb-40dc-a318-eccde9ad9f01 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T234533Z:25cf9d3b-35b3-49b2-9bf4-cff099a93a1b + - WESTUS2:20250117T224553Z:84530adc-c9bb-40dc-a318-eccde9ad9f01 X-Msedge-Ref: - - 'Ref A: 736F90F1EA7D402B8F2C1E08B0E67D63 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:45:32Z' + - 'Ref A: 5D7F822FC1F1418CA15657CECF62F470 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:45:53Z' status: 200 OK code: 200 - duration: 517.124981ms - - id: 89 + duration: 174.915492ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -6070,7 +4957,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lfa372e-1731021426?api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l9ec8e0-1737152443?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -6078,18 +4965,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 8535 + content_length: 6284 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lfa372e-1731021426","name":"azdtest-lfa372e-1731021426","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lfa372e","azd-provision-param-hash":"15a2ed734364e02083b6013a24057945563929d961c974ebdcbb7d6d90bdbe31"},"properties":{"templateHash":"10347569819010401111","parameters":{"environmentName":{"type":"String","value":"azdtest-lfa372e"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"62661785-adcf-4117-b9d0-22b3aa2b4ebf"},"goversion":{"type":"String","value":"1.22"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-07T23:23:43.105272Z","duration":"PT5M49.9388816S","correlationId":"fb545d4c-36ab-4a63-94eb-afca495ffcc7","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-lfa372e"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-lfa372e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/cosmos","resourceType":"Microsoft.Resources/deployments","resourceName":"cosmos"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-lfa372e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Resources/deployments/storage","resourceType":"Microsoft.Resources/deployments","resourceName":"storage"}],"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"67c2accf-539d-4c94-bc7f-b948fba1ffb3"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-gj2m4tcideyiu"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-gj2m4tcideyiu"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrgj2m4tcideyiu.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acrgj2m4tcideyiu"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-gj2m4tcideyiu"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"livelyisland-b8e736e6.eastus2.azurecontainerapps.io"},"servicE_BINDING_KVF2EDECB5_ENDPOINT":{"type":"String","value":"https://kvf2edecb5gj2m4tcideyiu.vault.azure.net/"},"servicE_BINDING_KVF2EDECB5_NAME":{"type":"String","value":"kvf2edecb5gj2m4tcideyiu"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storagegj2m4tcideyiu.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storagegj2m4tcideyiu.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storagegj2m4tcideyiu.table.core.windows.net/"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.App/managedEnvironments/cae-gj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/19305341-30ce-5458-9fbe-f4360532fe40"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ContainerRegistry/registries/acrgj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ContainerRegistry/registries/acrgj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/8dfc28cd-f974-54ef-8d43-bdd3c46eaa32"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.DocumentDB/databaseAccounts/cosmos-gj2m4tcideyiu/sqlDatabases/db3"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/348a7c33-1b1f-5bd6-8d16-3c9dc72238fe"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/6a29dbf1-ed9f-5df4-b15e-2bf1ce4c4927"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.KeyVault/vaults/kvf2edecb5gj2m4tcideyiu/secrets/connectionString"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.OperationalInsights/workspaces/law-gj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/8ba3fa54-1c85-595d-acca-dc084c613c4f"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/a0691050-95f9-50c3-9c4d-cbe9b5e98488"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lfa372e/providers/Microsoft.Storage/storageAccounts/storagegj2m4tcideyiu/providers/Microsoft.Authorization/roleAssignments/ad5d2df9-e45e-581c-879d-0a2163f80cee"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l9ec8e0-1737152443","name":"azdtest-l9ec8e0-1737152443","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l9ec8e0","azd-provision-param-hash":"5078b0222ae3b911466620e07caac5df333846f9302ccf48f5425f919d2b93fd"},"properties":{"templateHash":"7799194296368964685","parameters":{"environmentName":{"type":"String","value":"azdtest-l9ec8e0"},"location":{"type":"String","value":"eastus2"},"principalId":{"type":"String","value":"62661785-adcf-4117-b9d0-22b3aa2b4ebf"},"goversion":{"type":"String","value":"1.22"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-17T22:24:56.7441448Z","duration":"PT3M46.7563092S","correlationId":"9ba108b9-2a4e-4013-92a9-70f87d052c91","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]},{"resourceType":"deployments","locations":[null]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l9ec8e0"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"dependsOn":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0","resourceType":"Microsoft.Resources/resourceGroups","resourceName":"rg-azdtest-l9ec8e0"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/resources","resourceType":"Microsoft.Resources/deployments","resourceName":"resources","apiVersion":"2022-09-01"}],"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Resources/deployments/storage","resourceType":"Microsoft.Resources/deployments","resourceName":"storage"}],"outputs":{"manageD_IDENTITY_CLIENT_ID":{"type":"String","value":"693e6797-aed5-46f4-be7b-f7d146b91f51"},"manageD_IDENTITY_NAME":{"type":"String","value":"mi-lsxjxxqmwlwys"},"azurE_LOG_ANALYTICS_WORKSPACE_NAME":{"type":"String","value":"law-lsxjxxqmwlwys"},"azurE_CONTAINER_REGISTRY_ENDPOINT":{"type":"String","value":"acrlsxjxxqmwlwys.azurecr.io"},"azurE_CONTAINER_REGISTRY_MANAGED_IDENTITY_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"},"azurE_CONTAINER_REGISTRY_NAME":{"type":"String","value":"acrlsxjxxqmwlwys"},"azurE_CONTAINER_APPS_ENVIRONMENT_NAME":{"type":"String","value":"cae-lsxjxxqmwlwys"},"azurE_CONTAINER_APPS_ENVIRONMENT_ID":{"type":"String","value":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys"},"azurE_CONTAINER_APPS_ENVIRONMENT_DEFAULT_DOMAIN":{"type":"String","value":"kindmushroom-e5145b77.eastus2.azurecontainerapps.io"},"storagE_BLOBENDPOINT":{"type":"String","value":"https://storagelsxjxxqmwlwys.blob.core.windows.net/"},"storagE_QUEUEENDPOINT":{"type":"String","value":"https://storagelsxjxxqmwlwys.queue.core.windows.net/"},"storagE_TABLEENDPOINT":{"type":"String","value":"https://storagelsxjxxqmwlwys.table.core.windows.net/"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys/dotNetComponents/aspire-dashboard"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.App/managedEnvironments/cae-lsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/8ce016b1-9caf-533a-aedd-7b26b1744d62"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ContainerRegistry/registries/acrlsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ContainerRegistry/registries/acrlsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/3bae0392-4f0c-5dbb-8852-0bea6a880238"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.ManagedIdentity/userAssignedIdentities/mi-lsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.OperationalInsights/workspaces/law-lsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/blobServices/default"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/69a275a2-c893-532c-b813-19ce25202057"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/c25fd737-9232-5f2f-9190-8100cb9c056b"},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l9ec8e0/providers/Microsoft.Storage/storageAccounts/storagelsxjxxqmwlwys/providers/Microsoft.Authorization/roleAssignments/ca8eed46-c023-55b7-9acd-f361e8f31f51"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "8535" + - "6284" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:45:33 GMT + - Fri, 17 Jan 2025 22:45:53 GMT Expires: - "-1" Pragma: @@ -6101,21 +4988,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - fba89091-01c9-4657-abe2-65dff1cd2389 + - 92516426-ed77-4fdd-8cfb-25ad20c3d524 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - fba89091-01c9-4657-abe2-65dff1cd2389 + - 92516426-ed77-4fdd-8cfb-25ad20c3d524 X-Ms-Routing-Request-Id: - - WESTUS2:20241107T234533Z:fba89091-01c9-4657-abe2-65dff1cd2389 + - WESTUS2:20250117T224553Z:92516426-ed77-4fdd-8cfb-25ad20c3d524 X-Msedge-Ref: - - 'Ref A: 1C0943EB1D6C4E56A90E9BA65D17FDE4 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:45:33Z' + - 'Ref A: D21489FED390403AB5150DB97C5AF913 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:45:53Z' status: 200 OK code: 200 - duration: 379.950335ms - - id: 90 + duration: 223.444062ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -6126,7 +5013,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-lfa372e"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","parameters":{},"variables":{},"resources":[],"outputs":{}}},"tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-l9ec8e0"}}' form: {} headers: Accept: @@ -6141,7 +5028,7 @@ interactions: - application/json User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lfa372e-1731021426?api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l9ec8e0-1737152443?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -6151,10 +5038,10 @@ interactions: trailer: {} content_length: 574 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lfa372e-1731021426","name":"azdtest-lfa372e-1731021426","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-lfa372e"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2024-11-07T23:45:37.1420047Z","duration":"PT0.0003969S","correlationId":"5d1fa53f-e09c-4bd5-a415-f3526e01ca3e","providers":[],"dependencies":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l9ec8e0-1737152443","name":"azdtest-l9ec8e0-1737152443","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-l9ec8e0"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-17T22:45:56.7192846Z","duration":"PT0.0007132S","correlationId":"443f0938-407e-4b36-b644-938b7e4591cf","providers":[],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lfa372e-1731021426/operationStatuses/08584705837510822498?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l9ec8e0-1737152443/operationStatuses/08584644529312256606?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: @@ -6162,7 +5049,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:45:37 GMT + - Fri, 17 Jan 2025 22:45:57 GMT Expires: - "-1" Pragma: @@ -6174,23 +5061,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5d1fa53f-e09c-4bd5-a415-f3526e01ca3e + - 443f0938-407e-4b36-b644-938b7e4591cf X-Ms-Deployment-Engine-Version: - - 1.158.0 + - 1.173.0 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 5d1fa53f-e09c-4bd5-a415-f3526e01ca3e + - 443f0938-407e-4b36-b644-938b7e4591cf X-Ms-Routing-Request-Id: - - WESTUS2:20241107T234537Z:5d1fa53f-e09c-4bd5-a415-f3526e01ca3e + - WESTUS2:20250117T224557Z:443f0938-407e-4b36-b644-938b7e4591cf X-Msedge-Ref: - - 'Ref A: 17AABE999E6C451F982C8D352B65B784 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:45:33Z' + - 'Ref A: 54A2864C4E094A27AD5E80020A2F7FB4 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:45:53Z' status: 200 OK code: 200 - duration: 3.729509383s - - id: 91 + duration: 3.631763982s + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -6210,7 +5097,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lfa372e-1731021426/operationStatuses/08584705837510822498?api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l9ec8e0-1737152443/operationStatuses/08584644529312256606?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -6229,7 +5116,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:46:07 GMT + - Fri, 17 Jan 2025 22:46:27 GMT Expires: - "-1" Pragma: @@ -6241,21 +5128,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - a3ea23ff-3947-46dc-aa5d-79578a84e3c8 + - d2cf6857-26ed-4505-8cac-b5a6954f318a X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - a3ea23ff-3947-46dc-aa5d-79578a84e3c8 + - d2cf6857-26ed-4505-8cac-b5a6954f318a X-Ms-Routing-Request-Id: - - WESTUS2:20241107T234608Z:a3ea23ff-3947-46dc-aa5d-79578a84e3c8 + - WESTUS2:20250117T224627Z:d2cf6857-26ed-4505-8cac-b5a6954f318a X-Msedge-Ref: - - 'Ref A: E29F0232975742AB898E2BBB1EC2137D Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:46:07Z' + - 'Ref A: 801422A007A848F79C18B89E8FE377BA Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:46:27Z' status: 200 OK code: 200 - duration: 196.810274ms - - id: 92 + duration: 218.517688ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -6275,7 +5162,7 @@ interactions: - SANITIZED User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lfa372e-1731021426?api-version=2021-04-01 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l9ec8e0-1737152443?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -6285,7 +5172,7 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lfa372e-1731021426","name":"azdtest-lfa372e-1731021426","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-lfa372e"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2024-11-07T23:45:37.8748087Z","duration":"PT0.7332009S","correlationId":"5d1fa53f-e09c-4bd5-a415-f3526e01ca3e","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l9ec8e0-1737152443","name":"azdtest-l9ec8e0-1737152443","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-deploy-reason":"down","azd-env-name":"azdtest-l9ec8e0"},"properties":{"templateHash":"14737569621737367585","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-17T22:46:00.1936671Z","duration":"PT3.4750957S","correlationId":"443f0938-407e-4b36-b644-938b7e4591cf","providers":[],"dependencies":[],"outputs":{},"outputResources":[]}}' headers: Cache-Control: - no-cache @@ -6294,181 +5181,33 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 07 Nov 2024 23:46:07 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - d830d087-5804-421f-a8a9-f68138fc9cc9 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - d830d087-5804-421f-a8a9-f68138fc9cc9 - X-Ms-Routing-Request-Id: - - WESTUS2:20241107T234608Z:d830d087-5804-421f-a8a9-f68138fc9cc9 - X-Msedge-Ref: - - 'Ref A: 7AA404D2200349F7AAEDFAD2F6000D76 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:46:08Z' - status: 200 OK - code: 200 - duration: 181.062372ms - - id: 93 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - Content-Length: - - "0" - User-Agent: - - azsdk-go-armkeyvault/v1.0.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.KeyVault/locations/eastus2/deletedVaults/kvf2edecb5gj2m4tcideyiu/purge?api-version=2021-10-01 - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Cache-Control: - - no-cache - Content-Length: - - "0" - Date: - - Thu, 07 Nov 2024 23:46:08 GMT - Expires: - - "-1" - Location: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzODY2NjE5OTY5NDI0NTUyM3w0NDVGRkNDODIzMDU0MzRBQTRFOUY2QjZDNUYxMUQyMQ?api-version=2021-10-01&t=638666205828768552&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=h_czGqApyiaQDXGq5aN834LDjsK4ojLV2qQpuxpF07l_E5TTDfzpEQ1lDaVM_fxirdQJ56O5Lb5969dzbK_Cur2_ylpZkMN_8eMa3RB6ouTa00DDlzshslQNeTMiazZBGpFO5JDv1zCXR8xnkQEdSQGbeu7ADzRW_ryYM0mF9TzEz2fOrWuxnYtvETA396JBB_9Vn8kWuLFbrfUT8sQncragzLBHo4u-i5NUcUWEguum2SVtqMGm8r_vFDo7R0m2UQXAyFuMMKD6Q86iA2a7n-Tzjo-iuZ9Uw9lSIFCba8VjT16Qwl8Iyt2Vix5mByM5mK1brWcFEatdwsHDela-Qw&h=AVwPLmbhGz_eQmB4_5WuILwkQeLxNV9uu9tVdfQCXFw - Pragma: - - no-cache - Retry-After: - - "0" - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Aspnet-Version: - - 4.0.30319 - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Client-Request-Id: - - 92dd9639-ae86-4909-a4c8-27396a675b0d - X-Ms-Correlation-Request-Id: - - 3bbf2cf9-a6d5-4b17-b1a3-13b3458024c0 - X-Ms-Keyvault-Service-Version: - - 1.5.1361.0 - X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - - "11999" - X-Ms-Ratelimit-Remaining-Subscription-Writes: - - "799" - X-Ms-Request-Id: - - ad994725-9007-4929-99d7-60cc4a555383 - X-Ms-Routing-Request-Id: - - WESTUS2:20241107T234608Z:3bbf2cf9-a6d5-4b17-b1a3-13b3458024c0 - X-Msedge-Ref: - - 'Ref A: 42CA06D43B1D4D9C805A121D3AC624AA Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:46:08Z' - status: 202 Accepted - code: 202 - duration: 420.476682ms - - id: 94 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armkeyvault/v1.0.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.KeyVault/locations/eastus2/operationResults/VVR8MDYzODY2NjE5OTY5NDI0NTUyM3w0NDVGRkNDODIzMDU0MzRBQTRFOUY2QjZDNUYxMUQyMQ?api-version=2021-10-01&t=638666205828768552&c=MIIHpTCCBo2gAwIBAgITOgM6dTLGpzYZpvPtgQAEAzp1MjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSU5GUkEgQ0EgMDEwHhcNMjQwNjI2MDEzMjIxWhcNMjUwNjIxMDEzMjIxWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAPPPKY5bDN03KptFFhiyLIyn86BlrXYFIZWYXA-hY7_WbLyWN0IxcLIUBW_I-9u-YsXOHk9WPMlUYHIFPgHW7A3FsSGfl9dd6YGapKoSSw0NkTpNXM58R54BBgLp7AhiWzK15D9T-XELNSU4Wq9sEeA5T24kazcgS2MUkzELH0I9dwu7g0dwJIuIJkoJjEzg1b1Q3Ie5HKHHNbjottJn7Q5LBS-9QtQyruuwaNTgSJpCoi4PBKVIOTBYL_Nv1wecmKmfWcT0mnhQE9zjhJTbcoN9hKSvAMqsDHtxWUFZosiw3JKIY0zb59CrVGSuOhfN3qaarwN9EAlXLqc4ZyKpsTkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFggvX2K4Py0SACAWQCAQowggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CWTJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSU5GUkElMjBDQSUyMDAxKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQlkyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMElORlJBJTIwQ0ElMjAwMSg0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JZMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3J0MB0GA1UdDgQWBBRk_38CqdKjPVylWUR4uuqhbFGeHTAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJTkZSQSUyMENBJTIwMDEoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwEwDAYKKwYBBAGCN3sEATAfBgNVHSMEGDAWgBTl2Ztn_PjsurvwwKidileIud8-YzAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFsx7FtYAzSo98T5ydNFa0ukjPZ6XCQc9zo7ldqy235P_zJAUkaNgCU4EGOzbZJDoMa8mAfhyukL_0GfPeApUaY2e44ZOzoYAkeEuDiwcs-9zoQ1fCyXhn0pCumGFXRilX9KjAPaYTzDvQMEllTy_ZViwTahuKaGtFVamZguBPdaeYC_0oybtTVNQCs8hGnffhNZOMASB-5pFs35MNxsDWTVIQksDee419jqpsbWLkh6rnanILO1O_ihwb-WpvRQByQ5NGpG1-z0MQ6nRpr9wWxUi-DsrVsD38NTMIPc2uei4Ivf6qnGRvOOj0fmsciWuTTEXMaD-5a81mGlzhZc09Q&s=h_czGqApyiaQDXGq5aN834LDjsK4ojLV2qQpuxpF07l_E5TTDfzpEQ1lDaVM_fxirdQJ56O5Lb5969dzbK_Cur2_ylpZkMN_8eMa3RB6ouTa00DDlzshslQNeTMiazZBGpFO5JDv1zCXR8xnkQEdSQGbeu7ADzRW_ryYM0mF9TzEz2fOrWuxnYtvETA396JBB_9Vn8kWuLFbrfUT8sQncragzLBHo4u-i5NUcUWEguum2SVtqMGm8r_vFDo7R0m2UQXAyFuMMKD6Q86iA2a7n-Tzjo-iuZ9Uw9lSIFCba8VjT16Qwl8Iyt2Vix5mByM5mK1brWcFEatdwsHDela-Qw&h=AVwPLmbhGz_eQmB4_5WuILwkQeLxNV9uu9tVdfQCXFw - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 107 - uncompressed: false - body: '{"createdDateTime":"2024-11-07 23:46:08Z","lastActionDateTime":"2024-11-07 23:56:22Z","status":"Succeeded"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "107" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 07 Nov 2024 23:56:27 GMT + - Fri, 17 Jan 2025 22:46:27 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - max-age=31536000; includeSubDomains - X-Aspnet-Version: - - 4.0.30319 X-Cache: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Ms-Client-Request-Id: - - 2043f005-b656-4457-97d3-f496d18c1f84 X-Ms-Correlation-Request-Id: - - b88625ce-ce9f-4eec-a958-7ef6c4180223 - X-Ms-Keyvault-Service-Version: - - 1.5.1361.0 + - 1ad5647e-bae2-470c-86ab-94ae64bd3dcc X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 5521402b-23da-4c02-ab81-e66ab49f44ff + - 1ad5647e-bae2-470c-86ab-94ae64bd3dcc X-Ms-Routing-Request-Id: - - WESTUS2:20241107T235628Z:b88625ce-ce9f-4eec-a958-7ef6c4180223 + - WESTUS2:20250117T224627Z:1ad5647e-bae2-470c-86ab-94ae64bd3dcc X-Msedge-Ref: - - 'Ref A: 0A16422C39FB45CB8357798EDB81D904 Ref B: CO6AA3150217031 Ref C: 2024-11-07T23:56:27Z' + - 'Ref A: 93E331A83FFA40259A8CC99C68E2B4E3 Ref B: CO6AA3150219039 Ref C: 2025-01-17T22:46:27Z' status: 200 OK code: 200 - duration: 151.099656ms + duration: 201.028997ms --- -env_name: azdtest-lfa372e +env_name: azdtest-l9ec8e0 subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 -time: "1731021426" +time: "1737152443" From c303c85ad08bd49797b99375b7e3e3ef639d5fbe Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Mon, 20 Jan 2025 22:58:34 +0000 Subject: [PATCH 13/22] add subId as part of akvs --- cli/azd/cmd/env.go | 4 ++-- cli/azd/pkg/ext/hooks_runner.go | 2 +- .../infra/provisioning/bicep/bicep_provider.go | 2 +- cli/azd/pkg/keyvault/keyvault.go | 16 ++++++++-------- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/cli/azd/cmd/env.go b/cli/azd/cmd/env.go index 5ad712a6f3c..45f0879c3cb 100644 --- a/cli/azd/cmd/env.go +++ b/cli/azd/cmd/env.go @@ -384,8 +384,8 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er kvSecretName = secretsInKv[secretSelectionIndex] } - // akvs -> Azure Key Vault Secret (akvs:///) - envValue := keyvault.NewAkvs(kvAccount.Name, kvSecretName) + // akvs -> Azure Key Vault Secret (akvs:////) + envValue := keyvault.NewAkvs(subId, kvAccount.Name, kvSecretName) e.env.DotenvSet(secretName, envValue) if err := e.envManager.Save(ctx, e.env); err != nil { return nil, fmt.Errorf("saving environment: %w", err) diff --git a/cli/azd/pkg/ext/hooks_runner.go b/cli/azd/pkg/ext/hooks_runner.go index 13c6cf49f1a..632db9d2bc9 100644 --- a/cli/azd/pkg/ext/hooks_runner.go +++ b/cli/azd/pkg/ext/hooks_runner.go @@ -146,7 +146,7 @@ func (h *HooksRunner) execHook(ctx context.Context, hookConfig *HookConfig, opti setValue := value if valueFromEnv, exists := h.env.LookupEnv(value); exists { if keyvault.IsAkvs(valueFromEnv) { - secretValue, err := keyvaultService.SecretFromAkvs(ctx, h.env.GetSubscriptionId(), valueFromEnv) + secretValue, err := keyvaultService.SecretFromAkvs(ctx, valueFromEnv) if err != nil { return err } diff --git a/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go b/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go index 25a2d63bea3..ff12b86a01b 100644 --- a/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go +++ b/cli/azd/pkg/infra/provisioning/bicep/bicep_provider.go @@ -1838,7 +1838,7 @@ func (p *BicepProvider) ensureParameters( // For secure parameters using a string value, azd checks if the string is an Azure Key Vault Secret // and if yes, it fetches the secret value from the Key Vault. if keyvault.IsAkvs(stringValue) { - paramValue, err = p.keyvaultService.SecretFromAkvs(ctx, p.env.GetSubscriptionId(), stringValue) + paramValue, err = p.keyvaultService.SecretFromAkvs(ctx, stringValue) if err != nil { return nil, err } diff --git a/cli/azd/pkg/keyvault/keyvault.go b/cli/azd/pkg/keyvault/keyvault.go index defd59f4efa..0ff80377986 100644 --- a/cli/azd/pkg/keyvault/keyvault.go +++ b/cli/azd/pkg/keyvault/keyvault.go @@ -71,7 +71,7 @@ type KeyVaultService interface { secretName string, secretValue string, ) error - SecretFromAkvs(ctx context.Context, subscriptionId, akvs string) (string, error) + SecretFromAkvs(ctx context.Context, akvs string) (string, error) } type keyVaultService struct { @@ -147,7 +147,7 @@ func (kvs *keyVaultService) GetKeyVaultSecret( ) (*Secret, error) { client, err := kvs.createSecretsDataClient(ctx, subscriptionId, vaultName) if err != nil { - return nil, nil + return nil, err } response, err := client.GetSecret(ctx, secretName, "", nil) @@ -342,25 +342,25 @@ func IsAkvs(id string) bool { return strings.HasPrefix(id, vaultSchemaAkvs) } -func NewAkvs(vaultId, secretName string) string { - return vaultSchemaAkvs + vaultId + "/" + secretName +func NewAkvs(subId, vaultId, secretName string) string { + return vaultSchemaAkvs + subId + "/" + vaultId + "/" + secretName } -func (kvs *keyVaultService) SecretFromAkvs(ctx context.Context, subscriptionId, akvs string) (string, error) { +func (kvs *keyVaultService) SecretFromAkvs(ctx context.Context, akvs string) (string, error) { if !IsAkvs(akvs) { return "", fmt.Errorf("invalid Azure Key Vault Secret reference: %s", akvs) } noSchema := strings.TrimPrefix(akvs, vaultSchemaAkvs) vaultParts := strings.Split(noSchema, "/") - if len(vaultParts) != 2 { + if len(vaultParts) != 3 { return "", fmt.Errorf( "invalid Azure Key Vault Secret reference: %s. Expected format: %s", akvs, - vaultSchemaAkvs+"/", + vaultSchemaAkvs+"//", ) } - vaultName, secretName := vaultParts[0], vaultParts[1] + subscriptionId, vaultName, secretName := vaultParts[0], vaultParts[1], vaultParts[2] // subscriptionId is required by the Key Vault service to figure the TenantId for the // tokenCredential. The assumption here is that the user has access to the Tenant // used to deploy the app and to whatever Tenant the Key Vault is in. And the tokenCredential From 6c3dfc0b8cec54f960454e321f0b56c5b13113ff Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Wed, 22 Jan 2025 20:05:05 +0000 Subject: [PATCH 14/22] validate secret name on client side --- cli/azd/cmd/env.go | 21 +++++++++++++++------ cli/azd/pkg/keyvault/keyvault.go | 6 ++++++ 2 files changed, 21 insertions(+), 6 deletions(-) diff --git a/cli/azd/cmd/env.go b/cli/azd/cmd/env.go index 45f0879c3cb..387540ef9fd 100644 --- a/cli/azd/cmd/env.go +++ b/cli/azd/cmd/env.go @@ -8,6 +8,7 @@ import ( "errors" "fmt" "io" + "strings" "github.com/azure/azure-dev/cli/azd/cmd/actions" "github.com/azure/azure-dev/cli/azd/internal" @@ -343,13 +344,21 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er var kvSecretName string if willCreateNewSecret { - kvSecretName, err = e.console.Prompt(ctx, input.ConsoleOptions{ - Message: "Enter a name for the Key Vault secret", - DefaultValue: secretName + "-kv-secret", - }) - if err != nil { - return nil, fmt.Errorf("prompting for Key Vault secret name: %w", err) + for { + kvSecretName, err = e.console.Prompt(ctx, input.ConsoleOptions{ + Message: "Enter a name for the Key Vault secret", + DefaultValue: strings.ReplaceAll(secretName, "_", "-") + "-kv-secret", + }) + if err != nil { + return nil, fmt.Errorf("prompting for Key Vault secret name: %w", err) + } + if keyvault.IsValidSecretName(kvSecretName) { + break + } + e.console.Message(ctx, "Invalid Key Vault secret name. The name must be between 1 and 127 characters"+ + " long and can contain only alphanumeric characters and dashes.") } + kvSecretValue, err := e.console.Prompt(ctx, input.ConsoleOptions{ Message: "Enter the value for the Key Vault secret", IsPassword: true, diff --git a/cli/azd/pkg/keyvault/keyvault.go b/cli/azd/pkg/keyvault/keyvault.go index 0ff80377986..2b11e1d72d7 100644 --- a/cli/azd/pkg/keyvault/keyvault.go +++ b/cli/azd/pkg/keyvault/keyvault.go @@ -342,6 +342,12 @@ func IsAkvs(id string) bool { return strings.HasPrefix(id, vaultSchemaAkvs) } +func IsValidSecretName(kvSecretName string) bool { + return len(kvSecretName) >= 1 && len(kvSecretName) <= 127 && strings.IndexFunc(kvSecretName, func(r rune) bool { + return !((r >= 'a' && r <= 'z') || (r >= 'A' && r <= 'Z') || (r >= '0' && r <= '9') || r == '-') + }) == -1 +} + func NewAkvs(subId, vaultId, secretName string) string { return vaultSchemaAkvs + subId + "/" + vaultId + "/" + secretName } From f7bac7043a5de15e3dc0c14d0c8f6c6113eda9f8 Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Thu, 23 Jan 2025 06:23:12 +0000 Subject: [PATCH 15/22] Adding functional tests and recording --- cli/azd/cmd/env.go | 22 +- cli/azd/test/functional/aspire_test.go | 25 + cli/azd/test/functional/cli_test.go | 144 + .../Test_CLI_EnvironmentSecrets.yaml | 3759 +++++++++++++++++ .../samples/environment-secrets/azure.yaml | 17 + .../environment-secrets/infra/main.bicep | 27 + .../infra/main.parameters.json | 15 + cli/azd/test/recording/recording.go | 6 + 8 files changed, 4011 insertions(+), 4 deletions(-) create mode 100644 cli/azd/test/functional/testdata/recordings/Test_CLI_EnvironmentSecrets.yaml create mode 100644 cli/azd/test/functional/testdata/samples/environment-secrets/azure.yaml create mode 100644 cli/azd/test/functional/testdata/samples/environment-secrets/infra/main.bicep create mode 100644 cli/azd/test/functional/testdata/samples/environment-secrets/infra/main.parameters.json diff --git a/cli/azd/cmd/env.go b/cli/azd/cmd/env.go index 387540ef9fd..574ad98f473 100644 --- a/cli/azd/cmd/env.go +++ b/cli/azd/cmd/env.go @@ -9,6 +9,7 @@ import ( "fmt" "io" "strings" + "time" "github.com/azure/azure-dev/cli/azd/cmd/actions" "github.com/azure/azure-dev/cli/azd/internal" @@ -26,6 +27,7 @@ import ( "github.com/azure/azure-dev/cli/azd/pkg/output/ux" "github.com/azure/azure-dev/cli/azd/pkg/project" "github.com/azure/azure-dev/cli/azd/pkg/prompt" + "github.com/sethvargo/go-retry" "github.com/spf13/cobra" "github.com/spf13/pflag" ) @@ -330,14 +332,15 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er // RBAC role assignment e.console.ShowSpinner(ctx, "Adding Administrator Role", input.Step) principalId, err := azureutil.GetCurrentPrincipalId(ctx, e.userProfileService, tenantId) - e.console.StopSpinner(ctx, "", input.Step) if err != nil { return nil, fmt.Errorf("getting current principal ID: %w", err) } - err = e.entraIdService.CreateRbac(ctx, subId, kvAccount.Id, keyvault.RoleIdKeyVaultAdministrator, principalId) + err = e.entraIdService.CreateRbac( + ctx, subId, kvAccount.Id, keyvault.RoleIdKeyVaultAdministrator, principalId) if err != nil { - return nil, fmt.Errorf("creating Key Vault RBAC: %w", err) + return nil, fmt.Errorf("adding Administrator Role: %w", err) } + e.console.StopSpinner(ctx, "", input.Step) break } } @@ -366,7 +369,18 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er if err != nil { return nil, fmt.Errorf("prompting for secret value: %w", err) } - err = e.kvService.CreateKeyVaultSecret(ctx, subId, kvAccount.Name, kvSecretName, kvSecretValue) + // Creating a secret in a new account too soon can fail due to rbac role assignment not being ready + err = retry.Do( + ctx, + retry.WithMaxRetries(3, retry.NewConstant(5*time.Second)), + func(ctx context.Context) error { + err = e.kvService.CreateKeyVaultSecret(ctx, subId, kvAccount.Name, kvSecretName, kvSecretValue) + if err != nil { + return retry.RetryableError(fmt.Errorf("creating Key Vault secret: %w", err)) + } + return nil + }, + ) if err != nil { return nil, fmt.Errorf("setting Key Vault secret: %w", err) } diff --git a/cli/azd/test/functional/aspire_test.go b/cli/azd/test/functional/aspire_test.go index b48436cf03c..19624bf8293 100644 --- a/cli/azd/test/functional/aspire_test.go +++ b/cli/azd/test/functional/aspire_test.go @@ -285,6 +285,31 @@ func cleanupDeployments(ctx context.Context, t *testing.T, azCLI *azdcli.CLI, se } } +func cleanupRg(ctx context.Context, t *testing.T, azCLI *azdcli.CLI, session *recording.Session, rg string) { + if session != nil && session.Playback { + return + } + + client, err := armresources.NewResourceGroupsClient(cfg.SubscriptionID, azdcli.NewTestCredential(azCLI), nil) + if err != nil { + return + } + + _, err = client.Get(ctx, rg, nil) + if err != nil { + t.Logf("cleanupRg: failed to get rg: %v", err) + return + } + + // no need to wait for the delete operation to complete + _, err = client.BeginDelete(ctx, rg, nil) + if err != nil { + t.Logf("cleanupRg: failed to delete rg: %v", err) + return + } + +} + // Snapshots a file located at targetPath. Saves the snapshot to snapshotRoot/rel, where rel is relative to targetRoot. func snapshotFile( sn *cupaloy.Config, diff --git a/cli/azd/test/functional/cli_test.go b/cli/azd/test/functional/cli_test.go index a82aae6b89d..8eeb50b24d1 100644 --- a/cli/azd/test/functional/cli_test.go +++ b/cli/azd/test/functional/cli_test.go @@ -19,6 +19,7 @@ import ( osexec "os/exec" "path" "path/filepath" + "regexp" "runtime" "slices" "strings" @@ -360,6 +361,122 @@ func Test_CLI_ProvisionState(t *testing.T) { require.NoError(t, err) } +func Test_CLI_EnvironmentSecrets(t *testing.T) { + t.Parallel() + + ctx, cancel := newTestContext(t) + defer cancel() + + dir := tempDirWithDiagnostics(t) + t.Logf("DIR: %s", dir) + + session := recording.Start(t) + + envName := randomOrStoredEnvName(session) + t.Logf("AZURE_ENV_NAME: %s", envName) + + cli := azdcli.NewCLI(t, azdcli.WithSession(session)) + cli.WorkingDirectory = dir + cli.Env = append(cli.Env, os.Environ()...) + cli.Env = append(cli.Env, "AZURE_LOCATION=eastus2") + + err := copySample(dir, "environment-secrets") + require.NoError(t, err, "failed expanding sample") + + _, err = cli.RunCommandWithStdIn(ctx, stdinForInit(envName), "init") + require.NoError(t, err) + + // create the first secret reference + rg := envName + "-rg" + kva := envName + "-kva" + kvs := envName + "-kvs" + kvsv := "THIS IS THE SECRET VALUE" + + defer cleanupRg(ctx, t, cli, session, rg) // deletes the rg with the Key Vault + defer cleanupDeployments(ctx, t, cli, session, envName) // deletes the deployment objects + defer cleanupRg(ctx, t, cli, session, "rg-"+envName) // delete the rg created by the deployment + + envSetSecretOut, err := cli.RunCommandWithStdIn(ctx, stdinForCreateKvAccount( + rg, + kva, + kvs, + kvsv, + ), "env", "set-secret", "SEC_REF") + require.NoError(t, err) + require.Contains(t, envSetSecretOut.Stdout, "https://aka.ms/azd-env-set-secret") + + // Test usage of secret by running provision + // The sample environment-secrets is designed to output the secret from bicep outputs + // and also from a hook simple script + provisionOutput, err := cli.RunCommandWithStdIn(ctx, stdinForProvision(), "provision") + require.NoError(t, err) + require.Contains(t, provisionOutput.Stdout, kvsv) + + // check output + envValue, err := cli.RunCommand(ctx, "env", "get-value", "BICEP_OUTPUT") + require.NoError(t, err) + require.Contains(t, envValue.Stdout, kvsv) + + // Now test creating kv secret on existing kv account + kvs2 := envName + "-kvs2" + kvsv2 := "THIS IS THE NEW SECRET VALUE" + envSetSecretOut, err = cli.RunCommandWithStdIn(ctx, stdinForExistingKvAccount( + kva, + kvs2, + kvsv2, + ), "env", "set-secret", "SEC_REF") + // This error is expected because we don't know the number that azd adds before the key vault account name + require.Error(t, err, "selecting Key Vault account") + + // Extract the key vault account name from the error message + extractor := regexp.MustCompile(`(\s?\d+\. )` + kva + ",?").FindStringSubmatch(envSetSecretOut.Stdout) + if len(extractor) != 2 { + t.Fatalf("could not extract the key vault account name from the error message: %s", envSetSecretOut.Stdout) + return + } + + kvaWithNumber := fmt.Sprintf("%s%s", extractor[1], kva) + + // try again with the correct key vault account name + envSetSecretOut, err = cli.RunCommandWithStdIn(ctx, stdinForExistingKvAccount( + kvaWithNumber, + kvs2, + kvsv2, + ), "env", "set-secret", "SEC_REF") + require.NoError(t, err) + require.Contains(t, envSetSecretOut.Stdout, "https://aka.ms/azd-env-set-secret") + + // Test usage of secret by running provision + // Should not use provision cache because we are using a new secret name that updates the parameter and + // void the cache + provisionOutput, err = cli.RunCommandWithStdIn(ctx, stdinForProvision(), "provision") + require.NoError(t, err) + require.Contains(t, provisionOutput.Stdout, kvsv2) + + // check output + envValue, err = cli.RunCommand(ctx, "env", "get-value", "BICEP_OUTPUT") + require.NoError(t, err) + require.Contains(t, envValue.Stdout, kvsv2) + + // Finally, test selecting existing kv secret by setting the initial secret again + envSetSecretOut, err = cli.RunCommandWithStdIn( + ctx, stdinForExistingKvSecret(kvaWithNumber), "env", "set-secret", "SEC_REF") + require.NoError(t, err) + require.Contains(t, envSetSecretOut.Stdout, "https://aka.ms/azd-env-set-secret") + + // Test usage of secret by running provision + // Should not use provision cache because we are using a new secret name that updates the parameter and + // void the cache + provisionOutput, err = cli.RunCommandWithStdIn(ctx, stdinForProvision(), "provision") + require.NoError(t, err) + require.Contains(t, provisionOutput.Stdout, kvsv) + + // check output + envValue, err = cli.RunCommand(ctx, "env", "get-value", "BICEP_OUTPUT") + require.NoError(t, err) + require.Contains(t, envValue.Stdout, kvsv) +} + func Test_CLI_ProvisionStateWithDown(t *testing.T) { t.Parallel() @@ -779,6 +896,33 @@ func stdinForProvision() string { "\n" // "choose location" (we're choosing the default) } +func stdinForCreateKvAccount(rg, kva, kvs, kvsv string) string { + return "\n" + // "Create new Key Vault Secret + "\n" + // "choose subscription" (we're choosing the default) + "\n" + // "Create new Key Vault Account + "\n" + // "choose location" (we're choosing the default) + "Create a new resource group\n" + // "Create new resource group" + rg + "\n" + // "resource group name" + kva + "\n" + // "key vault account name" + kvs + "\n" + // "key vault secret name" + kvsv + "\n" // "key vault secret value" +} + +func stdinForExistingKvAccount(kva, kvs, kvsv string) string { + return "\n" + // "Create new Key Vault Secret + "\n" + // "choose subscription" (we're choosing the default) + kva + "\n" + // "Use existing Key Vault Account + kvs + "\n" + // "key vault secret name" + kvsv + "\n" // "key vault secret value" +} + +func stdinForExistingKvSecret(kva string) string { + return "Select an existing Key Vault secret\n" + // "Create new Key Vault Secret + "\n" + // "choose subscription" (we're choosing the default) + kva + "\n" + // "Use existing Key Vault Account + "\n" // "first key vault secret name in the list" +} + func getTestEnvPath(dir string, envName string) string { return filepath.Join(dir, azdcontext.EnvironmentDirectoryName, envName, ".env") } diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvironmentSecrets.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvironmentSecrets.yaml new file mode 100644 index 00000000000..d41355df2a6 --- /dev/null +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvironmentSecrets.yaml @@ -0,0 +1,3759 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 580f5461e559c6bdc2594f1ab046e050 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 4977 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/scaddie/providers/Microsoft.KeyVault/vaults/kvScottTestApp1","name":"kvScottTestApp1","type":"Microsoft.KeyVault/vaults","location":"northcentralus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-test-gha/providers/Microsoft.KeyVault/vaults/kv-d7e2iil2mbz6g","name":"kv-d7e2iil2mbz6g","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"hemarina-test-gha"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazqu-testing-azd-secret-env/providers/Microsoft.KeyVault/vaults/keyvault-account","name":"keyvault-account","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazqu-testing-azd-secret-env/providers/Microsoft.KeyVault/vaults/vivazqu-secrets","name":"vivazqu-secrets","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-1233/providers/Microsoft.KeyVault/vaults/kv-ksqzfpgkd7ppm","name":"kv-ksqzfpgkd7ppm","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"1233"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jcnew/providers/Microsoft.KeyVault/vaults/kv-nfsgjllnkgov6","name":"kv-nfsgjllnkgov6","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"jcnew"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazque-flow-test/providers/Microsoft.KeyVault/vaults/vivazque-ka-a","name":"vivazque-ka-a","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-joncardekeyvault/providers/Microsoft.KeyVault/vaults/tb0f745ebb7bfae58","name":"tb0f745ebb7bfae58","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "4977" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:47:13 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 580f5461e559c6bdc2594f1ab046e050 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - e3befa0d-abc2-4aa7-8bfd-4e3e8a2962f9 + X-Ms-Routing-Request-Id: + - WESTUS:20250123T054713Z:e3befa0d-abc2-4aa7-8bfd-4e3e8a2962f9 + X-Msedge-Ref: + - 'Ref A: 259A1EC48E1C4CBDADE615C6A28EC2B0 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:47:12Z' + status: 200 OK + code: 200 + duration: 419.386477ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 580f5461e559c6bdc2594f1ab046e050 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 35781 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "35781" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:47:16 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 580f5461e559c6bdc2594f1ab046e050 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 8ca06cfa-3948-4659-844d-302a61719c1c + X-Ms-Routing-Request-Id: + - WESTUS:20250123T054716Z:8ca06cfa-3948-4659-844d-302a61719c1c + X-Msedge-Ref: + - 'Ref A: D3D5E630A27444859749BEA7704636F7 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:47:13Z' + status: 200 OK + code: 200 + duration: 3.090072088s + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 580f5461e559c6bdc2594f1ab046e050 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 54955 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dataproduct48702-HostedResources-32E47270","name":"dataproduct48702-HostedResources-32E47270","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg73273/providers/Microsoft.NetworkAnalytics/dataProducts/dataproduct48702","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dataproduct72706-HostedResources-6BE50C22","name":"dataproduct72706-HostedResources-6BE50C22","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg39104/providers/Microsoft.NetworkAnalytics/dataProducts/dataproduct72706","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product89683-HostedResources-6EFC6FE2","name":"product89683-HostedResources-6EFC6FE2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg98573/providers/Microsoft.NetworkAnalytics/dataProducts/product89683","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product56057-HostedResources-081D2AD1","name":"product56057-HostedResources-081D2AD1","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg31226/providers/Microsoft.NetworkAnalytics/dataProducts/product56057","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product52308-HostedResources-5D5C105C","name":"product52308-HostedResources-5D5C105C","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg22243/providers/Microsoft.NetworkAnalytics/dataProducts/product52308","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product09392-HostedResources-6F71BABB","name":"product09392-HostedResources-6F71BABB","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg70288/providers/Microsoft.NetworkAnalytics/dataProducts/product09392","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product4lh001-HostedResources-20AFF06E","name":"product4lh001-HostedResources-20AFF06E","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest02/providers/Microsoft.NetworkAnalytics/dataProducts/product4lh001","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiaofeitest-HostedResources-38FAB8A0","name":"xiaofeitest-HostedResources-38FAB8A0","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-xiaofei/providers/Microsoft.NetworkAnalytics/dataProducts/xiaofeitest","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/scaddie","name":"scaddie","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"DeleteAfter":"01/24/2025 04:12:21"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/openai-shared","name":"openai-shared","type":"Microsoft.Resources/resourceGroups","location":"swedencentral","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/wenjiefu","name":"wenjiefu","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DeleteAfter":"07/12/2024 17:23:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chriss","name":"chriss","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-centralus-eus2","name":"ResourceMoverRG-eastus-centralus-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/09/2023 21:30:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mdwgecko","name":"rg-mdwgecko","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/09/2023 21:31:22"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NI_nc-platEng-Dev_eastus2","name":"NI_nc-platEng-Dev_eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/PlatEng-Dev/providers/Microsoft.DevCenter/networkconnections/nc-platEng-Dev","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-contoso-i34nhebbt3526","name":"rg-contoso-i34nhebbt3526","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"devcenter4lh003","DeleteAfter":"11/08/2023 08:09:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdux","name":"azdux","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-devcenter","name":"rg-wabrez-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-devcenter","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-westus2-eus2","name":"ResourceMoverRG-eastus-westus2-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"05/11/2024 19:17:16"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/AzSecPackAutoConfigRG","name":"AzSecPackAutoConfigRG","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-raychen-test-wus","name":"rg-raychen-test-wus","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter ":"2024-12-30T12:30:00.000Z","owner":"raychen","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg40370","name":"rg40370","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/09/2023 21:33:47"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg16812","name":"rg16812","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/09/2023 21:33:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/msolomon-testing","name":"msolomon-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/senyangrg","name":"senyangrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"03/08/2024 00:08:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azsdk-pm-ai","name":"azsdk-pm-ai","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"TypeSpecChannelBot-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/bterlson-cadl","name":"bterlson-cadl","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration","name":"rg-shrejaappconfiguration","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-12-24T05:11:17.9627286Z","Owners":"shreja","ServiceDirectory":"appconfiguration"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc88170fa","name":"rgloc88170fa","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc0890584","name":"rgloc0890584","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llawrence-rg","name":"llawrence-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"11/23/2024 00:21:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazservicebus","name":"rg-riparkazservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"messaging/azservicebus","Owners":"ripark","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkaznamespaces","name":"rg-riparkaznamespaces","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"messaging/eventgrid/aznamespaces","Owners":"ripark","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-joncardekeyvault","name":"rg-joncardekeyvault","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"keyvault","DeleteAfter":"2025-01-24T20:56:53.4931878+00:00","Owners":"joncarde"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-swathipstorage","name":"rg-swathipstorage","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"storage","Owners":"swathip","DeleteAfter":"2025-01-26T22:17:50.4296899Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-177","name":"go-sdk-test-177","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/23/2025 08:15:38"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceeventhub","name":"rg-llawrenceeventhub","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-27T17:50:31.2824952Z","ServiceDirectory":"eventhub","Owners":"llawrence"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chloweazbatch","name":"rg-chloweazbatch","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"chlowe","DeleteAfter":"2025-01-27T19:26:00.9112619Z","ServiceDirectory":"batch/azbatch"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceservicebus","name":"rg-llawrenceservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-27T22:51:53.3805625Z","ServiceDirectory":"servicebus","Owners":"llawrence"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbllawrence-rg","name":"sbllawrence-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/24/2025 00:16:57"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-swathipservicebus","name":"rg-swathipservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"servicebus","Owners":"swathip","DeleteAfter":"2025-01-27T23:21:49.2553458Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kashifkhanservicebus","name":"rg-kashifkhanservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-27T23:34:41.3453953Z","Owners":"kashifkhan","ServiceDirectory":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-499","name":"go-sdk-test-499","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/24/2025 04:12:25"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-943","name":"go-sdk-test-943","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/24/2025 04:12:26"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-743","name":"go-sdk-test-743","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/24/2025 04:12:27"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-421","name":"go-sdk-test-421","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/24/2025 04:12:27"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg","name":"rg-stress-secrets-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg","name":"rg-stress-cluster-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-nodes-s1-stress-pg-pg","name":"rg-nodes-s1-stress-pg-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-stress-cluster-pg/providers/Microsoft.ContainerService/managedClusters/stress-pg","tags":{"DoNotDelete":"","aks-managed-cluster-name":"stress-pg","aks-managed-cluster-rg":"rg-stress-cluster-pg","environment":"pg","owners":"bebroder, albertcheng"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdev-dev","name":"rg-azdev-dev","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","product":"azdev","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan-search","name":"xiangyan-search","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan-apiview-gpt","name":"xiangyan-apiview-gpt","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-sdk-dotnet","name":"jsquire-sdk-dotnet","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"purpose":"local development","owner":"Jesse Squire","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/billwert-acrrg","name":"billwert-acrrg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"2025-02-05T19:08:55.2162878Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/antisch-cmtest","name":"antisch-cmtest","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vigera-group","name":"vigera-group","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"01/26/2025 20:15:08"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/yumeng-js-test","name":"yumeng-js-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"01/28/2025 00:14:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119","name":"sameal-rg-0119","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"01/30/2025 00:14:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-queuew-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-queuew-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildId":"","ServiceDirectory":"/azure/","BuildNumber":"","DeleteAfter":"2025-01-28T17:38:02.4681872Z","BuildJob":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-aqueuepullw-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-aqueuepullw-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildNumber":"","Owners":"","DeleteAfter":"2025-01-28T17:38:02.5996863Z","ServiceDirectory":"/azure/","BuildJob":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-batchw-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-batchw-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","ServiceDirectory":"/azure/","BuildNumber":"","DeleteAfter":"2025-01-28T17:38:02.6956727Z","Owners":"","BuildId":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-batch-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-batch-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-28T17:38:02.9712344Z","BuildId":"","BuildJob":"","BuildReason":"","Owners":"","BuildNumber":"","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-aqueuepull-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-aqueuepull-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildReason":"","BuildId":"","Owners":"","ServiceDirectory":"/azure/","DeleteAfter":"2025-01-28T17:38:03.0072814Z","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-aqueue-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-aqueue-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildNumber":"","DeleteAfter":"2025-01-28T17:38:03.2165486Z","ServiceDirectory":"/azure/","Owners":"","BuildReason":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-aqueuew-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-aqueuew-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildReason":"","Owners":"","DeleteAfter":"2025-01-28T17:38:03.3367512Z","BuildId":"","ServiceDirectory":"/azure/","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-queuepull-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-queuepull-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","ServiceDirectory":"/azure/","Owners":"","BuildNumber":"","BuildJob":"","DeleteAfter":"2025-01-28T17:38:02.8532792Z","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-queue-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-queue-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","DeleteAfter":"2025-01-28T17:38:04.0233723Z","BuildJob":"","BuildId":"","BuildReason":"","Owners":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-abatchw-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-abatchw-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildId":"","DeleteAfter":"2025-01-28T17:38:04.3146253Z","BuildNumber":"","BuildReason":"","ServiceDirectory":"/azure/","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-queuepullw-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-queuepullw-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","ServiceDirectory":"/azure/","DeleteAfter":"2025-01-28T17:38:04.1130514Z","Owners":"","BuildJob":"","BuildNumber":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-abatch-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-abatch-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildJob":"","ServiceDirectory":"/azure/","BuildId":"","BuildNumber":"","DeleteAfter":"2025-01-28T17:38:04.8326422Z","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-aqueuepull-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-aqueuepull-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildId":"","DeleteAfter":"2025-01-28T17:41:53.1767113Z","ServiceDirectory":"/azure/","BuildReason":"","BuildNumber":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-batch-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-batch-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-28T17:41:53.4538813Z","BuildId":"","BuildReason":"","ServiceDirectory":"/azure/","BuildJob":"","Owners":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-abatchw-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-abatchw-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","BuildJob":"","BuildReason":"","BuildNumber":"","BuildId":"","DeleteAfter":"2025-01-28T17:41:54.1737440Z","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-queue-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-queue-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","Owners":"","BuildReason":"","BuildNumber":"","DeleteAfter":"2025-01-28T17:41:53.8610621Z","BuildId":"","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-aqueue-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-aqueue-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","Owners":"","ServiceDirectory":"/azure/","BuildId":"","BuildReason":"","BuildNumber":"","DeleteAfter":"2025-01-28T17:41:54.3781896Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-queuew-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-queuew-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","DeleteAfter":"2025-01-28T17:41:53.9485761Z","BuildReason":"","ServiceDirectory":"/azure/","BuildJob":"","Owners":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-batchw-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-batchw-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","BuildReason":"","DeleteAfter":"2025-01-28T17:41:54.3337634Z","BuildJob":"","BuildNumber":"","BuildId":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-queuepull-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-queuepull-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildReason":"","Owners":"","BuildNumber":"","BuildJob":"","DeleteAfter":"2025-01-28T17:41:54.3198437Z","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-aqueuepullw-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-aqueuepullw-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildId":"","Owners":"","BuildReason":"","DeleteAfter":"2025-01-28T17:41:54.5404984Z","BuildNumber":"","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-abatch-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-abatch-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-28T17:41:54.5649789Z","BuildJob":"","BuildNumber":"","BuildReason":"","Owners":"","ServiceDirectory":"/azure/","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-aqueuew-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-aqueuew-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildReason":"","ServiceDirectory":"/azure/","Owners":"","BuildNumber":"","BuildId":"","DeleteAfter":"2025-01-28T17:41:54.8005523Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-queuepullw-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-queuepullw-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildReason":"","Owners":"","ServiceDirectory":"/azure/","BuildJob":"","BuildNumber":"","DeleteAfter":"2025-01-28T17:41:55.3671020Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv","name":"rg-weilim-env-kv","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"01/31/2025 20:13:39"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehcontrolfinal-dockerfile-bplistasync-stress-py-eh-1","name":"ehcontrolfinal-dockerfile-bplistasync-stress-py-eh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-28T22:14:09.7884339Z","BuildNumber":"","Owners":"","ServiceDirectory":"/azure/","BuildJob":"","BuildReason":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehcontrolfinal-dockerfile-batchasync-stress-py-eh-1","name":"ehcontrolfinal-dockerfile-batchasync-stress-py-eh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","Owners":"","DeleteAfter":"2025-01-28T22:14:10.2939569Z","BuildNumber":"","ServiceDirectory":"/azure/","BuildId":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehcontrolfinal-dockerfile-bpasync-stress-py-eh-1","name":"ehcontrolfinal-dockerfile-bpasync-stress-py-eh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","DeleteAfter":"2025-01-28T22:14:10.3617820Z","BuildJob":"","BuildReason":"","BuildNumber":"","ServiceDirectory":"/azure/","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehcontrolfinal-dockerfile-syncwebsockets-stress-py-eh-1","name":"ehcontrolfinal-dockerfile-syncwebsockets-stress-py-eh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","BuildJob":"","DeleteAfter":"2025-01-28T22:14:10.8151677Z","BuildId":"","Owners":"","BuildNumber":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehcontrolfinal-dockerfile-syncbatchweb-stress-py-eh-1","name":"ehcontrolfinal-dockerfile-syncbatchweb-stress-py-eh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","DeleteAfter":"2025-01-28T22:14:10.9736859Z","BuildId":"","Owners":"","BuildNumber":"","BuildReason":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehcontrolfinal-dockerfile-eventsync-stress-py-eh-1","name":"ehcontrolfinal-dockerfile-eventsync-stress-py-eh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-28T22:14:10.9704653Z","Owners":"","BuildId":"","ServiceDirectory":"/azure/","BuildJob":"","BuildNumber":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehcontrolfinal-dockerfile-bpsync-stress-py-eh-1","name":"ehcontrolfinal-dockerfile-bpsync-stress-py-eh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildNumber":"","BuildReason":"","DeleteAfter":"2025-01-28T22:14:13.0352382Z","Owners":"","BuildJob":"","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehcontrolfinal-dockerfile-batchsync-stress-py-eh-1","name":"ehcontrolfinal-dockerfile-batchsync-stress-py-eh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildJob":"","DeleteAfter":"2025-01-28T22:14:13.5203407Z","Owners":"","BuildReason":"","BuildId":"","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehcontrolfinal-dockerfile-eventasync-stress-py-eh-1","name":"ehcontrolfinal-dockerfile-eventasync-stress-py-eh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","DeleteAfter":"2025-01-28T22:14:13.5841090Z","BuildJob":"","BuildNumber":"","ServiceDirectory":"/azure/","BuildReason":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehcontrolfinal-dockerfile-bplistsync-stress-py-eh-1","name":"ehcontrolfinal-dockerfile-bplistsync-stress-py-eh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildId":"","Owners":"","DeleteAfter":"2025-01-28T22:14:14.0396774Z","BuildNumber":"","ServiceDirectory":"/azure/","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehcontrolfinal-dockerfile-asyncwebsockets-stress-py-eh-1","name":"ehcontrolfinal-dockerfile-asyncwebsockets-stress-py-eh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","ServiceDirectory":"/azure/","BuildId":"","BuildNumber":"","Owners":"","DeleteAfter":"2025-01-28T22:14:14.1001016Z","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg","name":"mcpatino-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"02/01/2025 00:15:13"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-eventsync-stress-py-eh-6","name":"ehretryfinal-dockerfile-eventsync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildNumber":"","BuildJob":"","ServiceDirectory":"/azure/","BuildReason":"","Owners":"","DeleteAfter":"2025-01-29T16:52:54.7020623Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-batchasync-stress-py-eh-6","name":"ehretryfinal-dockerfile-batchasync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","DeleteAfter":"2025-01-29T16:52:57.7945300Z","BuildNumber":"","Owners":"","BuildReason":"","BuildJob":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-eventasync-stress-py-eh-6","name":"ehretryfinal-dockerfile-eventasync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","Owners":"","BuildReason":"","BuildId":"","ServiceDirectory":"/azure/","DeleteAfter":"2025-01-29T16:52:58.3090280Z","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-batchsync-stress-py-eh-6","name":"ehretryfinal-dockerfile-batchsync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","ServiceDirectory":"/azure/","BuildNumber":"","BuildReason":"","BuildJob":"","BuildId":"","DeleteAfter":"2025-01-29T16:53:22.9439063Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-syncwebsockets-stress-py-eh-6","name":"ehretryfinal-dockerfile-syncwebsockets-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","ServiceDirectory":"/azure/","BuildNumber":"","Owners":"","DeleteAfter":"2025-01-29T16:53:24.6222830Z","BuildJob":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-bplistasync-stress-py-eh-6","name":"ehretryfinal-dockerfile-bplistasync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildJob":"","BuildId":"","ServiceDirectory":"/azure/","DeleteAfter":"2025-01-29T16:53:24.7796237Z","BuildReason":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-asyncwebsockets-stress-py-eh-6","name":"ehretryfinal-dockerfile-asyncwebsockets-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildJob":"","DeleteAfter":"2025-01-29T16:53:24.8559209Z","BuildReason":"","BuildNumber":"","ServiceDirectory":"/azure/","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-bplistsync-stress-py-eh-6","name":"ehretryfinal-dockerfile-bplistsync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildNumber":"","BuildId":"","BuildReason":"","BuildJob":"","ServiceDirectory":"/azure/","DeleteAfter":"2025-01-29T16:53:25.1453362Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-bpsync-stress-py-eh-6","name":"ehretryfinal-dockerfile-bpsync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildId":"","Owners":"","DeleteAfter":"2025-01-29T16:53:25.1594201Z","BuildReason":"","BuildJob":"","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-asyncbatchweb-stress-py-eh-6","name":"ehretryfinal-dockerfile-asyncbatchweb-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-29T16:53:25.2301546Z","ServiceDirectory":"/azure/","BuildJob":"","BuildNumber":"","Owners":"","BuildId":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-bpasync-stress-py-eh-6","name":"ehretryfinal-dockerfile-bpasync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","BuildReason":"","BuildId":"","DeleteAfter":"2025-01-29T16:53:25.4545126Z","Owners":"","BuildJob":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-syncbatchweb-stress-py-eh-6","name":"ehretryfinal-dockerfile-syncbatchweb-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-29T16:53:25.4782304Z","BuildJob":"","ServiceDirectory":"/azure/","BuildReason":"","BuildId":"","BuildNumber":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/AIStudio","name":"AIStudio","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"01/24/2025 00:16:57"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-cntso-network.virtualHub-nvhwaf-rg","name":"dep-cntso-network.virtualHub-nvhwaf-rg","type":"Microsoft.Resources/resourceGroups","location":"eastasia","tags":{"DeleteAfter":"07/09/2024 07:20:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec-service-adoption-mariog","name":"typespec-service-adoption-mariog","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":""," Owners":"marioguerra"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejasearchservice","name":"rg-shrejasearchservice","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"ServiceDirectory":"search","DeleteAfter":"2025-10-23T04:00:14.3477795Z","Owners":"shreja","DoNotDelete":"AI Chat Protocol Demo"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-o12r-max","name":"rg-o12r-max","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter","name":"rg-wb-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wb-devcenter","DeleteAfter":"09/05/2024 23:19:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-1121","name":"rg-jinlong-1121","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/09/2024 12:06:59"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-test-tc-final","name":"rg-test-tc-final","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/10/2024 11:13:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-bicep-registry","name":"rg-wabrez-bicep-registry","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-fenglongdev","name":"rg-fenglongdev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"fenglongdev","DeleteAfter":"12/12/2024 04:18:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xutong-monthly-release-test","name":"xutong-monthly-release-test","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b","name":"cm0ddf918b146443b","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-test-gha","name":"rg-hemarina-test-gha","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"hemarina-test-gha","DeleteAfter":"01/25/2025 20:15:16"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazqu-testing-azd-secret-env","name":"vivazqu-testing-azd-secret-env","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"01/24/2025 04:12:22"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-matell-dev","name":"rg-matell-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"matell-dev","DeleteAfter":"01/31/2025 04:14:13"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets","name":"rg-vivazqu-with-secrets","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vivazqu-with-secrets","secured":"akvs://faa080af-c1d8-40ad-9cce-e1a450ca5b57/vivazqu-secrets/SEC-REF-kv-secret","DeleteAfter":"02/02/2025 04:12:34"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-1233","name":"rg-1233","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"1233","DeleteAfter":"01/23/2025 12:17:16"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jcnew","name":"rg-jcnew","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"jcnew","DeleteAfter":"01/24/2025 00:16:58"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-xiaohua987","name":"rg-xiaohua987","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"xiaohua987","DeleteAfter":"01/24/2025 04:12:28"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhyu","name":"rg-mhyu","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"mhyu","DeleteAfter":"01/24/2025 04:12:29"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazque-flow-test","name":"vivazque-flow-test","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"01/24/2025 04:12:30"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l024333","name":"rg-azdtest-l024333","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l024333","DeleteAfter":"01/24/2025 04:12:31"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l30da49","name":"rg-azdtest-l30da49","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l30da49","DeleteAfter":"01/24/2025 04:12:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l055386","name":"rg-azdtest-l055386","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l055386"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lbf7104","name":"rg-azdtest-lbf7104","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lbf7104"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l89f88f","name":"rg-azdtest-l89f88f","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l89f88f"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lbda41f","name":"rg-azdtest-lbda41f","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lbda41f"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l55cf60","name":"rg-azdtest-l55cf60","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l55cf60"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l527d06","name":"rg-azdtest-l527d06","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l527d06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l691396","name":"rg-azdtest-l691396","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l691396"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l39c573","name":"rg-azdtest-l39c573","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l39c573"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l6e4b5e","name":"rg-azdtest-l6e4b5e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l6e4b5e"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kz34-max","name":"rg-kz34-max","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jemew-rg","name":"jemew-rg","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DeleteAfter":"01/25/2025 00:18:54"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/databricks-rg-jemew-databricks-lasiziqqjqk5m","name":"databricks-rg-jemew-databricks-lasiziqqjqk5m","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jemew-rg/providers/Microsoft.Databricks/workspaces/jemew-databricks","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec-ide-telemetry","name":"typespec-ide-telemetry","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-xsh-virtualmachineimages.imagetemplates-vmiitmax-rg","name":"dep-xsh-virtualmachineimages.imagetemplates-vmiitmax-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/11/2024 19:25:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jinlongAZD","name":"jinlongAZD","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"07/12/2025 17:23:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-fenglongfeng","name":"rg-fenglongfeng","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"fenglongfeng","DeleteAfter":"01/01/2025 08:14:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo","name":"mario-typespec-e2e-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{" Owner":"marioguerra","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/joheredi-test","name":"joheredi-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/24/2025 04:12:23"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/tjprescott","name":"tjprescott","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/31/2025 20:13:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/anuchan-wm","name":"anuchan-wm","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:15"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen","name":"jeffreychen","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:17"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ahkha-rg","name":"ahkha-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:19"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/test-tc-sdhjk123","name":"test-tc-sdhjk123","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/23/2025 08:15:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan","name":"xiangyan","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/krpratic-rg","name":"krpratic-rg","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "54955" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:47:16 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 580f5461e559c6bdc2594f1ab046e050 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 864eb67f-bc24-4255-bc70-8e047045d248 + X-Ms-Routing-Request-Id: + - WESTUS:20250123T054716Z:864eb67f-bc24-4255-bc70-8e047045d248 + X-Msedge-Ref: + - 'Ref A: A26D0B11D680473D9214F6A329E119B7 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:47:16Z' + status: 200 OK + code: 200 + duration: 211.093941ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 32 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","tags":{}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "32" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 580f5461e559c6bdc2594f1ab046e050 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/azdtest-lbaeec6-rg?api-version=2021-04-01 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 244 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg","name":"azdtest-lbaeec6-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "244" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:47:20 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 580f5461e559c6bdc2594f1ab046e050 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 50625742-9dc0-401b-8b8d-62ba1350e292 + X-Ms-Routing-Request-Id: + - WESTUS2:20250123T054720Z:50625742-9dc0-401b-8b8d-62ba1350e292 + X-Msedge-Ref: + - 'Ref A: C35636C02A1C4DAE890A6A023BFA7AE1 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:47:16Z' + status: 201 Created + code: 201 + duration: 3.840292602s + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 157 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"enableRbacAuthorization":true,"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "157" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 580f5461e559c6bdc2594f1ab046e050 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva?api-version=2023-07-01 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 836 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva","name":"azdtest-lbaeec6-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-23T05:47:22.299Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-23T05:47:22.299Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-lbaeec6-kva.vault.azure.net","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "836" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:47:23 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Aspnet-Version: + - 4.0.30319 + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Client-Request-Id: + - 9e03b27f-5301-445e-aa1a-369bcca4e398 + X-Ms-Correlation-Request-Id: + - 580f5461e559c6bdc2594f1ab046e050 + X-Ms-Keyvault-Service-Version: + - 1.5.1455.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 4fc23fb5-81b9-43ee-851d-d6241ba7dd59 + X-Ms-Routing-Request-Id: + - WESTUS2:20250123T054724Z:f0c0fe94-4f68-4118-8e78-f94e19a43819 + X-Msedge-Ref: + - 'Ref A: 591B6C0572B04BD19C00E17245656B79 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:47:20Z' + status: 200 OK + code: 200 + duration: 3.475471315s + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 580f5461e559c6bdc2594f1ab046e050 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva?api-version=2023-07-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 837 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva","name":"azdtest-lbaeec6-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-23T05:47:22.299Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-23T05:47:22.299Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-lbaeec6-kva.vault.azure.net/","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "837" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:47:24 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Aspnet-Version: + - 4.0.30319 + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Client-Request-Id: + - 776cddbe-3967-479b-ab3a-ca3dd154b947 + X-Ms-Correlation-Request-Id: + - 580f5461e559c6bdc2594f1ab046e050 + X-Ms-Keyvault-Service-Version: + - 1.5.1455.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - a7e77882-6e60-4075-b82a-044ee8689620 + X-Ms-Routing-Request-Id: + - WESTUS2:20250123T054724Z:5d5384e0-983f-40cf-8097-03afb4463c4e + X-Msedge-Ref: + - 'Ref A: 08A5992E4E4E440BAB821319717848BF Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:47:24Z' + status: 200 OK + code: 200 + duration: 204.463831ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 580f5461e559c6bdc2594f1ab046e050 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva?api-version=2023-07-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 832 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva","name":"azdtest-lbaeec6-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-23T05:47:22.299Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-23T05:47:22.299Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-lbaeec6-kva.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "832" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:47:54 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Aspnet-Version: + - 4.0.30319 + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Client-Request-Id: + - 1f50feab-16a8-4f60-a456-d548b1245c00 + X-Ms-Correlation-Request-Id: + - 580f5461e559c6bdc2594f1ab046e050 + X-Ms-Keyvault-Service-Version: + - 1.5.1455.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - ba375d00-bc9a-44e2-a7a6-db35208aae12 + X-Ms-Routing-Request-Id: + - WESTUS2:20250123T054754Z:c5d773d8-62c8-425a-902b-101b576f8334 + X-Msedge-Ref: + - 'Ref A: 3FF2130F90844F27AFF1F38A254F5265 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:47:54Z' + status: 200 OK + code: 200 + duration: 191.505911ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 229 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"properties":{"principalId":"62661785-adcf-4117-b9d0-22b3aa2b4ebf","roleDefinitionId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "229" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armauthorization.RoleAssignmentsClient/v2.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 580f5461e559c6bdc2594f1ab046e050 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva/providers/Microsoft.Authorization/roleAssignments/e3a866f2-e948-46fc-aaad-b1202531c504?api-version=2022-04-01 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 991 + uncompressed: false + body: '{"properties":{"roleDefinitionId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483","principalId":"62661785-adcf-4117-b9d0-22b3aa2b4ebf","principalType":"User","scope":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva","condition":null,"conditionVersion":null,"createdOn":"2025-01-23T05:47:55.9765927Z","updatedOn":"2025-01-23T05:47:56.2065979Z","createdBy":null,"updatedBy":"62661785-adcf-4117-b9d0-22b3aa2b4ebf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva/providers/Microsoft.Authorization/roleAssignments/e3a866f2-e948-46fc-aaad-b1202531c504","type":"Microsoft.Authorization/roleAssignments","name":"e3a866f2-e948-46fc-aaad-b1202531c504"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "991" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:01 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 580f5461e559c6bdc2594f1ab046e050 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 86284f23-6e85-4b22-91ab-33eb83865dcc + X-Ms-Routing-Request-Id: + - WESTUS2:20250123T054801Z:a65e468a-3ded-468d-9baa-31ac188caaf3 + X-Msedge-Ref: + - 'Ref A: D7B1FF7CF864498EB8FBCD9F47D6E180 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:47:55Z' + status: 201 Created + code: 201 + duration: 6.507254856s + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "0" + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 580f5461e559c6bdc2594f1ab046e050 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs?api-version=7.4 + method: PUT + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 97 + uncompressed: false + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "97" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:01 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + Www-Authenticate: + - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - 7409ce4b-f5d7-47e5-bc3a-171894504af5 + status: 401 Unauthorized + code: 401 + duration: 371.055002ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 36 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: '{"value":"THIS IS THE SECRET VALUE"}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "36" + Content-Type: + - application/json + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 580f5461e559c6bdc2594f1ab046e050 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs?api-version=7.4 + method: PUT + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 281 + uncompressed: false + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs/5bc2758020f4459cb06ee40f112482ab","attributes":{"enabled":true,"created":1737611282,"updated":1737611282,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "281" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:01 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Rbac-Assignment-Id: + - e3a866f2e94846fcaaadb1202531c504 + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - a09ad22d-5086-4e87-8d80-506bc8f9d636 + status: 200 OK + code: 200 + duration: 236.181683ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - c0b8007888d52dadaf8aa483b29580c0 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 97 + uncompressed: false + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "97" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:02 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + Www-Authenticate: + - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - 8c54e806-4f35-4097-aabd-755271a46bdd + status: 401 Unauthorized + code: 401 + duration: 85.82064ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - c0b8007888d52dadaf8aa483b29580c0 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 281 + uncompressed: false + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs/5bc2758020f4459cb06ee40f112482ab","attributes":{"enabled":true,"created":1737611282,"updated":1737611282,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "281" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:02 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Rbac-Assignment-Id: + - e3a866f2e94846fcaaadb1202531c504 + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - 5895eaa0-9fb0-45b8-8b34-0a5d065b509b + status: 200 OK + code: 200 + duration: 108.721777ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - c0b8007888d52dadaf8aa483b29580c0 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 97 + uncompressed: false + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "97" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:05 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + Www-Authenticate: + - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - 4cf3ad61-a5da-410f-b59a-1f4797aac706 + status: 401 Unauthorized + code: 401 + duration: 86.630041ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - c0b8007888d52dadaf8aa483b29580c0 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 281 + uncompressed: false + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs/5bc2758020f4459cb06ee40f112482ab","attributes":{"enabled":true,"created":1737611282,"updated":1737611282,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "281" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:05 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Rbac-Assignment-Id: + - e3a866f2e94846fcaaadb1202531c504 + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - 3cc240fa-a5ea-4b8e-906e-d240e4b77849 + status: 200 OK + code: 200 + duration: 106.527073ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - c0b8007888d52dadaf8aa483b29580c0 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 35781 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "35781" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:08 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - c0b8007888d52dadaf8aa483b29580c0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 42e6aa45-4559-41d1-9443-2234d3544496 + X-Ms-Routing-Request-Id: + - WESTUS2:20250123T054808Z:42e6aa45-4559-41d1-9443-2234d3544496 + X-Msedge-Ref: + - 'Ref A: A3D6596D31994E1093632E709DDBFCD8 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:06Z' + status: 200 OK + code: 200 + duration: 2.71633801s + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - c0b8007888d52dadaf8aa483b29580c0 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 97 + uncompressed: false + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "97" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:08 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + Www-Authenticate: + - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - bf8bdc89-c0e8-4059-9501-a9d45b5bf521 + status: 401 Unauthorized + code: 401 + duration: 81.771133ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - c0b8007888d52dadaf8aa483b29580c0 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 281 + uncompressed: false + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs/5bc2758020f4459cb06ee40f112482ab","attributes":{"enabled":true,"created":1737611282,"updated":1737611282,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "281" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:08 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Rbac-Assignment-Id: + - e3a866f2e94846fcaaadb1202531c504 + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - ebdc64da-6441-49dc-a24b-e5252a1d4c03 + status: 200 OK + code: 200 + duration: 129.711111ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - c0b8007888d52dadaf8aa483b29580c0 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 112457 + uncompressed: false + body: '{"value":[]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "112457" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:10 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - c0b8007888d52dadaf8aa483b29580c0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 614f4a4e-19e8-4e1e-9c4b-94423b7aee71 + X-Ms-Routing-Request-Id: + - WESTUS2:20250123T054810Z:614f4a4e-19e8-4e1e-9c4b-94423b7aee71 + X-Msedge-Ref: + - 'Ref A: 729665C0ADF24E9FA10BACC6FCAC18D3 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:09Z' + status: 200 OK + code: 200 + duration: 998.610722ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1360 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-lbaeec6"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.32.4.45862","templateHash":"9208930884015842103"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-lbaeec6","azd-provision-param-hash":"ebaf128cc364af2bc37431679e4228b8dd9a7a028ce4664bf8805e305fbc7641"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "1360" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - c0b8007888d52dadaf8aa483b29580c0 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232?api-version=2021-04-01 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 893 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232","name":"azdtest-lbaeec6-1737611232","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lbaeec6","azd-provision-param-hash":"ebaf128cc364af2bc37431679e4228b8dd9a7a028ce4664bf8805e305fbc7641"},"properties":{"templateHash":"9208930884015842103","parameters":{"environmentName":{"type":"String","value":"azdtest-lbaeec6"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-23T05:48:13.2131819Z","duration":"PT0.0005581S","correlationId":"c0b8007888d52dadaf8aa483b29580c0","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' + headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232/operationStatuses/08584639955943790016?api-version=2021-04-01 + Cache-Control: + - no-cache + Content-Length: + - "893" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:13 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - c0b8007888d52dadaf8aa483b29580c0 + X-Ms-Deployment-Engine-Version: + - 1.224.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 3945206b-5bae-4d4a-af0a-3b59f38355be + X-Ms-Routing-Request-Id: + - WESTCENTRALUS:20250123T054813Z:3945206b-5bae-4d4a-af0a-3b59f38355be + X-Msedge-Ref: + - 'Ref A: D39418FAAE654D7B9594AC1E4852F45D Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:10Z' + status: 201 Created + code: 201 + duration: 3.464940329s + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - c0b8007888d52dadaf8aa483b29580c0 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232/operationStatuses/08584639955943790016?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 22 + uncompressed: false + body: '{"status":"Succeeded"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "22" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:44 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - c0b8007888d52dadaf8aa483b29580c0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 07511eff-b3cd-4f89-9092-62e7593c1dd3 + X-Ms-Routing-Request-Id: + - WESTCENTRALUS:20250123T054844Z:07511eff-b3cd-4f89-9092-62e7593c1dd3 + X-Msedge-Ref: + - 'Ref A: AE7AE987DE4F48439E5356BD1A092976 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:44Z' + status: 200 OK + code: 200 + duration: 182.481797ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - c0b8007888d52dadaf8aa483b29580c0 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1100 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232","name":"azdtest-lbaeec6-1737611232","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lbaeec6","azd-provision-param-hash":"ebaf128cc364af2bc37431679e4228b8dd9a7a028ce4664bf8805e305fbc7641"},"properties":{"templateHash":"9208930884015842103","parameters":{"environmentName":{"type":"String","value":"azdtest-lbaeec6"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-23T05:48:18.922411Z","duration":"PT5.7097872S","correlationId":"c0b8007888d52dadaf8aa483b29580c0","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lbaeec6"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1100" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:44 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - c0b8007888d52dadaf8aa483b29580c0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - c0a5bd44-7613-48e3-bb47-8c0d47649cd5 + X-Ms-Routing-Request-Id: + - WESTCENTRALUS:20250123T054844Z:c0a5bd44-7613-48e3-bb47-8c0d47649cd5 + X-Msedge-Ref: + - 'Ref A: 752380EF27934B20851352CDA4E2DA8B Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:44Z' + status: 200 OK + code: 200 + duration: 175.199986ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - c0b8007888d52dadaf8aa483b29580c0 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lbaeec6%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 288 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lbaeec6","name":"rg-azdtest-lbaeec6","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lbaeec6"},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "288" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:44 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - c0b8007888d52dadaf8aa483b29580c0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - aca265d2-536f-4875-88e8-0b96223a4c0d + X-Ms-Routing-Request-Id: + - WESTCENTRALUS:20250123T054844Z:aca265d2-536f-4875-88e8-0b96223a4c0d + X-Msedge-Ref: + - 'Ref A: 13BFA9FD84554EACBF11B8ADD70F5B99 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:44Z' + status: 200 OK + code: 200 + duration: 93.024952ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 94f1e145ea1c962067205e6b4fb8787d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 5223 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/scaddie/providers/Microsoft.KeyVault/vaults/kvScottTestApp1","name":"kvScottTestApp1","type":"Microsoft.KeyVault/vaults","location":"northcentralus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-test-gha/providers/Microsoft.KeyVault/vaults/kv-d7e2iil2mbz6g","name":"kv-d7e2iil2mbz6g","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"hemarina-test-gha"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazqu-testing-azd-secret-env/providers/Microsoft.KeyVault/vaults/keyvault-account","name":"keyvault-account","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazqu-testing-azd-secret-env/providers/Microsoft.KeyVault/vaults/vivazqu-secrets","name":"vivazqu-secrets","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-1233/providers/Microsoft.KeyVault/vaults/kv-ksqzfpgkd7ppm","name":"kv-ksqzfpgkd7ppm","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"1233"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jcnew/providers/Microsoft.KeyVault/vaults/kv-nfsgjllnkgov6","name":"kv-nfsgjllnkgov6","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"jcnew"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazque-flow-test/providers/Microsoft.KeyVault/vaults/vivazque-ka-a","name":"vivazque-ka-a","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva","name":"azdtest-lbaeec6-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-joncardekeyvault/providers/Microsoft.KeyVault/vaults/tb0f745ebb7bfae58","name":"tb0f745ebb7bfae58","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "5223" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:45 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 94f1e145ea1c962067205e6b4fb8787d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - cbed2e68-b2e9-410c-9115-c792d2fa8334 + X-Ms-Routing-Request-Id: + - WESTUS2:20250123T054845Z:cbed2e68-b2e9-410c-9115-c792d2fa8334 + X-Msedge-Ref: + - 'Ref A: 1D50706589124E35BFE1B2CEE64582A9 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:44Z' + status: 200 OK + code: 200 + duration: 458.602948ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - ae62a8746123d63ecf1a0cb4653c0653 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 5223 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/scaddie/providers/Microsoft.KeyVault/vaults/kvScottTestApp1","name":"kvScottTestApp1","type":"Microsoft.KeyVault/vaults","location":"northcentralus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-test-gha/providers/Microsoft.KeyVault/vaults/kv-d7e2iil2mbz6g","name":"kv-d7e2iil2mbz6g","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"hemarina-test-gha"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazqu-testing-azd-secret-env/providers/Microsoft.KeyVault/vaults/keyvault-account","name":"keyvault-account","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazqu-testing-azd-secret-env/providers/Microsoft.KeyVault/vaults/vivazqu-secrets","name":"vivazqu-secrets","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-1233/providers/Microsoft.KeyVault/vaults/kv-ksqzfpgkd7ppm","name":"kv-ksqzfpgkd7ppm","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"1233"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jcnew/providers/Microsoft.KeyVault/vaults/kv-nfsgjllnkgov6","name":"kv-nfsgjllnkgov6","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"jcnew"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazque-flow-test/providers/Microsoft.KeyVault/vaults/vivazque-ka-a","name":"vivazque-ka-a","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva","name":"azdtest-lbaeec6-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-joncardekeyvault/providers/Microsoft.KeyVault/vaults/tb0f745ebb7bfae58","name":"tb0f745ebb7bfae58","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "5223" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:45 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - ae62a8746123d63ecf1a0cb4653c0653 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 1cd3c57b-3710-4e2f-aa30-1b1a39a6333d + X-Ms-Routing-Request-Id: + - WESTUS2:20250123T054845Z:1cd3c57b-3710-4e2f-aa30-1b1a39a6333d + X-Msedge-Ref: + - 'Ref A: 717E81612D3E4C47A6C28C8FA9A8E252 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:45Z' + status: 200 OK + code: 200 + duration: 224.422666ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "0" + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - ae62a8746123d63ecf1a0cb4653c0653 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs2?api-version=7.4 + method: PUT + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 97 + uncompressed: false + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "97" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:45 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + Www-Authenticate: + - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - 381542fb-f5cb-478e-b1a4-307423bc5587 + status: 401 Unauthorized + code: 401 + duration: 85.487139ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 40 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: '{"value":"THIS IS THE NEW SECRET VALUE"}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "40" + Content-Type: + - application/json + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - ae62a8746123d63ecf1a0cb4653c0653 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs2?api-version=7.4 + method: PUT + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 286 + uncompressed: false + body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs2/5225ea37d62f48aeace6a13c5586dc11","attributes":{"enabled":true,"created":1737611325,"updated":1737611325,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "286" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:45 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Rbac-Assignment-Id: + - e3a866f2e94846fcaaadb1202531c504 + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - ab343029-4de8-4256-9704-7b64d6d81ff0 + status: 200 OK + code: 200 + duration: 140.089229ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 8b96baa2d6a2c5803ffe85020a961354 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs2/?api-version=7.4 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 97 + uncompressed: false + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "97" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:46 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + Www-Authenticate: + - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - 724ee6d2-f3f4-48e8-86c1-6d615ad76c9e + status: 401 Unauthorized + code: 401 + duration: 82.645735ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 8b96baa2d6a2c5803ffe85020a961354 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs2/?api-version=7.4 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 286 + uncompressed: false + body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs2/5225ea37d62f48aeace6a13c5586dc11","attributes":{"enabled":true,"created":1737611325,"updated":1737611325,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "286" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:46 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Rbac-Assignment-Id: + - e3a866f2e94846fcaaadb1202531c504 + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - 3e505afd-9c6a-4967-a74a-ff75b936e8f1 + status: 200 OK + code: 200 + duration: 118.601893ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 8b96baa2d6a2c5803ffe85020a961354 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs2/?api-version=7.4 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 97 + uncompressed: false + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "97" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:49 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + Www-Authenticate: + - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - 2a0e14fa-d49a-4687-9006-085fae18006c + status: 401 Unauthorized + code: 401 + duration: 80.859231ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 8b96baa2d6a2c5803ffe85020a961354 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs2/?api-version=7.4 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 286 + uncompressed: false + body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs2/5225ea37d62f48aeace6a13c5586dc11","attributes":{"enabled":true,"created":1737611325,"updated":1737611325,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "286" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:49 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Rbac-Assignment-Id: + - e3a866f2e94846fcaaadb1202531c504 + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - a4fc9f54-8cf4-4c06-a669-0bc3e9adb60e + status: 200 OK + code: 200 + duration: 101.855867ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 8b96baa2d6a2c5803ffe85020a961354 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 35781 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "35781" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:51 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 8b96baa2d6a2c5803ffe85020a961354 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - b2fd769c-85a3-41ec-9e0b-efc933a0c449 + X-Ms-Routing-Request-Id: + - WESTCENTRALUS:20250123T054851Z:b2fd769c-85a3-41ec-9e0b-efc933a0c449 + X-Msedge-Ref: + - 'Ref A: BD0B74FDA94D4957A7957365D78F3A1E Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:49Z' + status: 200 OK + code: 200 + duration: 1.951083082s + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 8b96baa2d6a2c5803ffe85020a961354 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs2/?api-version=7.4 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 97 + uncompressed: false + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "97" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:51 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + Www-Authenticate: + - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - d33fcdfe-ee2b-45df-8016-2ab70b55b4cb + status: 401 Unauthorized + code: 401 + duration: 81.302833ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 8b96baa2d6a2c5803ffe85020a961354 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs2/?api-version=7.4 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 286 + uncompressed: false + body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs2/5225ea37d62f48aeace6a13c5586dc11","attributes":{"enabled":true,"created":1737611325,"updated":1737611325,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "286" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:51 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Rbac-Assignment-Id: + - e3a866f2e94846fcaaadb1202531c504 + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - 50945574-ac8c-4add-80b0-a04c8ceabf11 + status: 200 OK + code: 200 + duration: 107.583675ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 8b96baa2d6a2c5803ffe85020a961354 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 113558 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232","location":"eastus2","name":"azdtest-lbaeec6-1737611232","properties":{"correlationId":"c0b8007888d52dadaf8aa483b29580c0","dependencies":[],"duration":"PT5.7097872S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lbaeec6"}],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-lbaeec6"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"}]}],"provisioningState":"Succeeded","templateHash":"9208930884015842103","timestamp":"2025-01-23T05:48:18.922411Z"},"tags":{"azd-env-name":"azdtest-lbaeec6","azd-provision-param-hash":"ebaf128cc364af2bc37431679e4228b8dd9a7a028ce4664bf8805e305fbc7641"},"type":"Microsoft.Resources/deployments"}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "113558" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:52 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 8b96baa2d6a2c5803ffe85020a961354 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 7110516b-cde5-4ccd-ae7f-1739fd6faf8a + X-Ms-Routing-Request-Id: + - WESTUS2:20250123T054853Z:7110516b-cde5-4ccd-ae7f-1739fd6faf8a + X-Msedge-Ref: + - 'Ref A: 35CA4F31D9974CC18E030928A03B44EC Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:51Z' + status: 200 OK + code: 200 + duration: 1.332742673s + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1011 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.32.4.45862","templateHash":"9208930884015842103"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "1011" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 8b96baa2d6a2c5803ffe85020a961354 + url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1177 + uncompressed: false + body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"NAME OF THE THE ENVIRONMENT WHICH IS USED TO GENERATE A SHORT UNIQUE HASH USED IN ALL RESOURCES.\"}},\"LOCATION\":{\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"PRIMARY LOCATION FOR ALL RESOURCES\"}},\"SECRETPARAM\":{\"TYPE\":\"SECURESTRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\"},\"OUTPUTPARAM\":\"[FORMAT(''SECRETPARAM:{0}'', PARAMETERS(''SECRETPARAM''))]\"},\"RESOURCES\":[{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"}],\"OUTPUTS\":{\"BICEP_OUTPUT\":{\"TYPE\":\"STRING\",\"VALUE\":\"[VARIABLES(''OUTPUTPARAM'')]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.32.4.45862\",\"TEMPLATEHASH\":\"9208930884015842103\"}}}","templateHash":"9208930884015842103"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1177" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:53 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 8b96baa2d6a2c5803ffe85020a961354 + X-Ms-Ratelimit-Remaining-Tenant-Writes: + - "799" + X-Ms-Request-Id: + - 3562a35c-80c2-46ae-bc6e-b5b5bd941c67 + X-Ms-Routing-Request-Id: + - WESTUS:20250123T054853Z:3562a35c-80c2-46ae-bc6e-b5b5bd941c67 + X-Msedge-Ref: + - 'Ref A: 715D64BFC334463EA0E535C6BC963B81 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:53Z' + status: 200 OK + code: 200 + duration: 60.903599ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1364 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-lbaeec6"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE NEW SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.32.4.45862","templateHash":"9208930884015842103"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-lbaeec6","azd-provision-param-hash":"9c7f3d23069ecc62a79faf21c9ed021f357cf2ca9cf7c96c4207f8b311592316"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "1364" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 8b96baa2d6a2c5803ffe85020a961354 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232?api-version=2021-04-01 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 893 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232","name":"azdtest-lbaeec6-1737611232","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lbaeec6","azd-provision-param-hash":"9c7f3d23069ecc62a79faf21c9ed021f357cf2ca9cf7c96c4207f8b311592316"},"properties":{"templateHash":"9208930884015842103","parameters":{"environmentName":{"type":"String","value":"azdtest-lbaeec6"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-23T05:48:55.9211068Z","duration":"PT0.0005461S","correlationId":"8b96baa2d6a2c5803ffe85020a961354","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' + headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232/operationStatuses/08584639955515973334?api-version=2021-04-01 + Cache-Control: + - no-cache + Content-Length: + - "893" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:48:56 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 8b96baa2d6a2c5803ffe85020a961354 + X-Ms-Deployment-Engine-Version: + - 1.173.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - d543822e-d87c-4cc7-aa01-ac5965e10c34 + X-Ms-Routing-Request-Id: + - WESTUS:20250123T054856Z:d543822e-d87c-4cc7-aa01-ac5965e10c34 + X-Msedge-Ref: + - 'Ref A: 6D5F72EBFC7E4A628BEBE7AEBE4557BE Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:53Z' + status: 200 OK + code: 200 + duration: 3.115115182s + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 8b96baa2d6a2c5803ffe85020a961354 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232/operationStatuses/08584639955515973334?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 22 + uncompressed: false + body: '{"status":"Succeeded"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "22" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:49:26 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 8b96baa2d6a2c5803ffe85020a961354 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 79e2ee40-f79c-48cb-9ca0-1696cf096b36 + X-Ms-Routing-Request-Id: + - WESTUS:20250123T054927Z:79e2ee40-f79c-48cb-9ca0-1696cf096b36 + X-Msedge-Ref: + - 'Ref A: 96383C39920F4C77A92114967E5C2064 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:49:26Z' + status: 200 OK + code: 200 + duration: 222.315464ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 8b96baa2d6a2c5803ffe85020a961354 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1105 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232","name":"azdtest-lbaeec6-1737611232","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lbaeec6","azd-provision-param-hash":"9c7f3d23069ecc62a79faf21c9ed021f357cf2ca9cf7c96c4207f8b311592316"},"properties":{"templateHash":"9208930884015842103","parameters":{"environmentName":{"type":"String","value":"azdtest-lbaeec6"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-23T05:49:01.3969821Z","duration":"PT5.4764214S","correlationId":"8b96baa2d6a2c5803ffe85020a961354","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE NEW SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lbaeec6"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1105" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:49:27 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 8b96baa2d6a2c5803ffe85020a961354 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 68b4ecf6-96e2-4a0d-85c2-20d58aa09dec + X-Ms-Routing-Request-Id: + - WESTUS:20250123T054927Z:68b4ecf6-96e2-4a0d-85c2-20d58aa09dec + X-Msedge-Ref: + - 'Ref A: 71EB88609CCD4ECEB7BB66E0DDDD352C Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:49:27Z' + status: 200 OK + code: 200 + duration: 206.714138ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 8b96baa2d6a2c5803ffe85020a961354 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lbaeec6%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 288 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lbaeec6","name":"rg-azdtest-lbaeec6","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lbaeec6"},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "288" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:49:27 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 8b96baa2d6a2c5803ffe85020a961354 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - b9cc2296-8684-462e-9b6b-4d5cdbf61569 + X-Ms-Routing-Request-Id: + - WESTUS:20250123T054927Z:b9cc2296-8684-462e-9b6b-4d5cdbf61569 + X-Msedge-Ref: + - 'Ref A: E8F1C7BF093B49C7964E5C1467075E28 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:49:27Z' + status: 200 OK + code: 200 + duration: 83.882838ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 5b60508340911d8f24a06fef4fb95107 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 5223 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/scaddie/providers/Microsoft.KeyVault/vaults/kvScottTestApp1","name":"kvScottTestApp1","type":"Microsoft.KeyVault/vaults","location":"northcentralus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-test-gha/providers/Microsoft.KeyVault/vaults/kv-d7e2iil2mbz6g","name":"kv-d7e2iil2mbz6g","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"hemarina-test-gha"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazqu-testing-azd-secret-env/providers/Microsoft.KeyVault/vaults/keyvault-account","name":"keyvault-account","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazqu-testing-azd-secret-env/providers/Microsoft.KeyVault/vaults/vivazqu-secrets","name":"vivazqu-secrets","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-1233/providers/Microsoft.KeyVault/vaults/kv-ksqzfpgkd7ppm","name":"kv-ksqzfpgkd7ppm","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"1233"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jcnew/providers/Microsoft.KeyVault/vaults/kv-nfsgjllnkgov6","name":"kv-nfsgjllnkgov6","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"jcnew"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazque-flow-test/providers/Microsoft.KeyVault/vaults/vivazque-ka-a","name":"vivazque-ka-a","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva","name":"azdtest-lbaeec6-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-joncardekeyvault/providers/Microsoft.KeyVault/vaults/tb0f745ebb7bfae58","name":"tb0f745ebb7bfae58","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "5223" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:49:27 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 5b60508340911d8f24a06fef4fb95107 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - d79ab010-c006-4779-848b-ff56fbc8d810 + X-Ms-Routing-Request-Id: + - WESTUS2:20250123T054927Z:d79ab010-c006-4779-848b-ff56fbc8d810 + X-Msedge-Ref: + - 'Ref A: 82B145F3DCD948388E629AD16B7A6047 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:49:27Z' + status: 200 OK + code: 200 + duration: 243.206398ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 5b60508340911d8f24a06fef4fb95107 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets?api-version=7.4 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 97 + uncompressed: false + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "97" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:49:27 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + Www-Authenticate: + - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - 6bbea6dc-4574-4131-8a7c-179ef6e8a83f + status: 401 Unauthorized + code: 401 + duration: 80.654932ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 5b60508340911d8f24a06fef4fb95107 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets?api-version=7.4 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 456 + uncompressed: false + body: '{"value":[{"id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs","attributes":{"enabled":true,"created":1737611282,"updated":1737611282,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}},{"id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs2","attributes":{"enabled":true,"created":1737611325,"updated":1737611325,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}],"nextLink":null}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "456" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:49:27 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Rbac-Assignment-Id: + - e3a866f2e94846fcaaadb1202531c504 + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - f89f2eb8-da2d-4c05-83f5-906c798eaad4 + status: 200 OK + code: 200 + duration: 125.678305ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 6f80b87d34d3b4d2629901da769f1487 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 97 + uncompressed: false + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "97" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:49:28 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + Www-Authenticate: + - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - 57420160-2b3a-4c32-8760-277d71790c55 + status: 401 Unauthorized + code: 401 + duration: 82.183734ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 6f80b87d34d3b4d2629901da769f1487 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 281 + uncompressed: false + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs/5bc2758020f4459cb06ee40f112482ab","attributes":{"enabled":true,"created":1737611282,"updated":1737611282,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "281" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:49:28 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Rbac-Assignment-Id: + - e3a866f2e94846fcaaadb1202531c504 + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - d8b1a239-5a93-4c4f-9d96-159f0f5f6dce + status: 200 OK + code: 200 + duration: 98.980262ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 6f80b87d34d3b4d2629901da769f1487 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 97 + uncompressed: false + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "97" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:49:31 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + Www-Authenticate: + - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - a4872d33-940d-44e9-8cb8-3e3e67f02921 + status: 401 Unauthorized + code: 401 + duration: 81.422934ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 6f80b87d34d3b4d2629901da769f1487 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 281 + uncompressed: false + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs/5bc2758020f4459cb06ee40f112482ab","attributes":{"enabled":true,"created":1737611282,"updated":1737611282,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "281" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:49:31 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Rbac-Assignment-Id: + - e3a866f2e94846fcaaadb1202531c504 + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - 70522766-4925-4385-9b76-9efeee182120 + status: 200 OK + code: 200 + duration: 117.452692ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 6f80b87d34d3b4d2629901da769f1487 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 35781 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus","name":"eastus","type":"Region","displayName":"East US","regionalDisplayName":"(US) East US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"westus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus","name":"southcentralus","type":"Region","displayName":"South Central US","regionalDisplayName":"(US) South Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"northcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2","name":"westus2","type":"Region","displayName":"West US 2","regionalDisplayName":"(US) West US 2","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-119.852","latitude":"47.233","physicalLocation":"Washington","pairedRegion":[{"name":"westcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus3","name":"westus3","type":"Region","displayName":"West US 3","regionalDisplayName":"(US) West US 3","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-112.074036","latitude":"33.448376","physicalLocation":"Phoenix","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast","name":"australiaeast","type":"Region","displayName":"Australia East","regionalDisplayName":"(Asia Pacific) Australia East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"151.2094","latitude":"-33.86","physicalLocation":"New South Wales","pairedRegion":[{"name":"australiasoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia","name":"southeastasia","type":"Region","displayName":"Southeast Asia","regionalDisplayName":"(Asia Pacific) Southeast Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"103.833","latitude":"1.283","physicalLocation":"Singapore","pairedRegion":[{"name":"eastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope","name":"northeurope","type":"Region","displayName":"North Europe","regionalDisplayName":"(Europe) North Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-6.2597","latitude":"53.3478","physicalLocation":"Ireland","pairedRegion":[{"name":"westeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedencentral","name":"swedencentral","type":"Region","displayName":"Sweden Central","regionalDisplayName":"(Europe) Sweden Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"17.14127","latitude":"60.67488","physicalLocation":"Gävle","pairedRegion":[{"name":"swedensouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/swedensouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth","name":"uksouth","type":"Region","displayName":"UK South","regionalDisplayName":"(Europe) UK South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"-0.799","latitude":"50.941","physicalLocation":"London","pairedRegion":[{"name":"ukwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westeurope","name":"westeurope","type":"Region","displayName":"West Europe","regionalDisplayName":"(Europe) West Europe","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"4.9","latitude":"52.3667","physicalLocation":"Netherlands","pairedRegion":[{"name":"northeurope","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northeurope"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus","name":"centralus","type":"Region","displayName":"Central US","regionalDisplayName":"(US) Central US","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"Iowa","pairedRegion":[{"name":"eastus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth","name":"southafricanorth","type":"Region","displayName":"South Africa North","regionalDisplayName":"(Africa) South Africa North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Africa","longitude":"28.21837","latitude":"-25.73134","physicalLocation":"Johannesburg","pairedRegion":[{"name":"southafricawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia","name":"centralindia","type":"Region","displayName":"Central India","regionalDisplayName":"(Asia Pacific) Central India","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"73.9197","latitude":"18.5822","physicalLocation":"Pune","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasia","name":"eastasia","type":"Region","displayName":"East Asia","regionalDisplayName":"(Asia Pacific) East Asia","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"114.188","latitude":"22.267","physicalLocation":"Hong Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast","name":"japaneast","type":"Region","displayName":"Japan East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo, Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral","name":"koreacentral","type":"Region","displayName":"Korea Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"126.978","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealandnorth","name":"newzealandnorth","type":"Region","displayName":"New Zealand North","regionalDisplayName":"(Asia Pacific) New Zealand North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia Pacific","longitude":"174.76349","latitude":"-36.84853","physicalLocation":"Auckland","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral","name":"canadacentral","type":"Region","displayName":"Canada Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral","name":"francecentral","type":"Region","displayName":"France Central","regionalDisplayName":"(Europe) France Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"2.373","latitude":"46.3772","physicalLocation":"Paris","pairedRegion":[{"name":"francesouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral","name":"germanywestcentral","type":"Region","displayName":"Germany West Central","regionalDisplayName":"(Europe) Germany West Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.682127","latitude":"50.110924","physicalLocation":"Frankfurt","pairedRegion":[{"name":"germanynorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italynorth","name":"italynorth","type":"Region","displayName":"Italy North","regionalDisplayName":"(Europe) Italy North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"9.18109","latitude":"45.46888","physicalLocation":"Milan","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast","name":"norwayeast","type":"Region","displayName":"Norway East","regionalDisplayName":"(Europe) Norway East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"10.752245","latitude":"59.913868","physicalLocation":"Norway","pairedRegion":[{"name":"norwaywest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/polandcentral","name":"polandcentral","type":"Region","displayName":"Poland Central","regionalDisplayName":"(Europe) Poland Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"21.01666","latitude":"52.23334","physicalLocation":"Warsaw","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/spaincentral","name":"spaincentral","type":"Region","displayName":"Spain Central","regionalDisplayName":"(Europe) Spain Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"3.4209","latitude":"40.4259","physicalLocation":"Madrid","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth","name":"switzerlandnorth","type":"Region","displayName":"Switzerland North","regionalDisplayName":"(Europe) Switzerland North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Europe","longitude":"8.564572","latitude":"47.451542","physicalLocation":"Zurich","pairedRegion":[{"name":"switzerlandwest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/mexicocentral","name":"mexicocentral","type":"Region","displayName":"Mexico Central","regionalDisplayName":"(Mexico) Mexico Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Mexico","longitude":"-100.389888","latitude":"20.588818","physicalLocation":"Querétaro State","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth","name":"uaenorth","type":"Region","displayName":"UAE North","regionalDisplayName":"(Middle East) UAE North","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"55.316666","latitude":"25.266666","physicalLocation":"Dubai","pairedRegion":[{"name":"uaecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth","name":"brazilsouth","type":"Region","displayName":"Brazil South","regionalDisplayName":"(South America) Brazil South","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"South America","longitude":"-46.633","latitude":"-23.55","physicalLocation":"Sao Paulo State","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israelcentral","name":"israelcentral","type":"Region","displayName":"Israel Central","regionalDisplayName":"(Middle East) Israel Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"33.4506633","latitude":"31.2655698","physicalLocation":"Israel","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatarcentral","name":"qatarcentral","type":"Region","displayName":"Qatar Central","regionalDisplayName":"(Middle East) Qatar Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Middle East","longitude":"51.439327","latitude":"25.551462","physicalLocation":"Doha","pairedRegion":[]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralusstage","name":"centralusstage","type":"Region","displayName":"Central US (Stage)","regionalDisplayName":"(US) Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstage","name":"eastusstage","type":"Region","displayName":"East US (Stage)","regionalDisplayName":"(US) East US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2stage","name":"eastus2stage","type":"Region","displayName":"East US 2 (Stage)","regionalDisplayName":"(US) East US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralusstage","name":"northcentralusstage","type":"Region","displayName":"North Central US (Stage)","regionalDisplayName":"(US) North Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstage","name":"southcentralusstage","type":"Region","displayName":"South Central US (Stage)","regionalDisplayName":"(US) South Central US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westusstage","name":"westusstage","type":"Region","displayName":"West US (Stage)","regionalDisplayName":"(US) West US (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2stage","name":"westus2stage","type":"Region","displayName":"West US 2 (Stage)","regionalDisplayName":"(US) West US 2 (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"US"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asia","name":"asia","type":"Region","displayName":"Asia","regionalDisplayName":"Asia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/asiapacific","name":"asiapacific","type":"Region","displayName":"Asia Pacific","regionalDisplayName":"Asia Pacific","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australia","name":"australia","type":"Region","displayName":"Australia","regionalDisplayName":"Australia","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazil","name":"brazil","type":"Region","displayName":"Brazil","regionalDisplayName":"Brazil","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canada","name":"canada","type":"Region","displayName":"Canada","regionalDisplayName":"Canada","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/europe","name":"europe","type":"Region","displayName":"Europe","regionalDisplayName":"Europe","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/france","name":"france","type":"Region","displayName":"France","regionalDisplayName":"France","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germany","name":"germany","type":"Region","displayName":"Germany","regionalDisplayName":"Germany","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/global","name":"global","type":"Region","displayName":"Global","regionalDisplayName":"Global","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/india","name":"india","type":"Region","displayName":"India","regionalDisplayName":"India","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/israel","name":"israel","type":"Region","displayName":"Israel","regionalDisplayName":"Israel","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/italy","name":"italy","type":"Region","displayName":"Italy","regionalDisplayName":"Italy","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japan","name":"japan","type":"Region","displayName":"Japan","regionalDisplayName":"Japan","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/korea","name":"korea","type":"Region","displayName":"Korea","regionalDisplayName":"Korea","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/newzealand","name":"newzealand","type":"Region","displayName":"New Zealand","regionalDisplayName":"New Zealand","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norway","name":"norway","type":"Region","displayName":"Norway","regionalDisplayName":"Norway","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/poland","name":"poland","type":"Region","displayName":"Poland","regionalDisplayName":"Poland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/qatar","name":"qatar","type":"Region","displayName":"Qatar","regionalDisplayName":"Qatar","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/singapore","name":"singapore","type":"Region","displayName":"Singapore","regionalDisplayName":"Singapore","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafrica","name":"southafrica","type":"Region","displayName":"South Africa","regionalDisplayName":"South Africa","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/sweden","name":"sweden","type":"Region","displayName":"Sweden","regionalDisplayName":"Sweden","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerland","name":"switzerland","type":"Region","displayName":"Switzerland","regionalDisplayName":"Switzerland","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uae","name":"uae","type":"Region","displayName":"United Arab Emirates","regionalDisplayName":"United Arab Emirates","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uk","name":"uk","type":"Region","displayName":"United Kingdom","regionalDisplayName":"United Kingdom","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstates","name":"unitedstates","type":"Region","displayName":"United States","regionalDisplayName":"United States","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/unitedstateseuap","name":"unitedstateseuap","type":"Region","displayName":"United States EUAP","regionalDisplayName":"United States EUAP","metadata":{"regionType":"Logical","regionCategory":"Other"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastasiastage","name":"eastasiastage","type":"Region","displayName":"East Asia (Stage)","regionalDisplayName":"(Asia Pacific) East Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southeastasiastage","name":"southeastasiastage","type":"Region","displayName":"Southeast Asia (Stage)","regionalDisplayName":"(Asia Pacific) Southeast Asia (Stage)","metadata":{"regionType":"Logical","regionCategory":"Other","geographyGroup":"Asia Pacific"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilus","name":"brazilus","type":"Region","displayName":"Brazil US","regionalDisplayName":"(South America) Brazil US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"0","latitude":"0","physicalLocation":"","pairedRegion":[{"name":"brazilsoutheast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2","name":"eastus2","type":"Region","displayName":"East US 2","regionalDisplayName":"(US) East US 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"Virginia","pairedRegion":[{"name":"centralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg","name":"eastusstg","type":"Region","displayName":"East US STG","regionalDisplayName":"(US) East US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-79.8164","latitude":"37.3719","physicalLocation":"Virginia","pairedRegion":[{"name":"southcentralusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/northcentralus","name":"northcentralus","type":"Region","displayName":"North Central US","regionalDisplayName":"(US) North Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-87.6278","latitude":"41.8819","physicalLocation":"Illinois","pairedRegion":[{"name":"southcentralus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus","name":"westus","type":"Region","displayName":"West US","regionalDisplayName":"(US) West US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-122.417","latitude":"37.783","physicalLocation":"California","pairedRegion":[{"name":"eastus","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japanwest","name":"japanwest","type":"Region","displayName":"Japan West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/japaneast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest","name":"jioindiawest","type":"Region","displayName":"Jio India West","regionalDisplayName":"(Asia Pacific) Jio India West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap","name":"centraluseuap","type":"Region","displayName":"Central US EUAP","regionalDisplayName":"(US) Central US EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-93.6208","latitude":"41.5908","physicalLocation":"","pairedRegion":[{"name":"eastus2euap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastus2euap","name":"eastus2euap","type":"Region","displayName":"East US 2 EUAP","regionalDisplayName":"(US) East US 2 EUAP","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-78.3889","latitude":"36.6681","physicalLocation":"","pairedRegion":[{"name":"centraluseuap","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centraluseuap"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southcentralusstg","name":"southcentralusstg","type":"Region","displayName":"South Central US STG","regionalDisplayName":"(US) South Central US STG","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-98.5","latitude":"29.4167","physicalLocation":"Texas","pairedRegion":[{"name":"eastusstg","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/eastusstg"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westcentralus","name":"westcentralus","type":"Region","displayName":"West Central US","regionalDisplayName":"(US) West Central US","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"US","longitude":"-110.234","latitude":"40.89","physicalLocation":"Wyoming","pairedRegion":[{"name":"westus2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westus2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricawest","name":"southafricawest","type":"Region","displayName":"South Africa West","regionalDisplayName":"(Africa) South Africa West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Africa","longitude":"18.843266","latitude":"-34.075691","physicalLocation":"Cape Town","pairedRegion":[{"name":"southafricanorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southafricanorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral","name":"australiacentral","type":"Region","displayName":"Australia Central","regionalDisplayName":"(Asia Pacific) Australia Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral2","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral2","name":"australiacentral2","type":"Region","displayName":"Australia Central 2","regionalDisplayName":"(Asia Pacific) Australia Central 2","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"149.1244","latitude":"-35.3075","physicalLocation":"Canberra","pairedRegion":[{"name":"australiacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiasoutheast","name":"australiasoutheast","type":"Region","displayName":"Australia Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/australiaeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiacentral","name":"jioindiacentral","type":"Region","displayName":"Jio India Central","regionalDisplayName":"(Asia Pacific) Jio India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/jioindiawest"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreasouth","name":"koreasouth","type":"Region","displayName":"Korea South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/koreacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia","name":"southindia","type":"Region","displayName":"South India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"80.1636","latitude":"12.9822","physicalLocation":"Chennai","pairedRegion":[{"name":"centralindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/centralindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/westindia","name":"westindia","type":"Region","displayName":"West India","regionalDisplayName":"(Asia Pacific) West India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia Pacific","longitude":"72.868","latitude":"19.088","physicalLocation":"Mumbai","pairedRegion":[{"name":"southindia","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/southindia"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadaeast","name":"canadaeast","type":"Region","displayName":"Canada East","regionalDisplayName":"(Canada) Canada East","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Canada","longitude":"-71.217","latitude":"46.817","physicalLocation":"Quebec","pairedRegion":[{"name":"canadacentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/canadacentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francesouth","name":"francesouth","type":"Region","displayName":"France South","regionalDisplayName":"(Europe) France South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"2.1972","latitude":"43.8345","physicalLocation":"Marseille","pairedRegion":[{"name":"francecentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/francecentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanynorth","name":"germanynorth","type":"Region","displayName":"Germany North","regionalDisplayName":"(Europe) Germany North","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"8.806422","latitude":"53.073635","physicalLocation":"Berlin","pairedRegion":[{"name":"germanywestcentral","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/germanywestcentral"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwaywest","name":"norwaywest","type":"Region","displayName":"Norway West","regionalDisplayName":"(Europe) Norway West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"5.733107","latitude":"58.969975","physicalLocation":"Norway","pairedRegion":[{"name":"norwayeast","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/norwayeast"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandwest","name":"switzerlandwest","type":"Region","displayName":"Switzerland West","regionalDisplayName":"(Europe) Switzerland West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"6.143158","latitude":"46.204391","physicalLocation":"Geneva","pairedRegion":[{"name":"switzerlandnorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/switzerlandnorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/ukwest","name":"ukwest","type":"Region","displayName":"UK West","regionalDisplayName":"(Europe) UK West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Europe","longitude":"-3.084","latitude":"53.427","physicalLocation":"Cardiff","pairedRegion":[{"name":"uksouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uksouth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaecentral","name":"uaecentral","type":"Region","displayName":"UAE Central","regionalDisplayName":"(Middle East) UAE Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Middle East","longitude":"54.366669","latitude":"24.466667","physicalLocation":"Abu Dhabi","pairedRegion":[{"name":"uaenorth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/uaenorth"}]}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsoutheast","name":"brazilsoutheast","type":"Region","displayName":"Brazil Southeast","regionalDisplayName":"(South America) Brazil Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"South America","longitude":"-43.2075","latitude":"-22.90278","physicalLocation":"Rio","pairedRegion":[{"name":"brazilsouth","id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations/brazilsouth"}]}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "35781" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:49:35 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 6f80b87d34d3b4d2629901da769f1487 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 291478d9-abde-42bf-9e7d-b1097038e4a0 + X-Ms-Routing-Request-Id: + - WESTUS2:20250123T054935Z:291478d9-abde-42bf-9e7d-b1097038e4a0 + X-Msedge-Ref: + - 'Ref A: 9D5B3E4A5A834EF7A0401CB60B72EF0A Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:49:31Z' + status: 200 OK + code: 200 + duration: 3.881388255s + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 6f80b87d34d3b4d2629901da769f1487 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 97 + uncompressed: false + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "97" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:49:35 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + Www-Authenticate: + - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - 0523cd94-1d6f-45e0-8c84-df9dba0fd778 + status: 401 Unauthorized + code: 401 + duration: 87.355543ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-lbaeec6-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 6f80b87d34d3b4d2629901da769f1487 + url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 281 + uncompressed: false + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs/5bc2758020f4459cb06ee40f112482ab","attributes":{"enabled":true,"created":1737611282,"updated":1737611282,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "281" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:49:35 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Rbac-Assignment-Id: + - e3a866f2e94846fcaaadb1202531c504 + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - bfe6d15c-fb5f-4fc5-8d9a-ccfa01f682c9 + status: 200 OK + code: 200 + duration: 98.602461ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 6f80b87d34d3b4d2629901da769f1487 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 113563 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232","location":"eastus2","name":"azdtest-lbaeec6-1737611232","properties":{"correlationId":"8b96baa2d6a2c5803ffe85020a961354","dependencies":[],"duration":"PT5.4764214S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lbaeec6"}],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE NEW SECRET VALUE"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-lbaeec6"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"}]}],"provisioningState":"Succeeded","templateHash":"9208930884015842103","timestamp":"2025-01-23T05:49:01.3969821Z"},"tags":{"azd-env-name":"azdtest-lbaeec6","azd-provision-param-hash":"9c7f3d23069ecc62a79faf21c9ed021f357cf2ca9cf7c96c4207f8b311592316"},"type":"Microsoft.Resources/deployments"}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "113563" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:49:36 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 6f80b87d34d3b4d2629901da769f1487 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 499a1d8d-8e79-4560-8cf3-11b1ab801a29 + X-Ms-Routing-Request-Id: + - WESTCENTRALUS:20250123T054936Z:499a1d8d-8e79-4560-8cf3-11b1ab801a29 + X-Msedge-Ref: + - 'Ref A: B91243164CA348DBA61F286EF8183111 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:49:35Z' + status: 200 OK + code: 200 + duration: 922.446611ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1011 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.32.4.45862","templateHash":"9208930884015842103"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "1011" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 6f80b87d34d3b4d2629901da769f1487 + url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1177 + uncompressed: false + body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"NAME OF THE THE ENVIRONMENT WHICH IS USED TO GENERATE A SHORT UNIQUE HASH USED IN ALL RESOURCES.\"}},\"LOCATION\":{\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"PRIMARY LOCATION FOR ALL RESOURCES\"}},\"SECRETPARAM\":{\"TYPE\":\"SECURESTRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\"},\"OUTPUTPARAM\":\"[FORMAT(''SECRETPARAM:{0}'', PARAMETERS(''SECRETPARAM''))]\"},\"RESOURCES\":[{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"}],\"OUTPUTS\":{\"BICEP_OUTPUT\":{\"TYPE\":\"STRING\",\"VALUE\":\"[VARIABLES(''OUTPUTPARAM'')]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.32.4.45862\",\"TEMPLATEHASH\":\"9208930884015842103\"}}}","templateHash":"9208930884015842103"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1177" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:49:36 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 6f80b87d34d3b4d2629901da769f1487 + X-Ms-Ratelimit-Remaining-Tenant-Writes: + - "799" + X-Ms-Request-Id: + - d55a89d5-6964-4543-956e-624af944aecc + X-Ms-Routing-Request-Id: + - WESTUS2:20250123T054936Z:d55a89d5-6964-4543-956e-624af944aecc + X-Msedge-Ref: + - 'Ref A: 80C4DE43DF7B463483E25EE37AB7E262 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:49:36Z' + status: 200 OK + code: 200 + duration: 44.872474ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1360 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-lbaeec6"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.32.4.45862","templateHash":"9208930884015842103"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-lbaeec6","azd-provision-param-hash":"ebaf128cc364af2bc37431679e4228b8dd9a7a028ce4664bf8805e305fbc7641"}}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "1360" + Content-Type: + - application/json + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 6f80b87d34d3b4d2629901da769f1487 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232?api-version=2021-04-01 + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 892 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232","name":"azdtest-lbaeec6-1737611232","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lbaeec6","azd-provision-param-hash":"ebaf128cc364af2bc37431679e4228b8dd9a7a028ce4664bf8805e305fbc7641"},"properties":{"templateHash":"9208930884015842103","parameters":{"environmentName":{"type":"String","value":"azdtest-lbaeec6"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-23T05:49:40.6992622Z","duration":"PT0.000544S","correlationId":"6f80b87d34d3b4d2629901da769f1487","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' + headers: + Azure-Asyncoperation: + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232/operationStatuses/08584639955079360905?api-version=2021-04-01 + Cache-Control: + - no-cache + Content-Length: + - "892" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:49:40 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 6f80b87d34d3b4d2629901da769f1487 + X-Ms-Deployment-Engine-Version: + - 1.173.0 + X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: + - "11999" + X-Ms-Ratelimit-Remaining-Subscription-Writes: + - "799" + X-Ms-Request-Id: + - 65b57eee-93ef-403f-9691-80f6a2e11ce0 + X-Ms-Routing-Request-Id: + - WESTUS2:20250123T054941Z:65b57eee-93ef-403f-9691-80f6a2e11ce0 + X-Msedge-Ref: + - 'Ref A: E86892FC86AF400799BDDD924FD10409 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:49:36Z' + status: 200 OK + code: 200 + duration: 4.199127377s + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 6f80b87d34d3b4d2629901da769f1487 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232/operationStatuses/08584639955079360905?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 22 + uncompressed: false + body: '{"status":"Succeeded"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "22" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:50:11 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 6f80b87d34d3b4d2629901da769f1487 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - eb40a521-7014-4af0-9e71-cddb0c6eaed0 + X-Ms-Routing-Request-Id: + - WESTUS2:20250123T055011Z:eb40a521-7014-4af0-9e71-cddb0c6eaed0 + X-Msedge-Ref: + - 'Ref A: A7E950048E8046408BF0B4435C95FAC4 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:50:11Z' + status: 200 OK + code: 200 + duration: 197.779325ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 6f80b87d34d3b4d2629901da769f1487 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232?api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1101 + uncompressed: false + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232","name":"azdtest-lbaeec6-1737611232","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lbaeec6","azd-provision-param-hash":"ebaf128cc364af2bc37431679e4228b8dd9a7a028ce4664bf8805e305fbc7641"},"properties":{"templateHash":"9208930884015842103","parameters":{"environmentName":{"type":"String","value":"azdtest-lbaeec6"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-23T05:49:44.3604104Z","duration":"PT3.6616922S","correlationId":"6f80b87d34d3b4d2629901da769f1487","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lbaeec6"}]}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "1101" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:50:11 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 6f80b87d34d3b4d2629901da769f1487 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 95ff36b9-ac4c-46a6-bb48-df3cb7074dd5 + X-Ms-Routing-Request-Id: + - WESTUS2:20250123T055011Z:95ff36b9-ac4c-46a6-bb48-df3cb7074dd5 + X-Msedge-Ref: + - 'Ref A: 22D37340054747E2A135BCFB838F11EA Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:50:11Z' + status: 200 OK + code: 200 + duration: 224.77657ms + - id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: management.azure.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 6f80b87d34d3b4d2629901da769f1487 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lbaeec6%27&api-version=2021-04-01 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 288 + uncompressed: false + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lbaeec6","name":"rg-azdtest-lbaeec6","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lbaeec6"},"properties":{"provisioningState":"Succeeded"}}]}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "288" + Content-Type: + - application/json; charset=utf-8 + Date: + - Thu, 23 Jan 2025 05:50:11 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Ms-Correlation-Request-Id: + - 6f80b87d34d3b4d2629901da769f1487 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" + X-Ms-Request-Id: + - 6e6f82b9-7043-4fd2-88a6-f074df0fe353 + X-Ms-Routing-Request-Id: + - WESTUS2:20250123T055011Z:6e6f82b9-7043-4fd2-88a6-f074df0fe353 + X-Msedge-Ref: + - 'Ref A: 0A4D3CBC627C4A9E9365B6E49D8E66F8 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:50:11Z' + status: 200 OK + code: 200 + duration: 68.214612ms +--- +env_name: azdtest-lbaeec6 +time: "1737611232" diff --git a/cli/azd/test/functional/testdata/samples/environment-secrets/azure.yaml b/cli/azd/test/functional/testdata/samples/environment-secrets/azure.yaml new file mode 100644 index 00000000000..747de302a09 --- /dev/null +++ b/cli/azd/test/functional/testdata/samples/environment-secrets/azure.yaml @@ -0,0 +1,17 @@ +name: storage +metadata: + template: azd-test/env-secrets@v1 +hooks: + preprovision: + - windows: + run: 'Write-Host ".env value: $env:SEC_REF `nResolved secret: $env:SECRET_RESOLVE"' + shell: pwsh + interactive: true + secrets: + SECRET_RESOLVE: SEC_REF + posix: + run: 'echo ".env value: $SEC_REF \nResolved secret: $SECRET_RESOLVE"' + shell: sh + interactive: true + secrets: + SECRET_RESOLVE: SEC_REF diff --git a/cli/azd/test/functional/testdata/samples/environment-secrets/infra/main.bicep b/cli/azd/test/functional/testdata/samples/environment-secrets/infra/main.bicep new file mode 100644 index 00000000000..6f371547b63 --- /dev/null +++ b/cli/azd/test/functional/testdata/samples/environment-secrets/infra/main.bicep @@ -0,0 +1,27 @@ +targetScope = 'subscription' + +@minLength(1) +@maxLength(64) +@description('Name of the the environment which is used to generate a short unique hash used in all resources.') +param environmentName string + +@description('Primary location for all resources') +param location string + +@secure() +param secretParam string + +var tags = { + 'azd-env-name': environmentName +} + +resource rg 'Microsoft.Resources/resourceGroups@2021-04-01' = { + name: 'rg-${environmentName}' + location: location + tags: tags +} + +var outputParam = 'SecretParam:${secretParam}' + +// Output is used in the test to check the secret param is resolved and passed correctly +output BICEP_OUTPUT string = outputParam diff --git a/cli/azd/test/functional/testdata/samples/environment-secrets/infra/main.parameters.json b/cli/azd/test/functional/testdata/samples/environment-secrets/infra/main.parameters.json new file mode 100644 index 00000000000..b1eebf3f02a --- /dev/null +++ b/cli/azd/test/functional/testdata/samples/environment-secrets/infra/main.parameters.json @@ -0,0 +1,15 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "environmentName": { + "value": "${AZURE_ENV_NAME}" + }, + "location": { + "value": "${AZURE_LOCATION}" + }, + "secretParam": { + "value": "${SEC_REF}" + } + } +} \ No newline at end of file diff --git a/cli/azd/test/recording/recording.go b/cli/azd/test/recording/recording.go index 0a17adbb5bd..5241ed9ed23 100644 --- a/cli/azd/test/recording/recording.go +++ b/cli/azd/test/recording/recording.go @@ -209,6 +209,12 @@ func Start(t *testing.T, opts ...Options) *Session { return r.Method == i.Method && r.URL.String() == recorded.String() } + if strings.Contains(r.URL.Path, "providers/Microsoft.Authorization/roleAssignments/") { + // roleAssignments are autogenerated by azd each time as a GUID. + log.Info("recorderProxy: ignoring roleAssignments ID name in role assignments request", "url", r.URL) + return r.Method == i.Method + } + if opt.hostMapping != nil { if to, has := opt.hostMapping[r.URL.Host]; has { r.URL.Host = to From 9ea9d696e2c31bcf8387383d41219c008b374147 Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Thu, 23 Jan 2025 06:42:47 +0000 Subject: [PATCH 16/22] better recording handling --- cli/azd/test/recording/recording.go | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/cli/azd/test/recording/recording.go b/cli/azd/test/recording/recording.go index 5241ed9ed23..c03000df4be 100644 --- a/cli/azd/test/recording/recording.go +++ b/cli/azd/test/recording/recording.go @@ -20,6 +20,7 @@ import ( "net/url" "os" "path/filepath" + "regexp" "runtime" "strings" "testing" @@ -96,6 +97,10 @@ type Session struct { ProxyClient *http.Client } +const roleAssignmentsPath = "providers/Microsoft.Authorization/roleAssignments/" + +var roleAssignmentsRegex = regexp.MustCompile(roleAssignmentsPath + `[^/]+\?api`) + // Start starts the recorder proxy, returning a [recording.Session]. // In live mode, it returns nil. By default, interactions are automatically recorded once // if no recording is available on disk. @@ -209,10 +214,17 @@ func Start(t *testing.T, opts ...Options) *Session { return r.Method == i.Method && r.URL.String() == recorded.String() } - if strings.Contains(r.URL.Path, "providers/Microsoft.Authorization/roleAssignments/") { + if strings.Contains(r.URL.Path, roleAssignmentsPath) { // roleAssignments are autogenerated by azd each time as a GUID. + recorded, err := url.Parse(i.URL) + if err != nil { + panic(err) + } + replaceWith := roleAssignmentsPath + "IGNORED?api" + pathIgnoredId := roleAssignmentsRegex.ReplaceAllString(r.URL.String(), replaceWith) + recordedIgnoredId := roleAssignmentsRegex.ReplaceAllString(recorded.String(), replaceWith) log.Info("recorderProxy: ignoring roleAssignments ID name in role assignments request", "url", r.URL) - return r.Method == i.Method + return r.Method == i.Method && pathIgnoredId == recordedIgnoredId } if opt.hostMapping != nil { From fda205cfcb0bde53f9426b56959f82404173efb1 Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Sat, 25 Jan 2025 02:27:39 +0000 Subject: [PATCH 17/22] rename key vault account to just key vault Enhance test and the strategy to set stdin for selections --- cli/azd/cmd/env.go | 98 +- cli/azd/internal/appdetect/java_test.go | 3 + cli/azd/test/functional/cli_test.go | 30 +- .../Test_CLI_EnvironmentSecrets.yaml | 1593 +++++++++-------- .../samples/environment-secrets/azure.yaml | 4 +- 5 files changed, 965 insertions(+), 763 deletions(-) diff --git a/cli/azd/cmd/env.go b/cli/azd/cmd/env.go index 574ad98f473..db27fdbdd8e 100644 --- a/cli/azd/cmd/env.go +++ b/cli/azd/cmd/env.go @@ -203,10 +203,15 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er if len(e.args) < 1 { return nil, fmt.Errorf( - "no provided. Please provide a name as argument like: 'azd env set '") + "no provided. Please provide a name as argument like: 'azd env set-secret '") } secretName := e.args[0] + // When AZD_ENV_SET_SECRET_LIST_WITHOUT_NUMBERS is defined in azd env, azd will not add numbers to the list when + // asking to select options. For example, instead of showing "1. Option 1", it will show "Option 1". This is useful + // when the user wants to prefill the selection in stdin before calling azd env set-secret (e.g. in a script). + _, listWithoutNumbers := e.env.LookupEnv("AZD_ENV_SET_SECRET_LIST_WITHOUT_NUMBERS") + createNewStrategy := "Create a new Key Vault secret" selectExistingStrategy := "Select an existing Key Vault secret" setSecretStrategies := []string{createNewStrategy, selectExistingStrategy} @@ -216,8 +221,8 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er Message: "Select how you want to set " + secretName, Options: setSecretStrategies, DefaultValue: createNewStrategy, - Help: "When creating a new Key Vault secret, you can either create a new Key Vault account or" + - " pick an existing one. A Key Vault secret belongs to a Key Vault account.", + Help: "When creating a new Key Vault secret, you can either create a new Key Vault or" + + " pick an existing one. A Key Vault secret belongs to a Key Vault.", }) if err != nil { return nil, fmt.Errorf("selecting secret setting strategy: %w", err) @@ -230,12 +235,12 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er // default messages based on willCreateNewSecret == true pickSubscription := "Select the subscription where you want to create the Key Vault secret" - pickKvAccount := "Select the Key Vault account where you want to create the Key Vault secret" + pickKvAccount := "Select the Key Vault where you want to create the Key Vault secret" if !willCreateNewSecret { // reassign messages for selecting existing secret pickSubscription = "Select the subscription where the Key Vault secret is" - pickKvAccount = "Select the Key Vault account where the Key Vault secret is" + pickKvAccount = "Select the Key Vault where the Key Vault secret is" } subId, err := e.prompter.PromptSubscription(ctx, pickSubscription) @@ -247,10 +252,10 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er return nil, fmt.Errorf("looking up tenant for subscription: %w", err) } - e.console.ShowSpinner(ctx, "Finding Key Vault accounts from the selected subscription", input.Step) + e.console.ShowSpinner(ctx, "Finding Key Vaults from the selected subscription", input.Step) vaultsList, err := e.kvService.ListSubscriptionVaults(ctx, subId) if err != nil { - return nil, fmt.Errorf("getting the list of Key Vault accounts: %w", err) + return nil, fmt.Errorf("getting the list of Key Vaults: %w", err) } // prompt for vault selection e.console.StopSpinner(ctx, "", input.Step) @@ -258,21 +263,26 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er atLeastOneKvAccountExists := len(vaultsList) > 0 if !atLeastOneKvAccountExists && !willCreateNewSecret { e.console.MessageUxItem(ctx, &ux.WarningMessage{ - Description: "No Key Vaults accounts were found in the selected subscription", + Description: "No Azure Key Vaults were found in the selected subscription", }) // update the flow to offer creating a new Key Vault willCreateNewSecret = true } - createNewKvAccountOption := "Create a new Key Vault account" + createNewKvAccountOption := "Create a new Key Vault" selectKvAccountOptions := []string{} // indexOffset makes the ids to start from 1 instead of 0 when displaying the options indexOffset := 1 if willCreateNewSecret { selectKvAccountOptions = append(selectKvAccountOptions, createNewKvAccountOption) } + for index, vault := range vaultsList { - selectKvAccountOptions = append(selectKvAccountOptions, fmt.Sprintf("%2d. %s", index+indexOffset, vault.Name)) + if listWithoutNumbers { + selectKvAccountOptions = append(selectKvAccountOptions, vault.Name) + } else { + selectKvAccountOptions = append(selectKvAccountOptions, fmt.Sprintf("%2d. %s", index+indexOffset, vault.Name)) + } } kvAccountSelectionIndex, err := e.console.Select(ctx, input.ConsoleOptions{ @@ -281,7 +291,7 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er DefaultValue: selectKvAccountOptions[0], }) if err != nil { - return nil, fmt.Errorf("selecting Key Vault account: %w", err) + return nil, fmt.Errorf("selecting Key Vault: %w", err) } willCreateNewKvAccount := selectKvAccountOptions[kvAccountSelectionIndex] == createNewKvAccountOption @@ -297,7 +307,7 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er } if willCreateNewKvAccount { - location, err := e.prompter.PromptLocation(ctx, subId, "Select the location to create the Key Vault account", nil) + location, err := e.prompter.PromptLocation(ctx, subId, "Select the location to create the Key Vault", nil) if err != nil { return nil, fmt.Errorf("prompting for Key Vault location: %w", err) } @@ -308,41 +318,43 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er return nil, fmt.Errorf("prompting for resource group: %w", err) } + kvAccountName := "" for { - kvAccountName, err := e.console.Prompt(ctx, input.ConsoleOptions{ - Message: "Enter a name for the Key Vault account", + kvAccountNameInput, err := e.console.Prompt(ctx, input.ConsoleOptions{ + Message: "Enter a name for the Key Vault", Help: "The name must be unique within the subscription and must be between 3 and 24 characters long", }) if err != nil { - return nil, fmt.Errorf("prompting for Key Vault account name: %w", err) - } - if kvAccountName == "" { - e.console.Message(ctx, "Key Vault account name cannot be empty") - continue + return nil, fmt.Errorf("prompting for Key Vault name: %w", err) } - e.console.ShowSpinner(ctx, "Creating Key Vault account", input.Step) - vault, err := e.kvService.CreateVault(ctx, tenantId, subId, rg, location, kvAccountName) - e.console.StopSpinner(ctx, "", input.Step) - if err != nil { - e.console.Message(ctx, fmt.Sprintf("Error creating Key Vault account: %v", err)) + if kvAccountNameInput == "" { + e.console.Message(ctx, "Key Vault name cannot be empty") continue } - kvAccount = vault - - // RBAC role assignment - e.console.ShowSpinner(ctx, "Adding Administrator Role", input.Step) - principalId, err := azureutil.GetCurrentPrincipalId(ctx, e.userProfileService, tenantId) - if err != nil { - return nil, fmt.Errorf("getting current principal ID: %w", err) - } - err = e.entraIdService.CreateRbac( - ctx, subId, kvAccount.Id, keyvault.RoleIdKeyVaultAdministrator, principalId) - if err != nil { - return nil, fmt.Errorf("adding Administrator Role: %w", err) - } - e.console.StopSpinner(ctx, "", input.Step) + kvAccountName = kvAccountNameInput break } + + e.console.ShowSpinner(ctx, "Creating Key Vault", input.Step) + vault, err := e.kvService.CreateVault(ctx, tenantId, subId, rg, location, kvAccountName) + e.console.StopSpinner(ctx, "", input.Step) + if err != nil { + return nil, fmt.Errorf("Error creating Key Vault: %w", err) + } + kvAccount = vault + + // RBAC role assignment + e.console.ShowSpinner(ctx, "Adding Administrator Role", input.Step) + principalId, err := azureutil.GetCurrentPrincipalId(ctx, e.userProfileService, tenantId) + if err != nil { + return nil, fmt.Errorf("getting current principal ID: %w", err) + } + err = e.entraIdService.CreateRbac( + ctx, subId, kvAccount.Id, keyvault.RoleIdKeyVaultAdministrator, principalId) + if err != nil { + return nil, fmt.Errorf("adding Administrator Role: %w", err) + } + e.console.StopSpinner(ctx, "", input.Step) } var kvSecretName string @@ -390,11 +402,15 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er return nil, fmt.Errorf("listing Key Vault secrets: %w", err) } if len(secretsInKv) == 0 { - return nil, fmt.Errorf("no Key Vault secrets were found in the selected Key Vault account") + return nil, fmt.Errorf("no Key Vault secrets were found in the selected Key Vault") } options := make([]string, len(secretsInKv)) for i, secret := range secretsInKv { - options[i] = fmt.Sprintf("%2d. %s", i+1, secret) + if listWithoutNumbers { + options[i] = secret + } else { + options[i] = fmt.Sprintf("%2d. %s", i+1, secret) + } } secretSelectionIndex, err := e.console.Select(ctx, input.ConsoleOptions{ Message: "Select the Key Vault secret", @@ -417,7 +433,7 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er return &actions.ActionResult{ Message: &actions.ResultMessage{ Header: fmt.Sprintf("The key %s was saved in the environment as a reference to the"+ - " Key Vault secret %s from the Key Vault account %s", + " Key Vault secret %s from the Key Vault %s", output.WithBackticks(secretName), output.WithBackticks(kvSecretName), output.WithBackticks(kvAccount.Name)), diff --git a/cli/azd/internal/appdetect/java_test.go b/cli/azd/internal/appdetect/java_test.go index 0d62858ae19..174d26a8968 100644 --- a/cli/azd/internal/appdetect/java_test.go +++ b/cli/azd/internal/appdetect/java_test.go @@ -1,3 +1,6 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + package appdetect import ( diff --git a/cli/azd/test/functional/cli_test.go b/cli/azd/test/functional/cli_test.go index 8eeb50b24d1..0d728501619 100644 --- a/cli/azd/test/functional/cli_test.go +++ b/cli/azd/test/functional/cli_test.go @@ -19,7 +19,6 @@ import ( osexec "os/exec" "path" "path/filepath" - "regexp" "runtime" "slices" "strings" @@ -379,6 +378,7 @@ func Test_CLI_EnvironmentSecrets(t *testing.T) { cli.WorkingDirectory = dir cli.Env = append(cli.Env, os.Environ()...) cli.Env = append(cli.Env, "AZURE_LOCATION=eastus2") + cli.Env = append(cli.Env, `AZD_ENV_SET_SECRET_LIST_WITHOUT_NUMBERS=""`) err := copySample(dir, "environment-secrets") require.NoError(t, err, "failed expanding sample") @@ -425,24 +425,6 @@ func Test_CLI_EnvironmentSecrets(t *testing.T) { kvs2, kvsv2, ), "env", "set-secret", "SEC_REF") - // This error is expected because we don't know the number that azd adds before the key vault account name - require.Error(t, err, "selecting Key Vault account") - - // Extract the key vault account name from the error message - extractor := regexp.MustCompile(`(\s?\d+\. )` + kva + ",?").FindStringSubmatch(envSetSecretOut.Stdout) - if len(extractor) != 2 { - t.Fatalf("could not extract the key vault account name from the error message: %s", envSetSecretOut.Stdout) - return - } - - kvaWithNumber := fmt.Sprintf("%s%s", extractor[1], kva) - - // try again with the correct key vault account name - envSetSecretOut, err = cli.RunCommandWithStdIn(ctx, stdinForExistingKvAccount( - kvaWithNumber, - kvs2, - kvsv2, - ), "env", "set-secret", "SEC_REF") require.NoError(t, err) require.Contains(t, envSetSecretOut.Stdout, "https://aka.ms/azd-env-set-secret") @@ -460,7 +442,7 @@ func Test_CLI_EnvironmentSecrets(t *testing.T) { // Finally, test selecting existing kv secret by setting the initial secret again envSetSecretOut, err = cli.RunCommandWithStdIn( - ctx, stdinForExistingKvSecret(kvaWithNumber), "env", "set-secret", "SEC_REF") + ctx, stdinForExistingKvSecret(kva), "env", "set-secret", "SEC_REF") require.NoError(t, err) require.Contains(t, envSetSecretOut.Stdout, "https://aka.ms/azd-env-set-secret") @@ -899,11 +881,11 @@ func stdinForProvision() string { func stdinForCreateKvAccount(rg, kva, kvs, kvsv string) string { return "\n" + // "Create new Key Vault Secret "\n" + // "choose subscription" (we're choosing the default) - "\n" + // "Create new Key Vault Account + "\n" + // "Create new Key Vault "\n" + // "choose location" (we're choosing the default) "Create a new resource group\n" + // "Create new resource group" rg + "\n" + // "resource group name" - kva + "\n" + // "key vault account name" + kva + "\n" + // "key vault name" kvs + "\n" + // "key vault secret name" kvsv + "\n" // "key vault secret value" } @@ -911,7 +893,7 @@ func stdinForCreateKvAccount(rg, kva, kvs, kvsv string) string { func stdinForExistingKvAccount(kva, kvs, kvsv string) string { return "\n" + // "Create new Key Vault Secret "\n" + // "choose subscription" (we're choosing the default) - kva + "\n" + // "Use existing Key Vault Account + kva + "\n" + // "Use existing Key Vault kvs + "\n" + // "key vault secret name" kvsv + "\n" // "key vault secret value" } @@ -919,7 +901,7 @@ func stdinForExistingKvAccount(kva, kvs, kvsv string) string { func stdinForExistingKvSecret(kva string) string { return "Select an existing Key Vault secret\n" + // "Create new Key Vault Secret "\n" + // "choose subscription" (we're choosing the default) - kva + "\n" + // "Use existing Key Vault Account + kva + "\n" + // "Use existing Key Vault "\n" // "first key vault secret name in the list" } diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvironmentSecrets.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvironmentSecrets.yaml index d41355df2a6..f615a25e0cc 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvironmentSecrets.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvironmentSecrets.yaml @@ -24,7 +24,7 @@ interactions: User-Agent: - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 580f5461e559c6bdc2594f1ab046e050 + - 5bcf89daa4d1246a568f5cd429c2a56d url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 method: GET response: @@ -33,18 +33,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4977 + content_length: 4056 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/scaddie/providers/Microsoft.KeyVault/vaults/kvScottTestApp1","name":"kvScottTestApp1","type":"Microsoft.KeyVault/vaults","location":"northcentralus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-test-gha/providers/Microsoft.KeyVault/vaults/kv-d7e2iil2mbz6g","name":"kv-d7e2iil2mbz6g","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"hemarina-test-gha"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazqu-testing-azd-secret-env/providers/Microsoft.KeyVault/vaults/keyvault-account","name":"keyvault-account","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazqu-testing-azd-secret-env/providers/Microsoft.KeyVault/vaults/vivazqu-secrets","name":"vivazqu-secrets","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-1233/providers/Microsoft.KeyVault/vaults/kv-ksqzfpgkd7ppm","name":"kv-ksqzfpgkd7ppm","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"1233"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jcnew/providers/Microsoft.KeyVault/vaults/kv-nfsgjllnkgov6","name":"kv-nfsgjllnkgov6","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"jcnew"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazque-flow-test/providers/Microsoft.KeyVault/vaults/vivazque-ka-a","name":"vivazque-ka-a","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-joncardekeyvault/providers/Microsoft.KeyVault/vaults/tb0f745ebb7bfae58","name":"tb0f745ebb7bfae58","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-test-gha/providers/Microsoft.KeyVault/vaults/kv-d7e2iil2mbz6g","name":"kv-d7e2iil2mbz6g","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"hemarina-test-gha"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai/providers/Microsoft.KeyVault/vaults/kv-rajeshka371125419172","name":"kv-rajeshka371125419172","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-unique-eventhub.namespaces-ehnkv-rg/providers/Microsoft.KeyVault/vaults/dep-unique-kv-ehnkv","name":"dep-unique-kv-ehnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-unique-servicebus.namespaces-sbnkv-rg/providers/Microsoft.KeyVault/vaults/dep-unique-kv-sbnkv","name":"dep-unique-kv-sbnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' headers: Cache-Control: - no-cache Content-Length: - - "4977" + - "4056" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:47:13 GMT + - Sat, 25 Jan 2025 02:22:54 GMT Expires: - "-1" Pragma: @@ -56,20 +56,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 580f5461e559c6bdc2594f1ab046e050 + - 5bcf89daa4d1246a568f5cd429c2a56d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - e3befa0d-abc2-4aa7-8bfd-4e3e8a2962f9 + - 759430c4-4bbe-4ce4-909b-a4fc78ceb46d X-Ms-Routing-Request-Id: - - WESTUS:20250123T054713Z:e3befa0d-abc2-4aa7-8bfd-4e3e8a2962f9 + - WESTUS2:20250125T022254Z:759430c4-4bbe-4ce4-909b-a4fc78ceb46d X-Msedge-Ref: - - 'Ref A: 259A1EC48E1C4CBDADE615C6A28EC2B0 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:47:12Z' + - 'Ref A: 10BF0B3814324990B2FDD527CCACE091 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:22:53Z' status: 200 OK code: 200 - duration: 419.386477ms + duration: 697.496393ms - id: 1 request: proto: HTTP/1.1 @@ -93,7 +93,7 @@ interactions: User-Agent: - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 580f5461e559c6bdc2594f1ab046e050 + - 5bcf89daa4d1246a568f5cd429c2a56d url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -113,7 +113,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:47:16 GMT + - Sat, 25 Jan 2025 02:22:57 GMT Expires: - "-1" Pragma: @@ -125,20 +125,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 580f5461e559c6bdc2594f1ab046e050 + - 5bcf89daa4d1246a568f5cd429c2a56d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 8ca06cfa-3948-4659-844d-302a61719c1c + - 5f3b1593-a60d-4cae-8865-2833943870a2 X-Ms-Routing-Request-Id: - - WESTUS:20250123T054716Z:8ca06cfa-3948-4659-844d-302a61719c1c + - WESTUS2:20250125T022257Z:5f3b1593-a60d-4cae-8865-2833943870a2 X-Msedge-Ref: - - 'Ref A: D3D5E630A27444859749BEA7704636F7 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:47:13Z' + - 'Ref A: 780B10960790465CBA6F61DC8324573A Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:22:54Z' status: 200 OK code: 200 - duration: 3.090072088s + duration: 2.828545601s - id: 2 request: proto: HTTP/1.1 @@ -162,7 +162,7 @@ interactions: User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 580f5461e559c6bdc2594f1ab046e050 + - 5bcf89daa4d1246a568f5cd429c2a56d url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?api-version=2021-04-01 method: GET response: @@ -171,18 +171,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 54955 + content_length: 45431 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dataproduct48702-HostedResources-32E47270","name":"dataproduct48702-HostedResources-32E47270","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg73273/providers/Microsoft.NetworkAnalytics/dataProducts/dataproduct48702","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dataproduct72706-HostedResources-6BE50C22","name":"dataproduct72706-HostedResources-6BE50C22","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg39104/providers/Microsoft.NetworkAnalytics/dataProducts/dataproduct72706","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product89683-HostedResources-6EFC6FE2","name":"product89683-HostedResources-6EFC6FE2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg98573/providers/Microsoft.NetworkAnalytics/dataProducts/product89683","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product56057-HostedResources-081D2AD1","name":"product56057-HostedResources-081D2AD1","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg31226/providers/Microsoft.NetworkAnalytics/dataProducts/product56057","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product52308-HostedResources-5D5C105C","name":"product52308-HostedResources-5D5C105C","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg22243/providers/Microsoft.NetworkAnalytics/dataProducts/product52308","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product09392-HostedResources-6F71BABB","name":"product09392-HostedResources-6F71BABB","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg70288/providers/Microsoft.NetworkAnalytics/dataProducts/product09392","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product4lh001-HostedResources-20AFF06E","name":"product4lh001-HostedResources-20AFF06E","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest02/providers/Microsoft.NetworkAnalytics/dataProducts/product4lh001","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiaofeitest-HostedResources-38FAB8A0","name":"xiaofeitest-HostedResources-38FAB8A0","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-xiaofei/providers/Microsoft.NetworkAnalytics/dataProducts/xiaofeitest","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/scaddie","name":"scaddie","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{"DeleteAfter":"01/24/2025 04:12:21"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/openai-shared","name":"openai-shared","type":"Microsoft.Resources/resourceGroups","location":"swedencentral","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/wenjiefu","name":"wenjiefu","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DeleteAfter":"07/12/2024 17:23:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chriss","name":"chriss","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-centralus-eus2","name":"ResourceMoverRG-eastus-centralus-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/09/2023 21:30:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mdwgecko","name":"rg-mdwgecko","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/09/2023 21:31:22"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NI_nc-platEng-Dev_eastus2","name":"NI_nc-platEng-Dev_eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/PlatEng-Dev/providers/Microsoft.DevCenter/networkconnections/nc-platEng-Dev","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-contoso-i34nhebbt3526","name":"rg-contoso-i34nhebbt3526","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"devcenter4lh003","DeleteAfter":"11/08/2023 08:09:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdux","name":"azdux","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-devcenter","name":"rg-wabrez-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-devcenter","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-westus2-eus2","name":"ResourceMoverRG-eastus-westus2-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"05/11/2024 19:17:16"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/AzSecPackAutoConfigRG","name":"AzSecPackAutoConfigRG","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-raychen-test-wus","name":"rg-raychen-test-wus","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter ":"2024-12-30T12:30:00.000Z","owner":"raychen","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg40370","name":"rg40370","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/09/2023 21:33:47"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg16812","name":"rg16812","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/09/2023 21:33:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/msolomon-testing","name":"msolomon-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/senyangrg","name":"senyangrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"03/08/2024 00:08:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azsdk-pm-ai","name":"azsdk-pm-ai","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"TypeSpecChannelBot-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/bterlson-cadl","name":"bterlson-cadl","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration","name":"rg-shrejaappconfiguration","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-12-24T05:11:17.9627286Z","Owners":"shreja","ServiceDirectory":"appconfiguration"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc88170fa","name":"rgloc88170fa","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc0890584","name":"rgloc0890584","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llawrence-rg","name":"llawrence-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"11/23/2024 00:21:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazservicebus","name":"rg-riparkazservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"messaging/azservicebus","Owners":"ripark","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkaznamespaces","name":"rg-riparkaznamespaces","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"messaging/eventgrid/aznamespaces","Owners":"ripark","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-joncardekeyvault","name":"rg-joncardekeyvault","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"keyvault","DeleteAfter":"2025-01-24T20:56:53.4931878+00:00","Owners":"joncarde"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-swathipstorage","name":"rg-swathipstorage","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"storage","Owners":"swathip","DeleteAfter":"2025-01-26T22:17:50.4296899Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-177","name":"go-sdk-test-177","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/23/2025 08:15:38"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceeventhub","name":"rg-llawrenceeventhub","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-27T17:50:31.2824952Z","ServiceDirectory":"eventhub","Owners":"llawrence"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chloweazbatch","name":"rg-chloweazbatch","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"chlowe","DeleteAfter":"2025-01-27T19:26:00.9112619Z","ServiceDirectory":"batch/azbatch"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceservicebus","name":"rg-llawrenceservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-27T22:51:53.3805625Z","ServiceDirectory":"servicebus","Owners":"llawrence"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbllawrence-rg","name":"sbllawrence-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/24/2025 00:16:57"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-swathipservicebus","name":"rg-swathipservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"servicebus","Owners":"swathip","DeleteAfter":"2025-01-27T23:21:49.2553458Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kashifkhanservicebus","name":"rg-kashifkhanservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-27T23:34:41.3453953Z","Owners":"kashifkhan","ServiceDirectory":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-499","name":"go-sdk-test-499","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/24/2025 04:12:25"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-943","name":"go-sdk-test-943","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/24/2025 04:12:26"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-743","name":"go-sdk-test-743","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/24/2025 04:12:27"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-421","name":"go-sdk-test-421","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/24/2025 04:12:27"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg","name":"rg-stress-secrets-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg","name":"rg-stress-cluster-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-nodes-s1-stress-pg-pg","name":"rg-nodes-s1-stress-pg-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-stress-cluster-pg/providers/Microsoft.ContainerService/managedClusters/stress-pg","tags":{"DoNotDelete":"","aks-managed-cluster-name":"stress-pg","aks-managed-cluster-rg":"rg-stress-cluster-pg","environment":"pg","owners":"bebroder, albertcheng"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdev-dev","name":"rg-azdev-dev","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","product":"azdev","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan-search","name":"xiangyan-search","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan-apiview-gpt","name":"xiangyan-apiview-gpt","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-sdk-dotnet","name":"jsquire-sdk-dotnet","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"purpose":"local development","owner":"Jesse Squire","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/billwert-acrrg","name":"billwert-acrrg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"2025-02-05T19:08:55.2162878Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/antisch-cmtest","name":"antisch-cmtest","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vigera-group","name":"vigera-group","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"01/26/2025 20:15:08"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/yumeng-js-test","name":"yumeng-js-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"01/28/2025 00:14:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119","name":"sameal-rg-0119","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"01/30/2025 00:14:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-queuew-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-queuew-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildId":"","ServiceDirectory":"/azure/","BuildNumber":"","DeleteAfter":"2025-01-28T17:38:02.4681872Z","BuildJob":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-aqueuepullw-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-aqueuepullw-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildNumber":"","Owners":"","DeleteAfter":"2025-01-28T17:38:02.5996863Z","ServiceDirectory":"/azure/","BuildJob":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-batchw-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-batchw-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","ServiceDirectory":"/azure/","BuildNumber":"","DeleteAfter":"2025-01-28T17:38:02.6956727Z","Owners":"","BuildId":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-batch-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-batch-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-28T17:38:02.9712344Z","BuildId":"","BuildJob":"","BuildReason":"","Owners":"","BuildNumber":"","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-aqueuepull-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-aqueuepull-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildReason":"","BuildId":"","Owners":"","ServiceDirectory":"/azure/","DeleteAfter":"2025-01-28T17:38:03.0072814Z","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-aqueue-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-aqueue-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildNumber":"","DeleteAfter":"2025-01-28T17:38:03.2165486Z","ServiceDirectory":"/azure/","Owners":"","BuildReason":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-aqueuew-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-aqueuew-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildReason":"","Owners":"","DeleteAfter":"2025-01-28T17:38:03.3367512Z","BuildId":"","ServiceDirectory":"/azure/","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-queuepull-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-queuepull-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","ServiceDirectory":"/azure/","Owners":"","BuildNumber":"","BuildJob":"","DeleteAfter":"2025-01-28T17:38:02.8532792Z","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-queue-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-queue-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","DeleteAfter":"2025-01-28T17:38:04.0233723Z","BuildJob":"","BuildId":"","BuildReason":"","Owners":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-abatchw-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-abatchw-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildId":"","DeleteAfter":"2025-01-28T17:38:04.3146253Z","BuildNumber":"","BuildReason":"","ServiceDirectory":"/azure/","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-queuepullw-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-queuepullw-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","ServiceDirectory":"/azure/","DeleteAfter":"2025-01-28T17:38:04.1130514Z","Owners":"","BuildJob":"","BuildNumber":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-abatch-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-abatch-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildJob":"","ServiceDirectory":"/azure/","BuildId":"","BuildNumber":"","DeleteAfter":"2025-01-28T17:38:04.8326422Z","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-aqueuepull-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-aqueuepull-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildId":"","DeleteAfter":"2025-01-28T17:41:53.1767113Z","ServiceDirectory":"/azure/","BuildReason":"","BuildNumber":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-batch-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-batch-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-28T17:41:53.4538813Z","BuildId":"","BuildReason":"","ServiceDirectory":"/azure/","BuildJob":"","Owners":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-abatchw-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-abatchw-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","BuildJob":"","BuildReason":"","BuildNumber":"","BuildId":"","DeleteAfter":"2025-01-28T17:41:54.1737440Z","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-queue-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-queue-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","Owners":"","BuildReason":"","BuildNumber":"","DeleteAfter":"2025-01-28T17:41:53.8610621Z","BuildId":"","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-aqueue-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-aqueue-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","Owners":"","ServiceDirectory":"/azure/","BuildId":"","BuildReason":"","BuildNumber":"","DeleteAfter":"2025-01-28T17:41:54.3781896Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-queuew-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-queuew-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","DeleteAfter":"2025-01-28T17:41:53.9485761Z","BuildReason":"","ServiceDirectory":"/azure/","BuildJob":"","Owners":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-batchw-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-batchw-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","BuildReason":"","DeleteAfter":"2025-01-28T17:41:54.3337634Z","BuildJob":"","BuildNumber":"","BuildId":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-queuepull-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-queuepull-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildReason":"","Owners":"","BuildNumber":"","BuildJob":"","DeleteAfter":"2025-01-28T17:41:54.3198437Z","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-aqueuepullw-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-aqueuepullw-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildId":"","Owners":"","BuildReason":"","DeleteAfter":"2025-01-28T17:41:54.5404984Z","BuildNumber":"","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-abatch-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-abatch-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-28T17:41:54.5649789Z","BuildJob":"","BuildNumber":"","BuildReason":"","Owners":"","ServiceDirectory":"/azure/","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-aqueuew-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-aqueuew-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildReason":"","ServiceDirectory":"/azure/","Owners":"","BuildNumber":"","BuildId":"","DeleteAfter":"2025-01-28T17:41:54.8005523Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-queuepullw-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-queuepullw-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildReason":"","Owners":"","ServiceDirectory":"/azure/","BuildJob":"","BuildNumber":"","DeleteAfter":"2025-01-28T17:41:55.3671020Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv","name":"rg-weilim-env-kv","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"01/31/2025 20:13:39"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehcontrolfinal-dockerfile-bplistasync-stress-py-eh-1","name":"ehcontrolfinal-dockerfile-bplistasync-stress-py-eh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-28T22:14:09.7884339Z","BuildNumber":"","Owners":"","ServiceDirectory":"/azure/","BuildJob":"","BuildReason":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehcontrolfinal-dockerfile-batchasync-stress-py-eh-1","name":"ehcontrolfinal-dockerfile-batchasync-stress-py-eh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","Owners":"","DeleteAfter":"2025-01-28T22:14:10.2939569Z","BuildNumber":"","ServiceDirectory":"/azure/","BuildId":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehcontrolfinal-dockerfile-bpasync-stress-py-eh-1","name":"ehcontrolfinal-dockerfile-bpasync-stress-py-eh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","DeleteAfter":"2025-01-28T22:14:10.3617820Z","BuildJob":"","BuildReason":"","BuildNumber":"","ServiceDirectory":"/azure/","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehcontrolfinal-dockerfile-syncwebsockets-stress-py-eh-1","name":"ehcontrolfinal-dockerfile-syncwebsockets-stress-py-eh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","BuildJob":"","DeleteAfter":"2025-01-28T22:14:10.8151677Z","BuildId":"","Owners":"","BuildNumber":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehcontrolfinal-dockerfile-syncbatchweb-stress-py-eh-1","name":"ehcontrolfinal-dockerfile-syncbatchweb-stress-py-eh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","DeleteAfter":"2025-01-28T22:14:10.9736859Z","BuildId":"","Owners":"","BuildNumber":"","BuildReason":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehcontrolfinal-dockerfile-eventsync-stress-py-eh-1","name":"ehcontrolfinal-dockerfile-eventsync-stress-py-eh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-28T22:14:10.9704653Z","Owners":"","BuildId":"","ServiceDirectory":"/azure/","BuildJob":"","BuildNumber":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehcontrolfinal-dockerfile-bpsync-stress-py-eh-1","name":"ehcontrolfinal-dockerfile-bpsync-stress-py-eh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildNumber":"","BuildReason":"","DeleteAfter":"2025-01-28T22:14:13.0352382Z","Owners":"","BuildJob":"","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehcontrolfinal-dockerfile-batchsync-stress-py-eh-1","name":"ehcontrolfinal-dockerfile-batchsync-stress-py-eh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildJob":"","DeleteAfter":"2025-01-28T22:14:13.5203407Z","Owners":"","BuildReason":"","BuildId":"","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehcontrolfinal-dockerfile-eventasync-stress-py-eh-1","name":"ehcontrolfinal-dockerfile-eventasync-stress-py-eh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","DeleteAfter":"2025-01-28T22:14:13.5841090Z","BuildJob":"","BuildNumber":"","ServiceDirectory":"/azure/","BuildReason":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehcontrolfinal-dockerfile-bplistsync-stress-py-eh-1","name":"ehcontrolfinal-dockerfile-bplistsync-stress-py-eh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildId":"","Owners":"","DeleteAfter":"2025-01-28T22:14:14.0396774Z","BuildNumber":"","ServiceDirectory":"/azure/","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehcontrolfinal-dockerfile-asyncwebsockets-stress-py-eh-1","name":"ehcontrolfinal-dockerfile-asyncwebsockets-stress-py-eh-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","ServiceDirectory":"/azure/","BuildId":"","BuildNumber":"","Owners":"","DeleteAfter":"2025-01-28T22:14:14.1001016Z","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg","name":"mcpatino-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"02/01/2025 00:15:13"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-eventsync-stress-py-eh-6","name":"ehretryfinal-dockerfile-eventsync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildNumber":"","BuildJob":"","ServiceDirectory":"/azure/","BuildReason":"","Owners":"","DeleteAfter":"2025-01-29T16:52:54.7020623Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-batchasync-stress-py-eh-6","name":"ehretryfinal-dockerfile-batchasync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","DeleteAfter":"2025-01-29T16:52:57.7945300Z","BuildNumber":"","Owners":"","BuildReason":"","BuildJob":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-eventasync-stress-py-eh-6","name":"ehretryfinal-dockerfile-eventasync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","Owners":"","BuildReason":"","BuildId":"","ServiceDirectory":"/azure/","DeleteAfter":"2025-01-29T16:52:58.3090280Z","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-batchsync-stress-py-eh-6","name":"ehretryfinal-dockerfile-batchsync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","ServiceDirectory":"/azure/","BuildNumber":"","BuildReason":"","BuildJob":"","BuildId":"","DeleteAfter":"2025-01-29T16:53:22.9439063Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-syncwebsockets-stress-py-eh-6","name":"ehretryfinal-dockerfile-syncwebsockets-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","ServiceDirectory":"/azure/","BuildNumber":"","Owners":"","DeleteAfter":"2025-01-29T16:53:24.6222830Z","BuildJob":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-bplistasync-stress-py-eh-6","name":"ehretryfinal-dockerfile-bplistasync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildJob":"","BuildId":"","ServiceDirectory":"/azure/","DeleteAfter":"2025-01-29T16:53:24.7796237Z","BuildReason":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-asyncwebsockets-stress-py-eh-6","name":"ehretryfinal-dockerfile-asyncwebsockets-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildJob":"","DeleteAfter":"2025-01-29T16:53:24.8559209Z","BuildReason":"","BuildNumber":"","ServiceDirectory":"/azure/","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-bplistsync-stress-py-eh-6","name":"ehretryfinal-dockerfile-bplistsync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildNumber":"","BuildId":"","BuildReason":"","BuildJob":"","ServiceDirectory":"/azure/","DeleteAfter":"2025-01-29T16:53:25.1453362Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-bpsync-stress-py-eh-6","name":"ehretryfinal-dockerfile-bpsync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildId":"","Owners":"","DeleteAfter":"2025-01-29T16:53:25.1594201Z","BuildReason":"","BuildJob":"","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-asyncbatchweb-stress-py-eh-6","name":"ehretryfinal-dockerfile-asyncbatchweb-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-29T16:53:25.2301546Z","ServiceDirectory":"/azure/","BuildJob":"","BuildNumber":"","Owners":"","BuildId":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-bpasync-stress-py-eh-6","name":"ehretryfinal-dockerfile-bpasync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","BuildReason":"","BuildId":"","DeleteAfter":"2025-01-29T16:53:25.4545126Z","Owners":"","BuildJob":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-syncbatchweb-stress-py-eh-6","name":"ehretryfinal-dockerfile-syncbatchweb-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-29T16:53:25.4782304Z","BuildJob":"","ServiceDirectory":"/azure/","BuildReason":"","BuildId":"","BuildNumber":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/AIStudio","name":"AIStudio","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"01/24/2025 00:16:57"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-cntso-network.virtualHub-nvhwaf-rg","name":"dep-cntso-network.virtualHub-nvhwaf-rg","type":"Microsoft.Resources/resourceGroups","location":"eastasia","tags":{"DeleteAfter":"07/09/2024 07:20:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec-service-adoption-mariog","name":"typespec-service-adoption-mariog","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":""," Owners":"marioguerra"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejasearchservice","name":"rg-shrejasearchservice","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"ServiceDirectory":"search","DeleteAfter":"2025-10-23T04:00:14.3477795Z","Owners":"shreja","DoNotDelete":"AI Chat Protocol Demo"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-o12r-max","name":"rg-o12r-max","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter","name":"rg-wb-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wb-devcenter","DeleteAfter":"09/05/2024 23:19:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-1121","name":"rg-jinlong-1121","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/09/2024 12:06:59"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-test-tc-final","name":"rg-test-tc-final","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/10/2024 11:13:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-bicep-registry","name":"rg-wabrez-bicep-registry","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-fenglongdev","name":"rg-fenglongdev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"fenglongdev","DeleteAfter":"12/12/2024 04:18:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xutong-monthly-release-test","name":"xutong-monthly-release-test","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b","name":"cm0ddf918b146443b","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-test-gha","name":"rg-hemarina-test-gha","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"hemarina-test-gha","DeleteAfter":"01/25/2025 20:15:16"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazqu-testing-azd-secret-env","name":"vivazqu-testing-azd-secret-env","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"01/24/2025 04:12:22"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-matell-dev","name":"rg-matell-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"matell-dev","DeleteAfter":"01/31/2025 04:14:13"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets","name":"rg-vivazqu-with-secrets","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vivazqu-with-secrets","secured":"akvs://faa080af-c1d8-40ad-9cce-e1a450ca5b57/vivazqu-secrets/SEC-REF-kv-secret","DeleteAfter":"02/02/2025 04:12:34"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-1233","name":"rg-1233","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"1233","DeleteAfter":"01/23/2025 12:17:16"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jcnew","name":"rg-jcnew","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"jcnew","DeleteAfter":"01/24/2025 00:16:58"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-xiaohua987","name":"rg-xiaohua987","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"xiaohua987","DeleteAfter":"01/24/2025 04:12:28"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mhyu","name":"rg-mhyu","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"mhyu","DeleteAfter":"01/24/2025 04:12:29"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazque-flow-test","name":"vivazque-flow-test","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"01/24/2025 04:12:30"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l024333","name":"rg-azdtest-l024333","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l024333","DeleteAfter":"01/24/2025 04:12:31"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l30da49","name":"rg-azdtest-l30da49","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l30da49","DeleteAfter":"01/24/2025 04:12:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l055386","name":"rg-azdtest-l055386","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l055386"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lbf7104","name":"rg-azdtest-lbf7104","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lbf7104"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l89f88f","name":"rg-azdtest-l89f88f","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l89f88f"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lbda41f","name":"rg-azdtest-lbda41f","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lbda41f"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l55cf60","name":"rg-azdtest-l55cf60","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l55cf60"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l527d06","name":"rg-azdtest-l527d06","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l527d06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l691396","name":"rg-azdtest-l691396","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l691396"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l39c573","name":"rg-azdtest-l39c573","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l39c573"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l6e4b5e","name":"rg-azdtest-l6e4b5e","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l6e4b5e"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kz34-max","name":"rg-kz34-max","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jemew-rg","name":"jemew-rg","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DeleteAfter":"01/25/2025 00:18:54"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/databricks-rg-jemew-databricks-lasiziqqjqk5m","name":"databricks-rg-jemew-databricks-lasiziqqjqk5m","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jemew-rg/providers/Microsoft.Databricks/workspaces/jemew-databricks","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec-ide-telemetry","name":"typespec-ide-telemetry","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-xsh-virtualmachineimages.imagetemplates-vmiitmax-rg","name":"dep-xsh-virtualmachineimages.imagetemplates-vmiitmax-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/11/2024 19:25:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jinlongAZD","name":"jinlongAZD","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"07/12/2025 17:23:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-fenglongfeng","name":"rg-fenglongfeng","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"fenglongfeng","DeleteAfter":"01/01/2025 08:14:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo","name":"mario-typespec-e2e-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{" Owner":"marioguerra","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/joheredi-test","name":"joheredi-test","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/24/2025 04:12:23"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/tjprescott","name":"tjprescott","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/31/2025 20:13:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/anuchan-wm","name":"anuchan-wm","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:15"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen","name":"jeffreychen","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:17"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ahkha-rg","name":"ahkha-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:19"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/test-tc-sdhjk123","name":"test-tc-sdhjk123","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/23/2025 08:15:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan","name":"xiangyan","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/krpratic-rg","name":"krpratic-rg","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dataproduct48702-HostedResources-32E47270","name":"dataproduct48702-HostedResources-32E47270","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg73273/providers/Microsoft.NetworkAnalytics/dataProducts/dataproduct48702","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dataproduct72706-HostedResources-6BE50C22","name":"dataproduct72706-HostedResources-6BE50C22","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg39104/providers/Microsoft.NetworkAnalytics/dataProducts/dataproduct72706","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product89683-HostedResources-6EFC6FE2","name":"product89683-HostedResources-6EFC6FE2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg98573/providers/Microsoft.NetworkAnalytics/dataProducts/product89683","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product56057-HostedResources-081D2AD1","name":"product56057-HostedResources-081D2AD1","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg31226/providers/Microsoft.NetworkAnalytics/dataProducts/product56057","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product52308-HostedResources-5D5C105C","name":"product52308-HostedResources-5D5C105C","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg22243/providers/Microsoft.NetworkAnalytics/dataProducts/product52308","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product09392-HostedResources-6F71BABB","name":"product09392-HostedResources-6F71BABB","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg70288/providers/Microsoft.NetworkAnalytics/dataProducts/product09392","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product4lh001-HostedResources-20AFF06E","name":"product4lh001-HostedResources-20AFF06E","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest02/providers/Microsoft.NetworkAnalytics/dataProducts/product4lh001","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiaofeitest-HostedResources-38FAB8A0","name":"xiaofeitest-HostedResources-38FAB8A0","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-xiaofei/providers/Microsoft.NetworkAnalytics/dataProducts/xiaofeitest","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazeventhubs","name":"rg-riparkazeventhubs","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DeleteAfter":"01/25/2025 04:12:24"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/openai-shared","name":"openai-shared","type":"Microsoft.Resources/resourceGroups","location":"swedencentral","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/wenjiefu","name":"wenjiefu","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DeleteAfter":"07/12/2024 17:23:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chriss","name":"chriss","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-centralus-eus2","name":"ResourceMoverRG-eastus-centralus-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/09/2023 21:30:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mdwgecko","name":"rg-mdwgecko","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/09/2023 21:31:22"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NI_nc-platEng-Dev_eastus2","name":"NI_nc-platEng-Dev_eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/PlatEng-Dev/providers/Microsoft.DevCenter/networkconnections/nc-platEng-Dev","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-contoso-i34nhebbt3526","name":"rg-contoso-i34nhebbt3526","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"devcenter4lh003","DeleteAfter":"11/08/2023 08:09:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdux","name":"azdux","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-devcenter","name":"rg-wabrez-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-devcenter","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-westus2-eus2","name":"ResourceMoverRG-eastus-westus2-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"05/11/2024 19:17:16"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/AzSecPackAutoConfigRG","name":"AzSecPackAutoConfigRG","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-raychen-test-wus","name":"rg-raychen-test-wus","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter ":"2024-12-30T12:30:00.000Z","owner":"raychen","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg40370","name":"rg40370","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/09/2023 21:33:47"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg16812","name":"rg16812","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/09/2023 21:33:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/msolomon-testing","name":"msolomon-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/senyangrg","name":"senyangrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"03/08/2024 00:08:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azsdk-pm-ai","name":"azsdk-pm-ai","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"TypeSpecChannelBot-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/bterlson-cadl","name":"bterlson-cadl","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration","name":"rg-shrejaappconfiguration","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-12-24T05:11:17.9627286Z","Owners":"shreja","ServiceDirectory":"appconfiguration"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc88170fa","name":"rgloc88170fa","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc0890584","name":"rgloc0890584","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llawrence-rg","name":"llawrence-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"11/23/2024 00:21:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazservicebus","name":"rg-riparkazservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"messaging/azservicebus","Owners":"ripark","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkaznamespaces","name":"rg-riparkaznamespaces","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"messaging/eventgrid/aznamespaces","Owners":"ripark","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-swathipstorage","name":"rg-swathipstorage","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"storage","Owners":"swathip","DeleteAfter":"2025-01-26T22:17:50.4296899Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-177","name":"go-sdk-test-177","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/23/2025 08:15:38"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceeventhub","name":"rg-llawrenceeventhub","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-27T17:50:31.2824952Z","ServiceDirectory":"eventhub","Owners":"llawrence"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chloweazbatch","name":"rg-chloweazbatch","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"chlowe","DeleteAfter":"2025-01-27T19:26:00.9112619Z","ServiceDirectory":"batch/azbatch"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceservicebus","name":"rg-llawrenceservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-29T18:30:38.8051026Z","ServiceDirectory":"servicebus","Owners":"llawrence"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-swathipservicebus","name":"rg-swathipservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"servicebus","Owners":"swathip","DeleteAfter":"2025-01-27T23:21:49.2553458Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kashifkhanservicebus","name":"rg-kashifkhanservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-27T23:34:41.3453953Z","Owners":"kashifkhan","ServiceDirectory":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-conniey-eh0","name":"rg-conniey-eh0","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-28T20:31:01.5670010Z","ServiceDirectory":"eventhubs","Owners":"conniey"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-conniey-eh01","name":"rg-conniey-eh01","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-28T22:27:57.5082464Z","Owners":"conniey","ServiceDirectory":"eventhubs"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-benappconfiguration","name":"rg-benappconfiguration","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ben","ServiceDirectory":"appconfiguration","DeleteAfter":"2025-01-29T20:57:45.8764493Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazeventhubs2","name":"rg-riparkazeventhubs2","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ripark","ServiceDirectory":"messaging/azeventhubs","DeleteAfter":"2025-01-29T22:13:48.6457998Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-conniey-eh02","name":"rg-conniey-eh02","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"conniey","ServiceDirectory":"eventhubs","DeleteAfter":"2025-01-29T23:11:13.4589864Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg","name":"rg-stress-secrets-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg","name":"rg-stress-cluster-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-nodes-s1-stress-pg-pg","name":"rg-nodes-s1-stress-pg-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-stress-cluster-pg/providers/Microsoft.ContainerService/managedClusters/stress-pg","tags":{"DoNotDelete":"","aks-managed-cluster-name":"stress-pg","aks-managed-cluster-rg":"rg-stress-cluster-pg","environment":"pg","owners":"bebroder, albertcheng"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdev-dev","name":"rg-azdev-dev","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","product":"azdev","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan-search","name":"xiangyan-search","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan-apiview-gpt","name":"xiangyan-apiview-gpt","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-sdk-dotnet","name":"jsquire-sdk-dotnet","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"purpose":"local development","owner":"Jesse Squire","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/billwert-acrrg","name":"billwert-acrrg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"2025-02-05T19:08:55.2162878Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/antisch-cmtest","name":"antisch-cmtest","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vigera-group","name":"vigera-group","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"01/26/2025 20:15:08"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/yumeng-js-test","name":"yumeng-js-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"01/28/2025 00:14:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119","name":"sameal-rg-0119","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"01/30/2025 00:14:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-queuew-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-queuew-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildId":"","ServiceDirectory":"/azure/","BuildNumber":"","DeleteAfter":"2025-01-28T17:38:02.4681872Z","BuildJob":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-aqueuepullw-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-aqueuepullw-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildNumber":"","Owners":"","DeleteAfter":"2025-01-28T17:38:02.5996863Z","ServiceDirectory":"/azure/","BuildJob":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-batchw-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-batchw-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","ServiceDirectory":"/azure/","BuildNumber":"","DeleteAfter":"2025-01-28T17:38:02.6956727Z","Owners":"","BuildId":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-batch-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-batch-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-28T17:38:02.9712344Z","BuildId":"","BuildJob":"","BuildReason":"","Owners":"","BuildNumber":"","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-aqueuepull-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-aqueuepull-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildReason":"","BuildId":"","Owners":"","ServiceDirectory":"/azure/","DeleteAfter":"2025-01-28T17:38:03.0072814Z","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-aqueue-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-aqueue-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildNumber":"","DeleteAfter":"2025-01-28T17:38:03.2165486Z","ServiceDirectory":"/azure/","Owners":"","BuildReason":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-aqueuew-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-aqueuew-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildReason":"","Owners":"","DeleteAfter":"2025-01-28T17:38:03.3367512Z","BuildId":"","ServiceDirectory":"/azure/","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-queuepull-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-queuepull-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","ServiceDirectory":"/azure/","Owners":"","BuildNumber":"","BuildJob":"","DeleteAfter":"2025-01-28T17:38:02.8532792Z","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-queue-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-queue-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","DeleteAfter":"2025-01-28T17:38:04.0233723Z","BuildJob":"","BuildId":"","BuildReason":"","Owners":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-abatchw-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-abatchw-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildId":"","DeleteAfter":"2025-01-28T17:38:04.3146253Z","BuildNumber":"","BuildReason":"","ServiceDirectory":"/azure/","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-queuepullw-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-queuepullw-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","ServiceDirectory":"/azure/","DeleteAfter":"2025-01-28T17:38:04.1130514Z","Owners":"","BuildJob":"","BuildNumber":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-abatch-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-abatch-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildJob":"","ServiceDirectory":"/azure/","BuildId":"","BuildNumber":"","DeleteAfter":"2025-01-28T17:38:04.8326422Z","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-aqueuepull-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-aqueuepull-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildId":"","DeleteAfter":"2025-01-28T17:41:53.1767113Z","ServiceDirectory":"/azure/","BuildReason":"","BuildNumber":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-batch-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-batch-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-28T17:41:53.4538813Z","BuildId":"","BuildReason":"","ServiceDirectory":"/azure/","BuildJob":"","Owners":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-abatchw-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-abatchw-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","BuildJob":"","BuildReason":"","BuildNumber":"","BuildId":"","DeleteAfter":"2025-01-28T17:41:54.1737440Z","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-queue-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-queue-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","Owners":"","BuildReason":"","BuildNumber":"","DeleteAfter":"2025-01-28T17:41:53.8610621Z","BuildId":"","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-aqueue-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-aqueue-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","Owners":"","ServiceDirectory":"/azure/","BuildId":"","BuildReason":"","BuildNumber":"","DeleteAfter":"2025-01-28T17:41:54.3781896Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-queuew-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-queuew-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","DeleteAfter":"2025-01-28T17:41:53.9485761Z","BuildReason":"","ServiceDirectory":"/azure/","BuildJob":"","Owners":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-batchw-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-batchw-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","BuildReason":"","DeleteAfter":"2025-01-28T17:41:54.3337634Z","BuildJob":"","BuildNumber":"","BuildId":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-queuepull-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-queuepull-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildReason":"","Owners":"","BuildNumber":"","BuildJob":"","DeleteAfter":"2025-01-28T17:41:54.3198437Z","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-aqueuepullw-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-aqueuepullw-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildId":"","Owners":"","BuildReason":"","DeleteAfter":"2025-01-28T17:41:54.5404984Z","BuildNumber":"","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-abatch-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-abatch-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-28T17:41:54.5649789Z","BuildJob":"","BuildNumber":"","BuildReason":"","Owners":"","ServiceDirectory":"/azure/","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-aqueuew-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-aqueuew-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildReason":"","ServiceDirectory":"/azure/","Owners":"","BuildNumber":"","BuildId":"","DeleteAfter":"2025-01-28T17:41:54.8005523Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-queuepullw-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-queuepullw-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildReason":"","Owners":"","ServiceDirectory":"/azure/","BuildJob":"","BuildNumber":"","DeleteAfter":"2025-01-28T17:41:55.3671020Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv","name":"rg-weilim-env-kv","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"01/31/2025 20:13:39"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg","name":"mcpatino-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"02/01/2025 00:15:13"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-batchasync-stress-py-eh-6","name":"ehretryfinal-dockerfile-batchasync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","DeleteAfter":"2025-01-29T16:52:57.7945300Z","BuildNumber":"","Owners":"","BuildReason":"","BuildJob":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-eventasync-stress-py-eh-6","name":"ehretryfinal-dockerfile-eventasync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","Owners":"","BuildReason":"","BuildId":"","ServiceDirectory":"/azure/","DeleteAfter":"2025-01-29T16:52:58.3090280Z","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-batchsync-stress-py-eh-6","name":"ehretryfinal-dockerfile-batchsync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","ServiceDirectory":"/azure/","BuildNumber":"","BuildReason":"","BuildJob":"","BuildId":"","DeleteAfter":"2025-01-29T16:53:22.9439063Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-syncwebsockets-stress-py-eh-6","name":"ehretryfinal-dockerfile-syncwebsockets-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","ServiceDirectory":"/azure/","BuildNumber":"","Owners":"","DeleteAfter":"2025-01-29T16:53:24.6222830Z","BuildJob":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-bplistasync-stress-py-eh-6","name":"ehretryfinal-dockerfile-bplistasync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildJob":"","BuildId":"","ServiceDirectory":"/azure/","DeleteAfter":"2025-01-29T16:53:24.7796237Z","BuildReason":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-asyncwebsockets-stress-py-eh-6","name":"ehretryfinal-dockerfile-asyncwebsockets-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildJob":"","DeleteAfter":"2025-01-29T16:53:24.8559209Z","BuildReason":"","BuildNumber":"","ServiceDirectory":"/azure/","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-bplistsync-stress-py-eh-6","name":"ehretryfinal-dockerfile-bplistsync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildNumber":"","BuildId":"","BuildReason":"","BuildJob":"","ServiceDirectory":"/azure/","DeleteAfter":"2025-01-29T16:53:25.1453362Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-bpsync-stress-py-eh-6","name":"ehretryfinal-dockerfile-bpsync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildId":"","Owners":"","DeleteAfter":"2025-01-29T16:53:25.1594201Z","BuildReason":"","BuildJob":"","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-asyncbatchweb-stress-py-eh-6","name":"ehretryfinal-dockerfile-asyncbatchweb-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-29T16:53:25.2301546Z","ServiceDirectory":"/azure/","BuildJob":"","BuildNumber":"","Owners":"","BuildId":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-bpasync-stress-py-eh-6","name":"ehretryfinal-dockerfile-bpasync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","BuildReason":"","BuildId":"","DeleteAfter":"2025-01-29T16:53:25.4545126Z","Owners":"","BuildJob":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-syncbatchweb-stress-py-eh-6","name":"ehretryfinal-dockerfile-syncbatchweb-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-29T16:53:25.4782304Z","BuildJob":"","ServiceDirectory":"/azure/","BuildReason":"","BuildId":"","BuildNumber":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-sarajama-3688_ai","name":"rg-sarajama-3688_ai","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"02/02/2025 16:15:26"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-unique-eventhub.namespaces-ehnkv-rg","name":"dep-unique-eventhub.namespaces-ehnkv-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"01/25/2025 04:12:25"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-unique-servicebus.namespaces-sbnkv-rg","name":"dep-unique-servicebus.namespaces-sbnkv-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"01/25/2025 04:12:26"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-cntso-network.virtualHub-nvhwaf-rg","name":"dep-cntso-network.virtualHub-nvhwaf-rg","type":"Microsoft.Resources/resourceGroups","location":"eastasia","tags":{"DeleteAfter":"07/09/2024 07:20:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec-service-adoption-mariog","name":"typespec-service-adoption-mariog","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":""," Owners":"marioguerra"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejasearchservice","name":"rg-shrejasearchservice","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"ServiceDirectory":"search","DeleteAfter":"2025-10-23T04:00:14.3477795Z","Owners":"shreja","DoNotDelete":"AI Chat Protocol Demo"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-o12r-max","name":"rg-o12r-max","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter","name":"rg-wb-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wb-devcenter","DeleteAfter":"09/05/2024 23:19:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-1121","name":"rg-jinlong-1121","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/09/2024 12:06:59"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-test-tc-final","name":"rg-test-tc-final","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/10/2024 11:13:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-bicep-registry","name":"rg-wabrez-bicep-registry","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-fenglongdev","name":"rg-fenglongdev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"fenglongdev","DeleteAfter":"12/12/2024 04:18:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xutong-monthly-release-test","name":"xutong-monthly-release-test","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b","name":"cm0ddf918b146443b","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-test-gha","name":"rg-hemarina-test-gha","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"hemarina-test-gha","DeleteAfter":"01/25/2025 20:15:16"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-matell-dev","name":"rg-matell-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"matell-dev","DeleteAfter":"01/31/2025 04:14:13"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets","name":"rg-vivazqu-with-secrets","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vivazqu-with-secrets","secured":"akvs://faa080af-c1d8-40ad-9cce-e1a450ca5b57/vivazqu-secrets/SEC-REF-kv-secret","DeleteAfter":"02/02/2025 04:12:34"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jcnew","name":"rg-jcnew","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"jcnew","DeleteAfter":"01/25/2025 20:10:41"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kz34-max","name":"rg-kz34-max","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec-ide-telemetry","name":"typespec-ide-telemetry","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-xsh-virtualmachineimages.imagetemplates-vmiitmax-rg","name":"dep-xsh-virtualmachineimages.imagetemplates-vmiitmax-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/11/2024 19:25:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jinlongAZD","name":"jinlongAZD","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"07/12/2025 17:23:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-fenglongfeng","name":"rg-fenglongfeng","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"fenglongfeng","DeleteAfter":"01/01/2025 08:14:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo","name":"mario-typespec-e2e-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{" Owner":"marioguerra","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/tjprescott","name":"tjprescott","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/31/2025 20:13:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/anuchan-wm","name":"anuchan-wm","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:15"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen","name":"jeffreychen","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:17"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ahkha-rg","name":"ahkha-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:19"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai","name":"rg-rajeshkamal-6661_ai","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/02/2025 20:12:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-335","name":"go-sdk-test-335","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/25/2025 04:12:27"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-79","name":"go-sdk-test-79","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/25/2025 04:12:29"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-806","name":"go-sdk-test-806","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/25/2025 04:12:30"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan","name":"xiangyan","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/krpratic-rg","name":"krpratic-rg","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "54955" + - "45431" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:47:16 GMT + - Sat, 25 Jan 2025 02:22:57 GMT Expires: - "-1" Pragma: @@ -194,20 +194,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 580f5461e559c6bdc2594f1ab046e050 + - 5bcf89daa4d1246a568f5cd429c2a56d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 864eb67f-bc24-4255-bc70-8e047045d248 + - c436522b-70fb-476e-afd0-041d9b99d17b X-Ms-Routing-Request-Id: - - WESTUS:20250123T054716Z:864eb67f-bc24-4255-bc70-8e047045d248 + - WESTUS2:20250125T022257Z:c436522b-70fb-476e-afd0-041d9b99d17b X-Msedge-Ref: - - 'Ref A: A26D0B11D680473D9214F6A329E119B7 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:47:16Z' + - 'Ref A: 2F3383618B8F4607BAA2D1B2F0E6905E Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:22:57Z' status: 200 OK code: 200 - duration: 211.093941ms + duration: 65.616859ms - id: 3 request: proto: HTTP/1.1 @@ -235,8 +235,8 @@ interactions: User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 580f5461e559c6bdc2594f1ab046e050 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/azdtest-lbaeec6-rg?api-version=2021-04-01 + - 5bcf89daa4d1246a568f5cd429c2a56d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/azdtest-l415a1d-rg?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -246,7 +246,7 @@ interactions: trailer: {} content_length: 244 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg","name":"azdtest-lbaeec6-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg","name":"azdtest-l415a1d-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}}' headers: Cache-Control: - no-cache @@ -255,7 +255,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:47:20 GMT + - Sat, 25 Jan 2025 02:22:58 GMT Expires: - "-1" Pragma: @@ -267,20 +267,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 580f5461e559c6bdc2594f1ab046e050 + - 5bcf89daa4d1246a568f5cd429c2a56d X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 50625742-9dc0-401b-8b8d-62ba1350e292 + - 58cb26c2-45e5-4a25-ac00-be643963710a X-Ms-Routing-Request-Id: - - WESTUS2:20250123T054720Z:50625742-9dc0-401b-8b8d-62ba1350e292 + - WESTUS2:20250125T022258Z:58cb26c2-45e5-4a25-ac00-be643963710a X-Msedge-Ref: - - 'Ref A: C35636C02A1C4DAE890A6A023BFA7AE1 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:47:16Z' + - 'Ref A: 9589EA321FB44C2688013B1E7F0E049D Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:22:57Z' status: 201 Created code: 201 - duration: 3.840292602s + duration: 901.16486ms - id: 4 request: proto: HTTP/1.1 @@ -308,8 +308,8 @@ interactions: User-Agent: - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 580f5461e559c6bdc2594f1ab046e050 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva?api-version=2023-07-01 + - 5bcf89daa4d1246a568f5cd429c2a56d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg/providers/Microsoft.KeyVault/vaults/azdtest-l415a1d-kva?api-version=2023-07-01 method: PUT response: proto: HTTP/2.0 @@ -319,7 +319,7 @@ interactions: trailer: {} content_length: 836 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva","name":"azdtest-lbaeec6-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-23T05:47:22.299Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-23T05:47:22.299Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-lbaeec6-kva.vault.azure.net","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg/providers/Microsoft.KeyVault/vaults/azdtest-l415a1d-kva","name":"azdtest-l415a1d-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-25T02:23:00.046Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-25T02:23:00.046Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-l415a1d-kva.vault.azure.net","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' headers: Cache-Control: - no-cache @@ -328,7 +328,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:47:23 GMT + - Sat, 25 Jan 2025 02:23:01 GMT Expires: - "-1" Pragma: @@ -342,9 +342,9 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Client-Request-Id: - - 9e03b27f-5301-445e-aa1a-369bcca4e398 + - 730065a2-add3-4572-98aa-37c58a1974e5 X-Ms-Correlation-Request-Id: - - 580f5461e559c6bdc2594f1ab046e050 + - 5bcf89daa4d1246a568f5cd429c2a56d X-Ms-Keyvault-Service-Version: - 1.5.1455.0 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: @@ -352,14 +352,14 @@ interactions: X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 4fc23fb5-81b9-43ee-851d-d6241ba7dd59 + - 3deb0530-c73c-40eb-be58-02ffb384a8c8 X-Ms-Routing-Request-Id: - - WESTUS2:20250123T054724Z:f0c0fe94-4f68-4118-8e78-f94e19a43819 + - WESTUS2:20250125T022301Z:3f7fbdeb-dcdd-4964-ad65-14836d9d6c26 X-Msedge-Ref: - - 'Ref A: 591B6C0572B04BD19C00E17245656B79 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:47:20Z' + - 'Ref A: 2E864EA23C1A4B44ABBEB1635D406294 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:22:58Z' status: 200 OK code: 200 - duration: 3.475471315s + duration: 3.258057201s - id: 5 request: proto: HTTP/1.1 @@ -381,8 +381,8 @@ interactions: User-Agent: - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 580f5461e559c6bdc2594f1ab046e050 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva?api-version=2023-07-01 + - 5bcf89daa4d1246a568f5cd429c2a56d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg/providers/Microsoft.KeyVault/vaults/azdtest-l415a1d-kva?api-version=2023-07-01 method: GET response: proto: HTTP/2.0 @@ -392,7 +392,7 @@ interactions: trailer: {} content_length: 837 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva","name":"azdtest-lbaeec6-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-23T05:47:22.299Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-23T05:47:22.299Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-lbaeec6-kva.vault.azure.net/","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg/providers/Microsoft.KeyVault/vaults/azdtest-l415a1d-kva","name":"azdtest-l415a1d-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-25T02:23:00.046Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-25T02:23:00.046Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-l415a1d-kva.vault.azure.net/","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' headers: Cache-Control: - no-cache @@ -401,7 +401,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:47:24 GMT + - Sat, 25 Jan 2025 02:23:01 GMT Expires: - "-1" Pragma: @@ -415,9 +415,9 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Client-Request-Id: - - 776cddbe-3967-479b-ab3a-ca3dd154b947 + - c03ab2ec-51c9-434a-b0ae-39bc45c48d9c X-Ms-Correlation-Request-Id: - - 580f5461e559c6bdc2594f1ab046e050 + - 5bcf89daa4d1246a568f5cd429c2a56d X-Ms-Keyvault-Service-Version: - 1.5.1455.0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: @@ -425,14 +425,14 @@ interactions: X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - a7e77882-6e60-4075-b82a-044ee8689620 + - de683afb-92ff-4051-a36b-c28ba4ebb6ce X-Ms-Routing-Request-Id: - - WESTUS2:20250123T054724Z:5d5384e0-983f-40cf-8097-03afb4463c4e + - WESTUS2:20250125T022301Z:e8158a5e-65b0-4141-8763-7c2e162c6a1b X-Msedge-Ref: - - 'Ref A: 08A5992E4E4E440BAB821319717848BF Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:47:24Z' + - 'Ref A: A7D08AC4D84740E7A15F9D53B1C1FAA4 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:23:01Z' status: 200 OK code: 200 - duration: 204.463831ms + duration: 247.33417ms - id: 6 request: proto: HTTP/1.1 @@ -454,8 +454,8 @@ interactions: User-Agent: - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 580f5461e559c6bdc2594f1ab046e050 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva?api-version=2023-07-01 + - 5bcf89daa4d1246a568f5cd429c2a56d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg/providers/Microsoft.KeyVault/vaults/azdtest-l415a1d-kva?api-version=2023-07-01 method: GET response: proto: HTTP/2.0 @@ -465,7 +465,7 @@ interactions: trailer: {} content_length: 832 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva","name":"azdtest-lbaeec6-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-23T05:47:22.299Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-23T05:47:22.299Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-lbaeec6-kva.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg/providers/Microsoft.KeyVault/vaults/azdtest-l415a1d-kva","name":"azdtest-l415a1d-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-25T02:23:00.046Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-25T02:23:00.046Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-l415a1d-kva.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' headers: Cache-Control: - no-cache @@ -474,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:47:54 GMT + - Sat, 25 Jan 2025 02:23:31 GMT Expires: - "-1" Pragma: @@ -488,9 +488,9 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Client-Request-Id: - - 1f50feab-16a8-4f60-a456-d548b1245c00 + - de0be649-0578-4670-a926-a643bd39b6d2 X-Ms-Correlation-Request-Id: - - 580f5461e559c6bdc2594f1ab046e050 + - 5bcf89daa4d1246a568f5cd429c2a56d X-Ms-Keyvault-Service-Version: - 1.5.1455.0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: @@ -498,14 +498,14 @@ interactions: X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - ba375d00-bc9a-44e2-a7a6-db35208aae12 + - 198b724c-700b-471f-bf34-6456fb7e1c90 X-Ms-Routing-Request-Id: - - WESTUS2:20250123T054754Z:c5d773d8-62c8-425a-902b-101b576f8334 + - WESTUS2:20250125T022332Z:547be095-19d0-47a9-9ab7-7484e51597c6 X-Msedge-Ref: - - 'Ref A: 3FF2130F90844F27AFF1F38A254F5265 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:47:54Z' + - 'Ref A: 1FA4D15C2EED44EFBE8112E0837DB0D7 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:23:31Z' status: 200 OK code: 200 - duration: 191.505911ms + duration: 230.905119ms - id: 7 request: proto: HTTP/1.1 @@ -533,8 +533,8 @@ interactions: User-Agent: - azsdk-go-armauthorization.RoleAssignmentsClient/v2.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 580f5461e559c6bdc2594f1ab046e050 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva/providers/Microsoft.Authorization/roleAssignments/e3a866f2-e948-46fc-aaad-b1202531c504?api-version=2022-04-01 + - 5bcf89daa4d1246a568f5cd429c2a56d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg/providers/Microsoft.KeyVault/vaults/azdtest-l415a1d-kva/providers/Microsoft.Authorization/roleAssignments/4b07af59-ec30-42e7-9fc3-7b2c1760866e?api-version=2022-04-01 method: PUT response: proto: HTTP/2.0 @@ -544,7 +544,7 @@ interactions: trailer: {} content_length: 991 uncompressed: false - body: '{"properties":{"roleDefinitionId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483","principalId":"62661785-adcf-4117-b9d0-22b3aa2b4ebf","principalType":"User","scope":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva","condition":null,"conditionVersion":null,"createdOn":"2025-01-23T05:47:55.9765927Z","updatedOn":"2025-01-23T05:47:56.2065979Z","createdBy":null,"updatedBy":"62661785-adcf-4117-b9d0-22b3aa2b4ebf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva/providers/Microsoft.Authorization/roleAssignments/e3a866f2-e948-46fc-aaad-b1202531c504","type":"Microsoft.Authorization/roleAssignments","name":"e3a866f2-e948-46fc-aaad-b1202531c504"}' + body: '{"properties":{"roleDefinitionId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483","principalId":"62661785-adcf-4117-b9d0-22b3aa2b4ebf","principalType":"User","scope":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg/providers/Microsoft.KeyVault/vaults/azdtest-l415a1d-kva","condition":null,"conditionVersion":null,"createdOn":"2025-01-25T02:23:33.0861421Z","updatedOn":"2025-01-25T02:23:33.2931433Z","createdBy":null,"updatedBy":"62661785-adcf-4117-b9d0-22b3aa2b4ebf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg/providers/Microsoft.KeyVault/vaults/azdtest-l415a1d-kva/providers/Microsoft.Authorization/roleAssignments/4b07af59-ec30-42e7-9fc3-7b2c1760866e","type":"Microsoft.Authorization/roleAssignments","name":"4b07af59-ec30-42e7-9fc3-7b2c1760866e"}' headers: Cache-Control: - no-cache @@ -553,7 +553,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:01 GMT + - Sat, 25 Jan 2025 02:23:36 GMT Expires: - "-1" Pragma: @@ -565,20 +565,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 580f5461e559c6bdc2594f1ab046e050 + - 5bcf89daa4d1246a568f5cd429c2a56d X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 86284f23-6e85-4b22-91ab-33eb83865dcc + - d0080ca1-5e2b-440a-8200-613ef709f610 X-Ms-Routing-Request-Id: - - WESTUS2:20250123T054801Z:a65e468a-3ded-468d-9baa-31ac188caaf3 + - WESTUS2:20250125T022336Z:6b0e8328-5fd4-4acf-ad61-40c822bdd197 X-Msedge-Ref: - - 'Ref A: D7B1FF7CF864498EB8FBCD9F47D6E180 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:47:55Z' + - 'Ref A: 4229EB88081F48FF94A70F1AE1A0AE6A Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:23:32Z' status: 201 Created code: 201 - duration: 6.507254856s + duration: 3.746830906s - id: 8 request: proto: HTTP/1.1 @@ -587,7 +587,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -604,8 +604,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 580f5461e559c6bdc2594f1ab046e050 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs?api-version=7.4 + - 5bcf89daa4d1246a568f5cd429c2a56d + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs?api-version=7.4 method: PUT response: proto: HTTP/1.1 @@ -624,7 +624,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:01 GMT + - Sat, 25 Jan 2025 02:23:36 GMT Expires: - "-1" Pragma: @@ -636,16 +636,16 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 7409ce4b-f5d7-47e5-bc3a-171894504af5 + - 1d0367d5-1db5-4d83-aa19-e4abf91ae691 status: 401 Unauthorized code: 401 - duration: 371.055002ms + duration: 418.552531ms - id: 9 request: proto: HTTP/1.1 @@ -654,7 +654,7 @@ interactions: content_length: 36 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: '{"value":"THIS IS THE SECRET VALUE"}' @@ -673,8 +673,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 580f5461e559c6bdc2594f1ab046e050 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs?api-version=7.4 + - 5bcf89daa4d1246a568f5cd429c2a56d + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs?api-version=7.4 method: PUT response: proto: HTTP/1.1 @@ -682,18 +682,18 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 281 + content_length: 794 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs/5bc2758020f4459cb06ee40f112482ab","attributes":{"enabled":true,"created":1737611282,"updated":1737611282,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"error":{"code":"Forbidden","message":"Caller is not authorized to perform action on resource.\r\nIf role assignments, deny assignments or role definitions were changed recently, please observe propagation time.\r\nCaller: appid=04b07795-8ddb-461a-bbee-02f9e1bf7b46;oid=62661785-adcf-4117-b9d0-22b3aa2b4ebf;iss=https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\r\nAction: ''Microsoft.KeyVault/vaults/secrets/setSecret/action''\r\nResource: ''/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/azdtest-l415a1d-rg/providers/microsoft.keyvault/vaults/azdtest-l415a1d-kva/secrets/azdtest-l415a1d-kvs''\r\nAssignment: (not found)\r\nDenyAssignmentId: null\r\nDecisionReason: null \r\nVault: azdtest-l415a1d-kva;location=eastus2\r\n","innererror":{"code":"ForbiddenByRbac"}}}' headers: Cache-Control: - no-cache Content-Length: - - "281" + - "794" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:01 GMT + - Sat, 25 Jan 2025 02:23:37 GMT Expires: - "-1" Pragma: @@ -703,18 +703,16 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; - X-Ms-Keyvault-Rbac-Assignment-Id: - - e3a866f2e94846fcaaadb1202531c504 + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - a09ad22d-5086-4e87-8d80-506bc8f9d636 - status: 200 OK - code: 200 - duration: 236.181683ms + - 87cbccf7-37e2-483b-be9b-77ce266b5bf2 + status: 403 Forbidden + code: 403 + duration: 187.286811ms - id: 10 request: proto: HTTP/1.1 @@ -723,7 +721,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -735,12 +733,14 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "0" User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - c0b8007888d52dadaf8aa483b29580c0 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 - method: GET + - 5bcf89daa4d1246a568f5cd429c2a56d + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs?api-version=7.4 + method: PUT response: proto: HTTP/1.1 proto_major: 1 @@ -758,7 +758,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:02 GMT + - Sat, 25 Jan 2025 02:23:42 GMT Expires: - "-1" Pragma: @@ -770,17 +770,84 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 8c54e806-4f35-4097-aabd-755271a46bdd + - ddee97b7-dfe5-44c4-8d3e-a8deb649a2f6 status: 401 Unauthorized code: 401 - duration: 85.82064ms + duration: 80.779234ms - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 36 + transfer_encoding: [] + trailer: {} + host: azdtest-l415a1d-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: '{"value":"THIS IS THE SECRET VALUE"}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "36" + Content-Type: + - application/json + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 5bcf89daa4d1246a568f5cd429c2a56d + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs?api-version=7.4 + method: PUT + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 794 + uncompressed: false + body: '{"error":{"code":"Forbidden","message":"Caller is not authorized to perform action on resource.\r\nIf role assignments, deny assignments or role definitions were changed recently, please observe propagation time.\r\nCaller: appid=04b07795-8ddb-461a-bbee-02f9e1bf7b46;oid=62661785-adcf-4117-b9d0-22b3aa2b4ebf;iss=https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\r\nAction: ''Microsoft.KeyVault/vaults/secrets/setSecret/action''\r\nResource: ''/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/azdtest-l415a1d-rg/providers/microsoft.keyvault/vaults/azdtest-l415a1d-kva/secrets/azdtest-l415a1d-kvs''\r\nAssignment: (not found)\r\nDenyAssignmentId: null\r\nDecisionReason: null \r\nVault: azdtest-l415a1d-kva;location=eastus2\r\n","innererror":{"code":"ForbiddenByRbac"}}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "794" + Content-Type: + - application/json; charset=utf-8 + Date: + - Sat, 25 Jan 2025 02:23:42 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - 15fb5c2e-0ce2-4cc5-a376-5d635fb117f5 + status: 403 Forbidden + code: 403 + duration: 80.044835ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -788,7 +855,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -800,12 +867,83 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "0" User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - c0b8007888d52dadaf8aa483b29580c0 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 - method: GET + - 5bcf89daa4d1246a568f5cd429c2a56d + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs?api-version=7.4 + method: PUT + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 97 + uncompressed: false + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "97" + Content-Type: + - application/json; charset=utf-8 + Date: + - Sat, 25 Jan 2025 02:23:47 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + Www-Authenticate: + - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - 191f357e-97dd-47f2-8ec0-6cb11b15c980 + status: 401 Unauthorized + code: 401 + duration: 82.39083ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 36 + transfer_encoding: [] + trailer: {} + host: azdtest-l415a1d-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: '{"value":"THIS IS THE SECRET VALUE"}' + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + Content-Length: + - "36" + Content-Type: + - application/json + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 5bcf89daa4d1246a568f5cd429c2a56d + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs?api-version=7.4 + method: PUT response: proto: HTTP/1.1 proto_major: 1 @@ -814,7 +952,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs/5bc2758020f4459cb06ee40f112482ab","attributes":{"enabled":true,"created":1737611282,"updated":1737611282,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs/2c0c7d0ae553496ea7be8a08c48357c7","attributes":{"enabled":true,"created":1737771827,"updated":1737771827,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -823,7 +961,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:02 GMT + - Sat, 25 Jan 2025 02:23:47 GMT Expires: - "-1" Pragma: @@ -833,19 +971,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - e3a866f2e94846fcaaadb1202531c504 + - 4b07af59ec3042e79fc37b2c1760866e X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 5895eaa0-9fb0-45b8-8b34-0a5d065b509b + - 662ba6e1-c687-4a41-b2c6-51ebd43b6cd9 status: 200 OK code: 200 - duration: 108.721777ms - - id: 12 + duration: 414.605247ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -853,7 +991,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -868,8 +1006,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - c0b8007888d52dadaf8aa483b29580c0 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 + - 983cefcee051f8a08a9fd3b92a1d5620 + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -888,7 +1026,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:05 GMT + - Sat, 25 Jan 2025 02:23:51 GMT Expires: - "-1" Pragma: @@ -900,17 +1038,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 4cf3ad61-a5da-410f-b59a-1f4797aac706 + - ad279f6b-a215-402b-8ac1-a1e8ff7a7acc status: 401 Unauthorized code: 401 - duration: 86.630041ms - - id: 13 + duration: 80.749034ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -918,7 +1056,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -933,8 +1071,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - c0b8007888d52dadaf8aa483b29580c0 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 + - 983cefcee051f8a08a9fd3b92a1d5620 + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -944,7 +1082,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs/5bc2758020f4459cb06ee40f112482ab","attributes":{"enabled":true,"created":1737611282,"updated":1737611282,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs/2c0c7d0ae553496ea7be8a08c48357c7","attributes":{"enabled":true,"created":1737771827,"updated":1737771827,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -953,7 +1091,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:05 GMT + - Sat, 25 Jan 2025 02:23:51 GMT Expires: - "-1" Pragma: @@ -963,19 +1101,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - e3a866f2e94846fcaaadb1202531c504 + - 4b07af59ec3042e79fc37b2c1760866e X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 3cc240fa-a5ea-4b8e-906e-d240e4b77849 + - 532462cb-8eab-4d30-bbf1-2b19ec760ccd status: 200 OK code: 200 - duration: 106.527073ms - - id: 14 + duration: 102.21249ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -998,7 +1136,7 @@ interactions: User-Agent: - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - c0b8007888d52dadaf8aa483b29580c0 + - 983cefcee051f8a08a9fd3b92a1d5620 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -1018,7 +1156,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:08 GMT + - Sat, 25 Jan 2025 02:23:53 GMT Expires: - "-1" Pragma: @@ -1030,21 +1168,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c0b8007888d52dadaf8aa483b29580c0 + - 983cefcee051f8a08a9fd3b92a1d5620 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 42e6aa45-4559-41d1-9443-2234d3544496 + - 92b0b399-af65-40eb-881f-d9bb6c73ca9a X-Ms-Routing-Request-Id: - - WESTUS2:20250123T054808Z:42e6aa45-4559-41d1-9443-2234d3544496 + - WESTUS2:20250125T022354Z:92b0b399-af65-40eb-881f-d9bb6c73ca9a X-Msedge-Ref: - - 'Ref A: A3D6596D31994E1093632E709DDBFCD8 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:06Z' + - 'Ref A: 56E16531F2004910893ED40288334993 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:23:51Z' status: 200 OK code: 200 - duration: 2.71633801s - - id: 15 + duration: 2.278095039s + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -1052,7 +1190,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1067,8 +1205,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - c0b8007888d52dadaf8aa483b29580c0 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 + - 983cefcee051f8a08a9fd3b92a1d5620 + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -1087,7 +1225,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:08 GMT + - Sat, 25 Jan 2025 02:23:54 GMT Expires: - "-1" Pragma: @@ -1099,17 +1237,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - bf8bdc89-c0e8-4059-9501-a9d45b5bf521 + - 22651574-e932-4565-9457-06a5c9081995 status: 401 Unauthorized code: 401 - duration: 81.771133ms - - id: 16 + duration: 79.832936ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -1117,7 +1255,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1132,8 +1270,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - c0b8007888d52dadaf8aa483b29580c0 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 + - 983cefcee051f8a08a9fd3b92a1d5620 + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -1143,7 +1281,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs/5bc2758020f4459cb06ee40f112482ab","attributes":{"enabled":true,"created":1737611282,"updated":1737611282,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs/2c0c7d0ae553496ea7be8a08c48357c7","attributes":{"enabled":true,"created":1737771827,"updated":1737771827,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -1152,7 +1290,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:08 GMT + - Sat, 25 Jan 2025 02:23:54 GMT Expires: - "-1" Pragma: @@ -1162,19 +1300,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - e3a866f2e94846fcaaadb1202531c504 + - 4b07af59ec3042e79fc37b2c1760866e X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - ebdc64da-6441-49dc-a24b-e5252a1d4c03 + - 5263b186-e9fb-4f49-88d4-383faeeedd78 status: 200 OK code: 200 - duration: 129.711111ms - - id: 17 + duration: 102.161992ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1197,7 +1335,7 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - c0b8007888d52dadaf8aa483b29580c0 + - 983cefcee051f8a08a9fd3b92a1d5620 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -1206,18 +1344,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 112457 + content_length: 10911 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "112457" + - "10911" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:10 GMT + - Sat, 25 Jan 2025 02:23:54 GMT Expires: - "-1" Pragma: @@ -1229,32 +1367,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c0b8007888d52dadaf8aa483b29580c0 + - 983cefcee051f8a08a9fd3b92a1d5620 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 614f4a4e-19e8-4e1e-9c4b-94423b7aee71 + - 6c77a59f-0e97-4a51-ae04-52d6faa3d376 X-Ms-Routing-Request-Id: - - WESTUS2:20250123T054810Z:614f4a4e-19e8-4e1e-9c4b-94423b7aee71 + - WESTUS2:20250125T022354Z:6c77a59f-0e97-4a51-ae04-52d6faa3d376 X-Msedge-Ref: - - 'Ref A: 729665C0ADF24E9FA10BACC6FCAC18D3 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:09Z' + - 'Ref A: 7BA57EBE55654625B9490862B42BBA07 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:23:54Z' status: 200 OK code: 200 - duration: 998.610722ms - - id: 18 + duration: 492.965093ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1360 + content_length: 1361 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-lbaeec6"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.32.4.45862","templateHash":"9208930884015842103"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-lbaeec6","azd-provision-param-hash":"ebaf128cc364af2bc37431679e4228b8dd9a7a028ce4664bf8805e305fbc7641"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-l415a1d"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.33.13.18514","templateHash":"7230513710032888086"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-l415a1d","azd-provision-param-hash":"f2ff9dff54afda829e81796efd77d8b236f30be605d598bb30e5e78d7411ab51"}}' form: {} headers: Accept: @@ -1264,14 +1402,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "1360" + - "1361" Content-Type: - application/json User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - c0b8007888d52dadaf8aa483b29580c0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232?api-version=2021-04-01 + - 983cefcee051f8a08a9fd3b92a1d5620 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -1281,10 +1419,10 @@ interactions: trailer: {} content_length: 893 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232","name":"azdtest-lbaeec6-1737611232","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lbaeec6","azd-provision-param-hash":"ebaf128cc364af2bc37431679e4228b8dd9a7a028ce4664bf8805e305fbc7641"},"properties":{"templateHash":"9208930884015842103","parameters":{"environmentName":{"type":"String","value":"azdtest-lbaeec6"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-23T05:48:13.2131819Z","duration":"PT0.0005581S","correlationId":"c0b8007888d52dadaf8aa483b29580c0","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769","name":"azdtest-l415a1d-1737771769","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l415a1d","azd-provision-param-hash":"f2ff9dff54afda829e81796efd77d8b236f30be605d598bb30e5e78d7411ab51"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l415a1d"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-25T02:23:58.5025027Z","duration":"PT0.0006268S","correlationId":"983cefcee051f8a08a9fd3b92a1d5620","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232/operationStatuses/08584639955943790016?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769/operationStatuses/08584638350502595779?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: @@ -1292,7 +1430,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:13 GMT + - Sat, 25 Jan 2025 02:23:59 GMT Expires: - "-1" Pragma: @@ -1304,7 +1442,7 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c0b8007888d52dadaf8aa483b29580c0 + - 983cefcee051f8a08a9fd3b92a1d5620 X-Ms-Deployment-Engine-Version: - 1.224.0 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: @@ -1312,15 +1450,15 @@ interactions: X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 3945206b-5bae-4d4a-af0a-3b59f38355be + - 9d30ea68-f550-4053-9c3a-30b51c69e1f3 X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20250123T054813Z:3945206b-5bae-4d4a-af0a-3b59f38355be + - WESTUS2:20250125T022400Z:9d30ea68-f550-4053-9c3a-30b51c69e1f3 X-Msedge-Ref: - - 'Ref A: D39418FAAE654D7B9594AC1E4852F45D Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:10Z' + - 'Ref A: FB47F68740E64AF5BC0E8FD7ACA27A12 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:23:54Z' status: 201 Created code: 201 - duration: 3.464940329s - - id: 19 + duration: 5.090803727s + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1341,8 +1479,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - c0b8007888d52dadaf8aa483b29580c0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232/operationStatuses/08584639955943790016?api-version=2021-04-01 + - 983cefcee051f8a08a9fd3b92a1d5620 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769/operationStatuses/08584638350502595779?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1361,7 +1499,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:44 GMT + - Sat, 25 Jan 2025 02:24:30 GMT Expires: - "-1" Pragma: @@ -1373,21 +1511,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c0b8007888d52dadaf8aa483b29580c0 + - 983cefcee051f8a08a9fd3b92a1d5620 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 07511eff-b3cd-4f89-9092-62e7593c1dd3 + - 508a8d7f-ca9f-48ca-bae2-989230d052c8 X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20250123T054844Z:07511eff-b3cd-4f89-9092-62e7593c1dd3 + - WESTUS2:20250125T022430Z:508a8d7f-ca9f-48ca-bae2-989230d052c8 X-Msedge-Ref: - - 'Ref A: AE7AE987DE4F48439E5356BD1A092976 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:44Z' + - 'Ref A: AAC8F7DEB91B45388F3180ED9FF5E3D4 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:24:30Z' status: 200 OK code: 200 - duration: 182.481797ms - - id: 20 + duration: 206.985491ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1408,8 +1546,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - c0b8007888d52dadaf8aa483b29580c0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232?api-version=2021-04-01 + - 983cefcee051f8a08a9fd3b92a1d5620 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1417,18 +1555,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1100 + content_length: 1101 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232","name":"azdtest-lbaeec6-1737611232","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lbaeec6","azd-provision-param-hash":"ebaf128cc364af2bc37431679e4228b8dd9a7a028ce4664bf8805e305fbc7641"},"properties":{"templateHash":"9208930884015842103","parameters":{"environmentName":{"type":"String","value":"azdtest-lbaeec6"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-23T05:48:18.922411Z","duration":"PT5.7097872S","correlationId":"c0b8007888d52dadaf8aa483b29580c0","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lbaeec6"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769","name":"azdtest-l415a1d-1737771769","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l415a1d","azd-provision-param-hash":"f2ff9dff54afda829e81796efd77d8b236f30be605d598bb30e5e78d7411ab51"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l415a1d"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-25T02:24:04.8340071Z","duration":"PT6.3321312S","correlationId":"983cefcee051f8a08a9fd3b92a1d5620","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l415a1d"}]}}' headers: Cache-Control: - no-cache Content-Length: - - "1100" + - "1101" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:44 GMT + - Sat, 25 Jan 2025 02:24:30 GMT Expires: - "-1" Pragma: @@ -1440,21 +1578,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c0b8007888d52dadaf8aa483b29580c0 + - 983cefcee051f8a08a9fd3b92a1d5620 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - c0a5bd44-7613-48e3-bb47-8c0d47649cd5 + - f9521289-437c-4470-8e0c-b444589320c0 X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20250123T054844Z:c0a5bd44-7613-48e3-bb47-8c0d47649cd5 + - WESTUS2:20250125T022430Z:f9521289-437c-4470-8e0c-b444589320c0 X-Msedge-Ref: - - 'Ref A: 752380EF27934B20851352CDA4E2DA8B Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:44Z' + - 'Ref A: F618A5F91ABE4A92B01912E487EFD8EE Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:24:30Z' status: 200 OK code: 200 - duration: 175.199986ms - - id: 21 + duration: 260.268685ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1477,8 +1615,8 @@ interactions: User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - c0b8007888d52dadaf8aa483b29580c0 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lbaeec6%27&api-version=2021-04-01 + - 983cefcee051f8a08a9fd3b92a1d5620 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l415a1d%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1488,7 +1626,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lbaeec6","name":"rg-azdtest-lbaeec6","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lbaeec6"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l415a1d","name":"rg-azdtest-l415a1d","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l415a1d"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1497,7 +1635,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:44 GMT + - Sat, 25 Jan 2025 02:24:30 GMT Expires: - "-1" Pragma: @@ -1509,21 +1647,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - c0b8007888d52dadaf8aa483b29580c0 + - 983cefcee051f8a08a9fd3b92a1d5620 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" + - "16498" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + - "1098" X-Ms-Request-Id: - - aca265d2-536f-4875-88e8-0b96223a4c0d + - 76fffc40-6030-402d-a2dd-14b99636eb4c X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20250123T054844Z:aca265d2-536f-4875-88e8-0b96223a4c0d + - WESTUS2:20250125T022430Z:76fffc40-6030-402d-a2dd-14b99636eb4c X-Msedge-Ref: - - 'Ref A: 13BFA9FD84554EACBF11B8ADD70F5B99 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:44Z' + - 'Ref A: 4088E16189C34F8488408F7E962124FB Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:24:30Z' status: 200 OK code: 200 - duration: 93.024952ms - - id: 22 + duration: 67.403767ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1531,7 +1669,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1544,124 +1682,51 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 94f1e145ea1c962067205e6b4fb8787d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 + - 983cefcee051f8a08a9fd3b92a1d5620 + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 method: GET response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 5223 - uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/scaddie/providers/Microsoft.KeyVault/vaults/kvScottTestApp1","name":"kvScottTestApp1","type":"Microsoft.KeyVault/vaults","location":"northcentralus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-test-gha/providers/Microsoft.KeyVault/vaults/kv-d7e2iil2mbz6g","name":"kv-d7e2iil2mbz6g","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"hemarina-test-gha"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazqu-testing-azd-secret-env/providers/Microsoft.KeyVault/vaults/keyvault-account","name":"keyvault-account","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazqu-testing-azd-secret-env/providers/Microsoft.KeyVault/vaults/vivazqu-secrets","name":"vivazqu-secrets","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-1233/providers/Microsoft.KeyVault/vaults/kv-ksqzfpgkd7ppm","name":"kv-ksqzfpgkd7ppm","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"1233"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jcnew/providers/Microsoft.KeyVault/vaults/kv-nfsgjllnkgov6","name":"kv-nfsgjllnkgov6","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"jcnew"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazque-flow-test/providers/Microsoft.KeyVault/vaults/vivazque-ka-a","name":"vivazque-ka-a","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva","name":"azdtest-lbaeec6-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-joncardekeyvault/providers/Microsoft.KeyVault/vaults/tb0f745ebb7bfae58","name":"tb0f745ebb7bfae58","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "5223" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 23 Jan 2025 05:48:45 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Ms-Correlation-Request-Id: - - 94f1e145ea1c962067205e6b4fb8787d - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" - X-Ms-Request-Id: - - cbed2e68-b2e9-410c-9115-c792d2fa8334 - X-Ms-Routing-Request-Id: - - WESTUS2:20250123T054845Z:cbed2e68-b2e9-410c-9115-c792d2fa8334 - X-Msedge-Ref: - - 'Ref A: 1D50706589124E35BFE1B2CEE64582A9 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:44Z' - status: 200 OK - code: 200 - duration: 458.602948ms - - id: 23 - request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - User-Agent: - - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - ae62a8746123d63ecf1a0cb4653c0653 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 5223 + content_length: 97 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/scaddie/providers/Microsoft.KeyVault/vaults/kvScottTestApp1","name":"kvScottTestApp1","type":"Microsoft.KeyVault/vaults","location":"northcentralus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-test-gha/providers/Microsoft.KeyVault/vaults/kv-d7e2iil2mbz6g","name":"kv-d7e2iil2mbz6g","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"hemarina-test-gha"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazqu-testing-azd-secret-env/providers/Microsoft.KeyVault/vaults/keyvault-account","name":"keyvault-account","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazqu-testing-azd-secret-env/providers/Microsoft.KeyVault/vaults/vivazqu-secrets","name":"vivazqu-secrets","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-1233/providers/Microsoft.KeyVault/vaults/kv-ksqzfpgkd7ppm","name":"kv-ksqzfpgkd7ppm","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"1233"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jcnew/providers/Microsoft.KeyVault/vaults/kv-nfsgjllnkgov6","name":"kv-nfsgjllnkgov6","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"jcnew"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazque-flow-test/providers/Microsoft.KeyVault/vaults/vivazque-ka-a","name":"vivazque-ka-a","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva","name":"azdtest-lbaeec6-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-joncardekeyvault/providers/Microsoft.KeyVault/vaults/tb0f745ebb7bfae58","name":"tb0f745ebb7bfae58","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' headers: Cache-Control: - no-cache Content-Length: - - "5223" + - "97" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:45 GMT + - Sat, 25 Jan 2025 02:24:30 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE + - max-age=31536000;includeSubDomains + Www-Authenticate: + - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" X-Content-Type-Options: - nosniff - X-Ms-Correlation-Request-Id: - - ae62a8746123d63ecf1a0cb4653c0653 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 X-Ms-Request-Id: - - 1cd3c57b-3710-4e2f-aa30-1b1a39a6333d - X-Ms-Routing-Request-Id: - - WESTUS2:20250123T054845Z:1cd3c57b-3710-4e2f-aa30-1b1a39a6333d - X-Msedge-Ref: - - 'Ref A: 717E81612D3E4C47A6C28C8FA9A8E252 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:45Z' - status: 200 OK - code: 200 - duration: 224.422666ms - - id: 24 + - eaa1e15f-1999-406b-92d9-cf6ac5250c7d + status: 401 Unauthorized + code: 401 + duration: 82.789236ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1669,7 +1734,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1681,65 +1746,63 @@ interactions: - gzip Authorization: - SANITIZED - Content-Length: - - "0" User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - ae62a8746123d63ecf1a0cb4653c0653 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs2?api-version=7.4 - method: PUT + - 983cefcee051f8a08a9fd3b92a1d5620 + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 + method: GET response: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 97 + content_length: 281 uncompressed: false - body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs/2c0c7d0ae553496ea7be8a08c48357c7","attributes":{"enabled":true,"created":1737771827,"updated":1737771827,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache Content-Length: - - "97" + - "281" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:45 GMT + - Sat, 25 Jan 2025 02:24:30 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - max-age=31536000;includeSubDomains - Www-Authenticate: - - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Rbac-Assignment-Id: + - 4b07af59ec3042e79fc37b2c1760866e X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 381542fb-f5cb-478e-b1a4-307423bc5587 - status: 401 Unauthorized - code: 401 - duration: 85.487139ms - - id: 25 + - 59cec7cb-ef8a-4e6f-b624-1c89ff2e7281 + status: 200 OK + code: 200 + duration: 84.393533ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 40 + content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: management.azure.com remote_addr: "" request_uri: "" - body: '{"value":"THIS IS THE NEW SECRET VALUE"}' + body: "" form: {} headers: Accept: @@ -1748,56 +1811,56 @@ interactions: - gzip Authorization: - SANITIZED - Content-Length: - - "40" - Content-Type: - - application/json User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - ae62a8746123d63ecf1a0cb4653c0653 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs2?api-version=7.4 - method: PUT + - d9bc7b83114f4c63e35d3c9ae98b0b8d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 + method: GET response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 286 + content_length: 4302 uncompressed: false - body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs2/5225ea37d62f48aeace6a13c5586dc11","attributes":{"enabled":true,"created":1737611325,"updated":1737611325,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-test-gha/providers/Microsoft.KeyVault/vaults/kv-d7e2iil2mbz6g","name":"kv-d7e2iil2mbz6g","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"hemarina-test-gha"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg/providers/Microsoft.KeyVault/vaults/azdtest-l415a1d-kva","name":"azdtest-l415a1d-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai/providers/Microsoft.KeyVault/vaults/kv-rajeshka371125419172","name":"kv-rajeshka371125419172","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-unique-eventhub.namespaces-ehnkv-rg/providers/Microsoft.KeyVault/vaults/dep-unique-kv-ehnkv","name":"dep-unique-kv-ehnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-unique-servicebus.namespaces-sbnkv-rg/providers/Microsoft.KeyVault/vaults/dep-unique-kv-sbnkv","name":"dep-unique-kv-sbnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' headers: Cache-Control: - no-cache Content-Length: - - "286" + - "4302" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:45 GMT + - Sat, 25 Jan 2025 02:24:31 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - - max-age=31536000;includeSubDomains + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; - X-Ms-Keyvault-Rbac-Assignment-Id: - - e3a866f2e94846fcaaadb1202531c504 - X-Ms-Keyvault-Region: - - eastus2 - X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 + X-Ms-Correlation-Request-Id: + - d9bc7b83114f4c63e35d3c9ae98b0b8d + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - ab343029-4de8-4256-9704-7b64d6d81ff0 + - fb2d0a47-d7b7-4d7e-b065-7148dbe88c10 + X-Ms-Routing-Request-Id: + - WESTUS2:20250125T022431Z:fb2d0a47-d7b7-4d7e-b065-7148dbe88c10 + X-Msedge-Ref: + - 'Ref A: FAED7A8DF69641FF9E0AC0AD883FC944 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:24:31Z' status: 200 OK code: 200 - duration: 140.089229ms - - id: 26 + duration: 211.918381ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1805,7 +1868,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1817,12 +1880,14 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "0" User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 8b96baa2d6a2c5803ffe85020a961354 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs2/?api-version=7.4 - method: GET + - d9bc7b83114f4c63e35d3c9ae98b0b8d + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs2?api-version=7.4 + method: PUT response: proto: HTTP/1.1 proto_major: 1 @@ -1840,7 +1905,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:46 GMT + - Sat, 25 Jan 2025 02:24:31 GMT Expires: - "-1" Pragma: @@ -1852,28 +1917,28 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 724ee6d2-f3f4-48e8-86c1-6d615ad76c9e + - f4380743-1160-485e-941e-d6311d4c759a status: 401 Unauthorized code: 401 - duration: 82.645735ms - - id: 27 + duration: 76.352049ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 40 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" - body: "" + body: '{"value":"THIS IS THE NEW SECRET VALUE"}' form: {} headers: Accept: @@ -1882,12 +1947,16 @@ interactions: - gzip Authorization: - SANITIZED + Content-Length: + - "40" + Content-Type: + - application/json User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 8b96baa2d6a2c5803ffe85020a961354 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs2/?api-version=7.4 - method: GET + - d9bc7b83114f4c63e35d3c9ae98b0b8d + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs2?api-version=7.4 + method: PUT response: proto: HTTP/1.1 proto_major: 1 @@ -1896,7 +1965,7 @@ interactions: trailer: {} content_length: 286 uncompressed: false - body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs2/5225ea37d62f48aeace6a13c5586dc11","attributes":{"enabled":true,"created":1737611325,"updated":1737611325,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs2/9f0c6a6b63b54f9aac3b78df1f238db3","attributes":{"enabled":true,"created":1737771871,"updated":1737771871,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -1905,7 +1974,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:46 GMT + - Sat, 25 Jan 2025 02:24:31 GMT Expires: - "-1" Pragma: @@ -1915,19 +1984,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - e3a866f2e94846fcaaadb1202531c504 + - 4b07af59ec3042e79fc37b2c1760866e X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 3e505afd-9c6a-4967-a74a-ff75b936e8f1 + - fc9ebb3a-0520-413f-8bf5-d6d6dea69f0d status: 200 OK code: 200 - duration: 118.601893ms - - id: 28 + duration: 147.015009ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1935,7 +2004,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1950,8 +2019,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 8b96baa2d6a2c5803ffe85020a961354 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs2/?api-version=7.4 + - f9d01e1e244df8a9c4b88d06f2ee557f + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs2/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -1970,7 +2039,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:49 GMT + - Sat, 25 Jan 2025 02:24:34 GMT Expires: - "-1" Pragma: @@ -1982,17 +2051,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 2a0e14fa-d49a-4687-9006-085fae18006c + - 80898e6b-6d4e-498f-b5e9-59f9653d06f3 status: 401 Unauthorized code: 401 - duration: 80.859231ms - - id: 29 + duration: 81.508539ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -2000,7 +2069,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2015,8 +2084,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 8b96baa2d6a2c5803ffe85020a961354 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs2/?api-version=7.4 + - f9d01e1e244df8a9c4b88d06f2ee557f + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs2/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -2026,7 +2095,7 @@ interactions: trailer: {} content_length: 286 uncompressed: false - body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs2/5225ea37d62f48aeace6a13c5586dc11","attributes":{"enabled":true,"created":1737611325,"updated":1737611325,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs2/9f0c6a6b63b54f9aac3b78df1f238db3","attributes":{"enabled":true,"created":1737771871,"updated":1737771871,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -2035,7 +2104,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:49 GMT + - Sat, 25 Jan 2025 02:24:34 GMT Expires: - "-1" Pragma: @@ -2045,19 +2114,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - e3a866f2e94846fcaaadb1202531c504 + - 4b07af59ec3042e79fc37b2c1760866e X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - a4fc9f54-8cf4-4c06-a669-0bc3e9adb60e + - 740da4ad-0206-4b45-bea7-0b63301ea3fa status: 200 OK code: 200 - duration: 101.855867ms - - id: 30 + duration: 86.876428ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -2080,7 +2149,7 @@ interactions: User-Agent: - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 8b96baa2d6a2c5803ffe85020a961354 + - f9d01e1e244df8a9c4b88d06f2ee557f url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -2100,7 +2169,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:51 GMT + - Sat, 25 Jan 2025 02:24:37 GMT Expires: - "-1" Pragma: @@ -2112,21 +2181,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 8b96baa2d6a2c5803ffe85020a961354 + - f9d01e1e244df8a9c4b88d06f2ee557f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - b2fd769c-85a3-41ec-9e0b-efc933a0c449 + - bda51941-c3aa-418d-a768-40d957e01381 X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20250123T054851Z:b2fd769c-85a3-41ec-9e0b-efc933a0c449 + - WESTUS2:20250125T022437Z:bda51941-c3aa-418d-a768-40d957e01381 X-Msedge-Ref: - - 'Ref A: BD0B74FDA94D4957A7957365D78F3A1E Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:49Z' + - 'Ref A: 06FB75B4EC914F20A18D941EC642C9A3 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:24:35Z' status: 200 OK code: 200 - duration: 1.951083082s - - id: 31 + duration: 2.779673525s + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -2134,7 +2203,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2149,8 +2218,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 8b96baa2d6a2c5803ffe85020a961354 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs2/?api-version=7.4 + - f9d01e1e244df8a9c4b88d06f2ee557f + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs2/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -2169,7 +2238,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:51 GMT + - Sat, 25 Jan 2025 02:24:37 GMT Expires: - "-1" Pragma: @@ -2181,17 +2250,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - d33fcdfe-ee2b-45df-8016-2ab70b55b4cb + - 85dbdbac-fecd-46c8-9345-90f2b9776168 status: 401 Unauthorized code: 401 - duration: 81.302833ms - - id: 32 + duration: 77.985847ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -2199,7 +2268,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2214,8 +2283,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 8b96baa2d6a2c5803ffe85020a961354 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs2/?api-version=7.4 + - f9d01e1e244df8a9c4b88d06f2ee557f + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs2/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -2225,7 +2294,7 @@ interactions: trailer: {} content_length: 286 uncompressed: false - body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs2/5225ea37d62f48aeace6a13c5586dc11","attributes":{"enabled":true,"created":1737611325,"updated":1737611325,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs2/9f0c6a6b63b54f9aac3b78df1f238db3","attributes":{"enabled":true,"created":1737771871,"updated":1737771871,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -2234,7 +2303,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:51 GMT + - Sat, 25 Jan 2025 02:24:37 GMT Expires: - "-1" Pragma: @@ -2244,19 +2313,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - e3a866f2e94846fcaaadb1202531c504 + - 4b07af59ec3042e79fc37b2c1760866e X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 50945574-ac8c-4add-80b0-a04c8ceabf11 + - 7573505b-e8d7-4401-a343-02771ec00e80 status: 200 OK code: 200 - duration: 107.583675ms - - id: 33 + duration: 98.777606ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -2279,7 +2348,7 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 8b96baa2d6a2c5803ffe85020a961354 + - f9d01e1e244df8a9c4b88d06f2ee557f url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -2288,18 +2357,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 113558 + content_length: 13014 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232","location":"eastus2","name":"azdtest-lbaeec6-1737611232","properties":{"correlationId":"c0b8007888d52dadaf8aa483b29580c0","dependencies":[],"duration":"PT5.7097872S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lbaeec6"}],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-lbaeec6"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"}]}],"provisioningState":"Succeeded","templateHash":"9208930884015842103","timestamp":"2025-01-23T05:48:18.922411Z"},"tags":{"azd-env-name":"azdtest-lbaeec6","azd-provision-param-hash":"ebaf128cc364af2bc37431679e4228b8dd9a7a028ce4664bf8805e305fbc7641"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769","location":"eastus2","name":"azdtest-l415a1d-1737771769","properties":{"correlationId":"983cefcee051f8a08a9fd3b92a1d5620","dependencies":[],"duration":"PT6.3321312S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l415a1d"}],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-l415a1d"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"}]}],"provisioningState":"Succeeded","templateHash":"7230513710032888086","timestamp":"2025-01-25T02:24:04.8340071Z"},"tags":{"azd-env-name":"azdtest-l415a1d","azd-provision-param-hash":"f2ff9dff54afda829e81796efd77d8b236f30be605d598bb30e5e78d7411ab51"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "113558" + - "13014" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:52 GMT + - Sat, 25 Jan 2025 02:24:38 GMT Expires: - "-1" Pragma: @@ -2311,32 +2380,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 8b96baa2d6a2c5803ffe85020a961354 + - f9d01e1e244df8a9c4b88d06f2ee557f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 7110516b-cde5-4ccd-ae7f-1739fd6faf8a + - b78d86fd-8215-4e8d-bf53-94df7faaeb71 X-Ms-Routing-Request-Id: - - WESTUS2:20250123T054853Z:7110516b-cde5-4ccd-ae7f-1739fd6faf8a + - WESTUS2:20250125T022438Z:b78d86fd-8215-4e8d-bf53-94df7faaeb71 X-Msedge-Ref: - - 'Ref A: 35CA4F31D9974CC18E030928A03B44EC Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:51Z' + - 'Ref A: 5C60D687A9CC46F4816077F6144A0CD8 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:24:38Z' status: 200 OK code: 200 - duration: 1.332742673s - - id: 34 + duration: 650.81452ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1011 + content_length: 1012 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.32.4.45862","templateHash":"9208930884015842103"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}' + body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.33.13.18514","templateHash":"7230513710032888086"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}' form: {} headers: Accept: @@ -2346,13 +2415,13 @@ interactions: Authorization: - SANITIZED Content-Length: - - "1011" + - "1012" Content-Type: - application/json User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 8b96baa2d6a2c5803ffe85020a961354 + - f9d01e1e244df8a9c4b88d06f2ee557f url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 method: POST response: @@ -2361,18 +2430,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1177 + content_length: 1178 uncompressed: false - body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"NAME OF THE THE ENVIRONMENT WHICH IS USED TO GENERATE A SHORT UNIQUE HASH USED IN ALL RESOURCES.\"}},\"LOCATION\":{\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"PRIMARY LOCATION FOR ALL RESOURCES\"}},\"SECRETPARAM\":{\"TYPE\":\"SECURESTRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\"},\"OUTPUTPARAM\":\"[FORMAT(''SECRETPARAM:{0}'', PARAMETERS(''SECRETPARAM''))]\"},\"RESOURCES\":[{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"}],\"OUTPUTS\":{\"BICEP_OUTPUT\":{\"TYPE\":\"STRING\",\"VALUE\":\"[VARIABLES(''OUTPUTPARAM'')]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.32.4.45862\",\"TEMPLATEHASH\":\"9208930884015842103\"}}}","templateHash":"9208930884015842103"}' + body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"NAME OF THE THE ENVIRONMENT WHICH IS USED TO GENERATE A SHORT UNIQUE HASH USED IN ALL RESOURCES.\"}},\"LOCATION\":{\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"PRIMARY LOCATION FOR ALL RESOURCES\"}},\"SECRETPARAM\":{\"TYPE\":\"SECURESTRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\"},\"OUTPUTPARAM\":\"[FORMAT(''SECRETPARAM:{0}'', PARAMETERS(''SECRETPARAM''))]\"},\"RESOURCES\":[{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"}],\"OUTPUTS\":{\"BICEP_OUTPUT\":{\"TYPE\":\"STRING\",\"VALUE\":\"[VARIABLES(''OUTPUTPARAM'')]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.33.13.18514\",\"TEMPLATEHASH\":\"7230513710032888086\"}}}","templateHash":"7230513710032888086"}' headers: Cache-Control: - no-cache Content-Length: - - "1177" + - "1178" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:53 GMT + - Sat, 25 Jan 2025 02:24:38 GMT Expires: - "-1" Pragma: @@ -2384,30 +2453,30 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 8b96baa2d6a2c5803ffe85020a961354 + - f9d01e1e244df8a9c4b88d06f2ee557f X-Ms-Ratelimit-Remaining-Tenant-Writes: - "799" X-Ms-Request-Id: - - 3562a35c-80c2-46ae-bc6e-b5b5bd941c67 + - 92c7f353-cd67-42f1-8363-30f10ab65ee6 X-Ms-Routing-Request-Id: - - WESTUS:20250123T054853Z:3562a35c-80c2-46ae-bc6e-b5b5bd941c67 + - WESTUS2:20250125T022438Z:92c7f353-cd67-42f1-8363-30f10ab65ee6 X-Msedge-Ref: - - 'Ref A: 715D64BFC334463EA0E535C6BC963B81 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:53Z' + - 'Ref A: 7328E3D027264666AD42540315DC49A1 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:24:38Z' status: 200 OK code: 200 - duration: 60.903599ms - - id: 35 + duration: 41.690319ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1364 + content_length: 1365 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-lbaeec6"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE NEW SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.32.4.45862","templateHash":"9208930884015842103"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-lbaeec6","azd-provision-param-hash":"9c7f3d23069ecc62a79faf21c9ed021f357cf2ca9cf7c96c4207f8b311592316"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-l415a1d"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE NEW SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.33.13.18514","templateHash":"7230513710032888086"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-l415a1d","azd-provision-param-hash":"7ee6aa975629e69ebb50b05a0bc59a34fe2553d6fcc4471a2d774e9777bcba87"}}' form: {} headers: Accept: @@ -2417,14 +2486,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "1364" + - "1365" Content-Type: - application/json User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 8b96baa2d6a2c5803ffe85020a961354 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232?api-version=2021-04-01 + - f9d01e1e244df8a9c4b88d06f2ee557f + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -2434,10 +2503,10 @@ interactions: trailer: {} content_length: 893 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232","name":"azdtest-lbaeec6-1737611232","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lbaeec6","azd-provision-param-hash":"9c7f3d23069ecc62a79faf21c9ed021f357cf2ca9cf7c96c4207f8b311592316"},"properties":{"templateHash":"9208930884015842103","parameters":{"environmentName":{"type":"String","value":"azdtest-lbaeec6"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-23T05:48:55.9211068Z","duration":"PT0.0005461S","correlationId":"8b96baa2d6a2c5803ffe85020a961354","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769","name":"azdtest-l415a1d-1737771769","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l415a1d","azd-provision-param-hash":"7ee6aa975629e69ebb50b05a0bc59a34fe2553d6fcc4471a2d774e9777bcba87"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l415a1d"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-25T02:24:42.2656693Z","duration":"PT0.0002811S","correlationId":"f9d01e1e244df8a9c4b88d06f2ee557f","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232/operationStatuses/08584639955515973334?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769/operationStatuses/08584638350061714767?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: @@ -2445,7 +2514,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:48:56 GMT + - Sat, 25 Jan 2025 02:24:42 GMT Expires: - "-1" Pragma: @@ -2457,23 +2526,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 8b96baa2d6a2c5803ffe85020a961354 + - f9d01e1e244df8a9c4b88d06f2ee557f X-Ms-Deployment-Engine-Version: - - 1.173.0 + - 1.224.0 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - d543822e-d87c-4cc7-aa01-ac5965e10c34 + - 901e430f-334f-4347-acfe-963bc9c62367 X-Ms-Routing-Request-Id: - - WESTUS:20250123T054856Z:d543822e-d87c-4cc7-aa01-ac5965e10c34 + - WESTUS2:20250125T022442Z:901e430f-334f-4347-acfe-963bc9c62367 X-Msedge-Ref: - - 'Ref A: 6D5F72EBFC7E4A628BEBE7AEBE4557BE Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:48:53Z' + - 'Ref A: C8D285BB76A74BB28716AFB157309AF7 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:24:38Z' status: 200 OK code: 200 - duration: 3.115115182s - - id: 36 + duration: 3.812208419s + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2494,8 +2563,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 8b96baa2d6a2c5803ffe85020a961354 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232/operationStatuses/08584639955515973334?api-version=2021-04-01 + - f9d01e1e244df8a9c4b88d06f2ee557f + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769/operationStatuses/08584638350061714767?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2514,7 +2583,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:49:26 GMT + - Sat, 25 Jan 2025 02:25:12 GMT Expires: - "-1" Pragma: @@ -2526,21 +2595,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 8b96baa2d6a2c5803ffe85020a961354 + - f9d01e1e244df8a9c4b88d06f2ee557f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 79e2ee40-f79c-48cb-9ca0-1696cf096b36 + - a8d23eeb-2236-4083-a708-eb3558887a85 X-Ms-Routing-Request-Id: - - WESTUS:20250123T054927Z:79e2ee40-f79c-48cb-9ca0-1696cf096b36 + - WESTUS2:20250125T022513Z:a8d23eeb-2236-4083-a708-eb3558887a85 X-Msedge-Ref: - - 'Ref A: 96383C39920F4C77A92114967E5C2064 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:49:26Z' + - 'Ref A: 188770A684AC467EB54A378E4DB9024F Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:25:12Z' status: 200 OK code: 200 - duration: 222.315464ms - - id: 37 + duration: 231.348758ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2561,8 +2630,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 8b96baa2d6a2c5803ffe85020a961354 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232?api-version=2021-04-01 + - f9d01e1e244df8a9c4b88d06f2ee557f + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2572,7 +2641,7 @@ interactions: trailer: {} content_length: 1105 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232","name":"azdtest-lbaeec6-1737611232","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lbaeec6","azd-provision-param-hash":"9c7f3d23069ecc62a79faf21c9ed021f357cf2ca9cf7c96c4207f8b311592316"},"properties":{"templateHash":"9208930884015842103","parameters":{"environmentName":{"type":"String","value":"azdtest-lbaeec6"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-23T05:49:01.3969821Z","duration":"PT5.4764214S","correlationId":"8b96baa2d6a2c5803ffe85020a961354","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE NEW SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lbaeec6"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769","name":"azdtest-l415a1d-1737771769","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l415a1d","azd-provision-param-hash":"7ee6aa975629e69ebb50b05a0bc59a34fe2553d6fcc4471a2d774e9777bcba87"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l415a1d"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-25T02:24:45.8983591Z","duration":"PT3.6329709S","correlationId":"f9d01e1e244df8a9c4b88d06f2ee557f","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE NEW SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l415a1d"}]}}' headers: Cache-Control: - no-cache @@ -2581,7 +2650,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:49:27 GMT + - Sat, 25 Jan 2025 02:25:13 GMT Expires: - "-1" Pragma: @@ -2593,21 +2662,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 8b96baa2d6a2c5803ffe85020a961354 + - f9d01e1e244df8a9c4b88d06f2ee557f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 68b4ecf6-96e2-4a0d-85c2-20d58aa09dec + - 7f02e2d0-dd03-4b32-8543-104c1f6fbd6c X-Ms-Routing-Request-Id: - - WESTUS:20250123T054927Z:68b4ecf6-96e2-4a0d-85c2-20d58aa09dec + - WESTUS2:20250125T022513Z:7f02e2d0-dd03-4b32-8543-104c1f6fbd6c X-Msedge-Ref: - - 'Ref A: 71EB88609CCD4ECEB7BB66E0DDDD352C Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:49:27Z' + - 'Ref A: 8D0C77F5F2194D3893607DCA5CCB2746 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:25:13Z' status: 200 OK code: 200 - duration: 206.714138ms - - id: 38 + duration: 186.266644ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2630,8 +2699,8 @@ interactions: User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 8b96baa2d6a2c5803ffe85020a961354 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lbaeec6%27&api-version=2021-04-01 + - f9d01e1e244df8a9c4b88d06f2ee557f + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l415a1d%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2641,7 +2710,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lbaeec6","name":"rg-azdtest-lbaeec6","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lbaeec6"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l415a1d","name":"rg-azdtest-l415a1d","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l415a1d"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -2650,7 +2719,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:49:27 GMT + - Sat, 25 Jan 2025 02:25:13 GMT Expires: - "-1" Pragma: @@ -2662,21 +2731,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 8b96baa2d6a2c5803ffe85020a961354 + - f9d01e1e244df8a9c4b88d06f2ee557f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - b9cc2296-8684-462e-9b6b-4d5cdbf61569 + - cb192586-2f3a-40b2-9743-3332fd02e5e5 X-Ms-Routing-Request-Id: - - WESTUS:20250123T054927Z:b9cc2296-8684-462e-9b6b-4d5cdbf61569 + - WESTUS2:20250125T022513Z:cb192586-2f3a-40b2-9743-3332fd02e5e5 X-Msedge-Ref: - - 'Ref A: E8F1C7BF093B49C7964E5C1467075E28 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:49:27Z' + - 'Ref A: 08CC86DE11364C9495F85D36E90C9117 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:25:13Z' status: 200 OK code: 200 - duration: 83.882838ms - - id: 39 + duration: 46.318812ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2684,7 +2753,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: management.azure.com + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2697,55 +2766,51 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 5b60508340911d8f24a06fef4fb95107 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 + - f9d01e1e244df8a9c4b88d06f2ee557f + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs2/?api-version=7.4 method: GET response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 5223 + content_length: 97 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/scaddie/providers/Microsoft.KeyVault/vaults/kvScottTestApp1","name":"kvScottTestApp1","type":"Microsoft.KeyVault/vaults","location":"northcentralus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-test-gha/providers/Microsoft.KeyVault/vaults/kv-d7e2iil2mbz6g","name":"kv-d7e2iil2mbz6g","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"hemarina-test-gha"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazqu-testing-azd-secret-env/providers/Microsoft.KeyVault/vaults/keyvault-account","name":"keyvault-account","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazqu-testing-azd-secret-env/providers/Microsoft.KeyVault/vaults/vivazqu-secrets","name":"vivazqu-secrets","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-1233/providers/Microsoft.KeyVault/vaults/kv-ksqzfpgkd7ppm","name":"kv-ksqzfpgkd7ppm","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"1233"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jcnew/providers/Microsoft.KeyVault/vaults/kv-nfsgjllnkgov6","name":"kv-nfsgjllnkgov6","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"jcnew"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vivazque-flow-test/providers/Microsoft.KeyVault/vaults/vivazque-ka-a","name":"vivazque-ka-a","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lbaeec6-rg/providers/Microsoft.KeyVault/vaults/azdtest-lbaeec6-kva","name":"azdtest-lbaeec6-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-joncardekeyvault/providers/Microsoft.KeyVault/vaults/tb0f745ebb7bfae58","name":"tb0f745ebb7bfae58","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' headers: Cache-Control: - no-cache Content-Length: - - "5223" + - "97" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:49:27 GMT + - Sat, 25 Jan 2025 02:25:12 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE + - max-age=31536000;includeSubDomains + Www-Authenticate: + - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" X-Content-Type-Options: - nosniff - X-Ms-Correlation-Request-Id: - - 5b60508340911d8f24a06fef4fb95107 - X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" - X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 X-Ms-Request-Id: - - d79ab010-c006-4779-848b-ff56fbc8d810 - X-Ms-Routing-Request-Id: - - WESTUS2:20250123T054927Z:d79ab010-c006-4779-848b-ff56fbc8d810 - X-Msedge-Ref: - - 'Ref A: 82B145F3DCD948388E629AD16B7A6047 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:49:27Z' - status: 200 OK - code: 200 - duration: 243.206398ms - - id: 40 + - 9e73d91b-3d96-488e-99a1-8c427c6d6b5e + status: 401 Unauthorized + code: 401 + duration: 81.999944ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2753,7 +2818,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2768,8 +2833,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 5b60508340911d8f24a06fef4fb95107 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets?api-version=7.4 + - f9d01e1e244df8a9c4b88d06f2ee557f + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs2/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -2777,40 +2842,40 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 97 + content_length: 286 uncompressed: false - body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs2/9f0c6a6b63b54f9aac3b78df1f238db3","attributes":{"enabled":true,"created":1737771871,"updated":1737771871,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache Content-Length: - - "97" + - "286" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:49:27 GMT + - Sat, 25 Jan 2025 02:25:12 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - max-age=31536000;includeSubDomains - Www-Authenticate: - - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Rbac-Assignment-Id: + - 4b07af59ec3042e79fc37b2c1760866e X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 6bbea6dc-4574-4131-8a7c-179ef6e8a83f - status: 401 Unauthorized - code: 401 - duration: 80.654932ms - - id: 41 + - de4942ab-861e-4e5e-9d8c-dec694a44d5e + status: 200 OK + code: 200 + duration: 84.12884ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2818,7 +2883,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: management.azure.com remote_addr: "" request_uri: "" body: "" @@ -2831,51 +2896,55 @@ interactions: Authorization: - SANITIZED User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 5b60508340911d8f24a06fef4fb95107 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets?api-version=7.4 + - 302f70f19983612a98c0d80b6dc7cc59 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 method: GET response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 456 + content_length: 4302 uncompressed: false - body: '{"value":[{"id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs","attributes":{"enabled":true,"created":1737611282,"updated":1737611282,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}},{"id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs2","attributes":{"enabled":true,"created":1737611325,"updated":1737611325,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}],"nextLink":null}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-test-gha/providers/Microsoft.KeyVault/vaults/kv-d7e2iil2mbz6g","name":"kv-d7e2iil2mbz6g","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"hemarina-test-gha"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg/providers/Microsoft.KeyVault/vaults/azdtest-l415a1d-kva","name":"azdtest-l415a1d-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai/providers/Microsoft.KeyVault/vaults/kv-rajeshka371125419172","name":"kv-rajeshka371125419172","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-unique-eventhub.namespaces-ehnkv-rg/providers/Microsoft.KeyVault/vaults/dep-unique-kv-ehnkv","name":"dep-unique-kv-ehnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-unique-servicebus.namespaces-sbnkv-rg/providers/Microsoft.KeyVault/vaults/dep-unique-kv-sbnkv","name":"dep-unique-kv-sbnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' headers: Cache-Control: - no-cache Content-Length: - - "456" + - "4302" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:49:27 GMT + - Sat, 25 Jan 2025 02:25:13 GMT Expires: - "-1" Pragma: - no-cache Strict-Transport-Security: - - max-age=31536000;includeSubDomains + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; - X-Ms-Keyvault-Rbac-Assignment-Id: - - e3a866f2e94846fcaaadb1202531c504 - X-Ms-Keyvault-Region: - - eastus2 - X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 + X-Ms-Correlation-Request-Id: + - 302f70f19983612a98c0d80b6dc7cc59 + X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: + - "16499" + X-Ms-Ratelimit-Remaining-Subscription-Reads: + - "1099" X-Ms-Request-Id: - - f89f2eb8-da2d-4c05-83f5-906c798eaad4 + - ce3e4d90-e8f0-4ac4-b672-e87a2bcb4407 + X-Ms-Routing-Request-Id: + - WESTUS2:20250125T022514Z:ce3e4d90-e8f0-4ac4-b672-e87a2bcb4407 + X-Msedge-Ref: + - 'Ref A: 94146122CD0241899C8E2F50FC0676AC Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:25:13Z' status: 200 OK code: 200 - duration: 125.678305ms - - id: 42 + duration: 205.473008ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2883,7 +2952,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2898,8 +2967,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 6f80b87d34d3b4d2629901da769f1487 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 + - 302f70f19983612a98c0d80b6dc7cc59 + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -2918,7 +2987,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:49:28 GMT + - Sat, 25 Jan 2025 02:25:13 GMT Expires: - "-1" Pragma: @@ -2930,17 +2999,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 57420160-2b3a-4c32-8760-277d71790c55 + - f6c7383e-faef-4fd3-abb9-f5362037f3a4 status: 401 Unauthorized code: 401 - duration: 82.183734ms - - id: 43 + duration: 77.289453ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2948,7 +3017,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2963,8 +3032,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 6f80b87d34d3b4d2629901da769f1487 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 + - 302f70f19983612a98c0d80b6dc7cc59 + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -2972,18 +3041,18 @@ interactions: proto_minor: 1 transfer_encoding: [] trailer: {} - content_length: 281 + content_length: 456 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs/5bc2758020f4459cb06ee40f112482ab","attributes":{"enabled":true,"created":1737611282,"updated":1737611282,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":[{"id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs","attributes":{"enabled":true,"created":1737771827,"updated":1737771827,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}},{"id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs2","attributes":{"enabled":true,"created":1737771871,"updated":1737771871,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}],"nextLink":null}' headers: Cache-Control: - no-cache Content-Length: - - "281" + - "456" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:49:28 GMT + - Sat, 25 Jan 2025 02:25:13 GMT Expires: - "-1" Pragma: @@ -2993,19 +3062,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - e3a866f2e94846fcaaadb1202531c504 + - 4b07af59ec3042e79fc37b2c1760866e X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - d8b1a239-5a93-4c4f-9d96-159f0f5f6dce + - a2537b1a-ff31-4b10-9af5-8d9f46cb7b34 status: 200 OK code: 200 - duration: 98.980262ms - - id: 44 + duration: 106.080097ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -3013,7 +3082,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -3028,8 +3097,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 6f80b87d34d3b4d2629901da769f1487 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 + - 1b8a71048ae589835488a5f3d6ae4f09 + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -3048,7 +3117,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:49:31 GMT + - Sat, 25 Jan 2025 02:25:16 GMT Expires: - "-1" Pragma: @@ -3060,17 +3129,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - a4872d33-940d-44e9-8cb8-3e3e67f02921 + - 3601d695-735f-4885-98fc-19d760d01fa3 status: 401 Unauthorized code: 401 - duration: 81.422934ms - - id: 45 + duration: 71.087764ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -3078,7 +3147,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -3093,8 +3162,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 6f80b87d34d3b4d2629901da769f1487 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 + - 1b8a71048ae589835488a5f3d6ae4f09 + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -3104,7 +3173,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs/5bc2758020f4459cb06ee40f112482ab","attributes":{"enabled":true,"created":1737611282,"updated":1737611282,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs/2c0c7d0ae553496ea7be8a08c48357c7","attributes":{"enabled":true,"created":1737771827,"updated":1737771827,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -3113,7 +3182,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:49:31 GMT + - Sat, 25 Jan 2025 02:25:16 GMT Expires: - "-1" Pragma: @@ -3123,19 +3192,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - e3a866f2e94846fcaaadb1202531c504 + - 4b07af59ec3042e79fc37b2c1760866e X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 70522766-4925-4385-9b76-9efeee182120 + - f5512de4-d60c-4000-a99f-adcb5fde8173 status: 200 OK code: 200 - duration: 117.452692ms - - id: 46 + duration: 102.258005ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -3158,7 +3227,7 @@ interactions: User-Agent: - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 6f80b87d34d3b4d2629901da769f1487 + - 1b8a71048ae589835488a5f3d6ae4f09 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -3178,7 +3247,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:49:35 GMT + - Sat, 25 Jan 2025 02:25:20 GMT Expires: - "-1" Pragma: @@ -3190,21 +3259,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6f80b87d34d3b4d2629901da769f1487 + - 1b8a71048ae589835488a5f3d6ae4f09 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 291478d9-abde-42bf-9e7d-b1097038e4a0 + - 0b23baf1-5f04-46f5-9b08-e999b7668975 X-Ms-Routing-Request-Id: - - WESTUS2:20250123T054935Z:291478d9-abde-42bf-9e7d-b1097038e4a0 + - WESTUS2:20250125T022520Z:0b23baf1-5f04-46f5-9b08-e999b7668975 X-Msedge-Ref: - - 'Ref A: 9D5B3E4A5A834EF7A0401CB60B72EF0A Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:49:31Z' + - 'Ref A: 13BE93DF0943424890F5CA35226D596A Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:25:17Z' status: 200 OK code: 200 - duration: 3.881388255s - - id: 47 + duration: 3.033140835s + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -3212,7 +3281,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -3227,8 +3296,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 6f80b87d34d3b4d2629901da769f1487 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 + - 1b8a71048ae589835488a5f3d6ae4f09 + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -3247,7 +3316,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:49:35 GMT + - Sat, 25 Jan 2025 02:25:19 GMT Expires: - "-1" Pragma: @@ -3259,17 +3328,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 0523cd94-1d6f-45e0-8c84-df9dba0fd778 + - 656146e5-b40e-4aa1-b499-c741e1565413 status: 401 Unauthorized code: 401 - duration: 87.355543ms - - id: 48 + duration: 77.011554ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -3277,7 +3346,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-lbaeec6-kva.vault.azure.net + host: azdtest-l415a1d-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -3292,8 +3361,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 6f80b87d34d3b4d2629901da769f1487 - url: https://azdtest-lbaeec6-kva.vault.azure.net:443/secrets/azdtest-lbaeec6-kvs/?api-version=7.4 + - 1b8a71048ae589835488a5f3d6ae4f09 + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -3303,7 +3372,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lbaeec6-kva.vault.azure.net/secrets/azdtest-lbaeec6-kvs/5bc2758020f4459cb06ee40f112482ab","attributes":{"enabled":true,"created":1737611282,"updated":1737611282,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs/2c0c7d0ae553496ea7be8a08c48357c7","attributes":{"enabled":true,"created":1737771827,"updated":1737771827,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -3312,7 +3381,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:49:35 GMT + - Sat, 25 Jan 2025 02:25:20 GMT Expires: - "-1" Pragma: @@ -3322,19 +3391,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.78;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - e3a866f2e94846fcaaadb1202531c504 + - 4b07af59ec3042e79fc37b2c1760866e X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - bfe6d15c-fb5f-4fc5-8d9a-ccfa01f682c9 + - c1823873-bd30-43a5-a66c-da7b05d603db status: 200 OK code: 200 - duration: 98.602461ms - - id: 49 + duration: 127.563058ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -3357,7 +3426,7 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 6f80b87d34d3b4d2629901da769f1487 + - 1b8a71048ae589835488a5f3d6ae4f09 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -3366,18 +3435,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 113563 + content_length: 13457 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232","location":"eastus2","name":"azdtest-lbaeec6-1737611232","properties":{"correlationId":"8b96baa2d6a2c5803ffe85020a961354","dependencies":[],"duration":"PT5.4764214S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lbaeec6"}],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE NEW SECRET VALUE"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-lbaeec6"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"}]}],"provisioningState":"Succeeded","templateHash":"9208930884015842103","timestamp":"2025-01-23T05:49:01.3969821Z"},"tags":{"azd-env-name":"azdtest-lbaeec6","azd-provision-param-hash":"9c7f3d23069ecc62a79faf21c9ed021f357cf2ca9cf7c96c4207f8b311592316"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769","location":"eastus2","name":"azdtest-l415a1d-1737771769","properties":{"correlationId":"f9d01e1e244df8a9c4b88d06f2ee557f","dependencies":[],"duration":"PT3.6329709S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l415a1d"}],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE NEW SECRET VALUE"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-l415a1d"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"}]}],"provisioningState":"Succeeded","templateHash":"7230513710032888086","timestamp":"2025-01-25T02:24:45.8983591Z"},"tags":{"azd-env-name":"azdtest-l415a1d","azd-provision-param-hash":"7ee6aa975629e69ebb50b05a0bc59a34fe2553d6fcc4471a2d774e9777bcba87"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "113563" + - "13457" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:49:36 GMT + - Sat, 25 Jan 2025 02:25:21 GMT Expires: - "-1" Pragma: @@ -3389,32 +3458,32 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6f80b87d34d3b4d2629901da769f1487 + - 1b8a71048ae589835488a5f3d6ae4f09 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 499a1d8d-8e79-4560-8cf3-11b1ab801a29 + - ffff2900-3404-4b7e-868e-9ec4972b0912 X-Ms-Routing-Request-Id: - - WESTCENTRALUS:20250123T054936Z:499a1d8d-8e79-4560-8cf3-11b1ab801a29 + - WESTUS2:20250125T022521Z:ffff2900-3404-4b7e-868e-9ec4972b0912 X-Msedge-Ref: - - 'Ref A: B91243164CA348DBA61F286EF8183111 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:49:35Z' + - 'Ref A: 6C8568239C1F41F1AC40547E030B1D48 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:25:20Z' status: 200 OK code: 200 - duration: 922.446611ms - - id: 50 + duration: 493.895763ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1011 + content_length: 1012 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.32.4.45862","templateHash":"9208930884015842103"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}' + body: '{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.33.13.18514","templateHash":"7230513710032888086"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}' form: {} headers: Accept: @@ -3424,13 +3493,13 @@ interactions: Authorization: - SANITIZED Content-Length: - - "1011" + - "1012" Content-Type: - application/json User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 6f80b87d34d3b4d2629901da769f1487 + - 1b8a71048ae589835488a5f3d6ae4f09 url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 method: POST response: @@ -3439,18 +3508,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1177 + content_length: 1178 uncompressed: false - body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"NAME OF THE THE ENVIRONMENT WHICH IS USED TO GENERATE A SHORT UNIQUE HASH USED IN ALL RESOURCES.\"}},\"LOCATION\":{\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"PRIMARY LOCATION FOR ALL RESOURCES\"}},\"SECRETPARAM\":{\"TYPE\":\"SECURESTRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\"},\"OUTPUTPARAM\":\"[FORMAT(''SECRETPARAM:{0}'', PARAMETERS(''SECRETPARAM''))]\"},\"RESOURCES\":[{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"}],\"OUTPUTS\":{\"BICEP_OUTPUT\":{\"TYPE\":\"STRING\",\"VALUE\":\"[VARIABLES(''OUTPUTPARAM'')]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.32.4.45862\",\"TEMPLATEHASH\":\"9208930884015842103\"}}}","templateHash":"9208930884015842103"}' + body: '{"minifiedTemplate":"{\"$SCHEMA\":\"HTTPS://SCHEMA.MANAGEMENT.AZURE.COM/SCHEMAS/2018-05-01/SUBSCRIPTIONDEPLOYMENTTEMPLATE.JSON#\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"ENVIRONMENTNAME\":{\"MINLENGTH\":1,\"MAXLENGTH\":64,\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"NAME OF THE THE ENVIRONMENT WHICH IS USED TO GENERATE A SHORT UNIQUE HASH USED IN ALL RESOURCES.\"}},\"LOCATION\":{\"TYPE\":\"STRING\",\"METADATA\":{\"DESCRIPTION\":\"PRIMARY LOCATION FOR ALL RESOURCES\"}},\"SECRETPARAM\":{\"TYPE\":\"SECURESTRING\"}},\"VARIABLES\":{\"TAGS\":{\"AZD-ENV-NAME\":\"[PARAMETERS(''ENVIRONMENTNAME'')]\"},\"OUTPUTPARAM\":\"[FORMAT(''SECRETPARAM:{0}'', PARAMETERS(''SECRETPARAM''))]\"},\"RESOURCES\":[{\"TYPE\":\"MICROSOFT.RESOURCES/RESOURCEGROUPS\",\"APIVERSION\":\"2021-04-01\",\"NAME\":\"[FORMAT(''RG-{0}'', PARAMETERS(''ENVIRONMENTNAME''))]\",\"LOCATION\":\"[PARAMETERS(''LOCATION'')]\",\"TAGS\":\"[VARIABLES(''TAGS'')]\"}],\"OUTPUTS\":{\"BICEP_OUTPUT\":{\"TYPE\":\"STRING\",\"VALUE\":\"[VARIABLES(''OUTPUTPARAM'')]\"}},\"METADATA\":{\"_GENERATOR\":{\"NAME\":\"BICEP\",\"VERSION\":\"0.33.13.18514\",\"TEMPLATEHASH\":\"7230513710032888086\"}}}","templateHash":"7230513710032888086"}' headers: Cache-Control: - no-cache Content-Length: - - "1177" + - "1178" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:49:36 GMT + - Sat, 25 Jan 2025 02:25:21 GMT Expires: - "-1" Pragma: @@ -3462,30 +3531,30 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6f80b87d34d3b4d2629901da769f1487 + - 1b8a71048ae589835488a5f3d6ae4f09 X-Ms-Ratelimit-Remaining-Tenant-Writes: - "799" X-Ms-Request-Id: - - d55a89d5-6964-4543-956e-624af944aecc + - 64fc5fcb-f4d5-4a0a-9646-1f15128e2fba X-Ms-Routing-Request-Id: - - WESTUS2:20250123T054936Z:d55a89d5-6964-4543-956e-624af944aecc + - WESTUS2:20250125T022521Z:64fc5fcb-f4d5-4a0a-9646-1f15128e2fba X-Msedge-Ref: - - 'Ref A: 80C4DE43DF7B463483E25EE37AB7E262 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:49:36Z' + - 'Ref A: 3124BEB17E854CD9B2C2A7C1A8E86596 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:25:21Z' status: 200 OK code: 200 - duration: 44.872474ms - - id: 51 + duration: 69.634268ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1360 + content_length: 1361 transfer_encoding: [] trailer: {} host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-lbaeec6"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.32.4.45862","templateHash":"9208930884015842103"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-lbaeec6","azd-provision-param-hash":"ebaf128cc364af2bc37431679e4228b8dd9a7a028ce4664bf8805e305fbc7641"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-l415a1d"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.33.13.18514","templateHash":"7230513710032888086"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-l415a1d","azd-provision-param-hash":"f2ff9dff54afda829e81796efd77d8b236f30be605d598bb30e5e78d7411ab51"}}' form: {} headers: Accept: @@ -3495,14 +3564,14 @@ interactions: Authorization: - SANITIZED Content-Length: - - "1360" + - "1361" Content-Type: - application/json User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 6f80b87d34d3b4d2629901da769f1487 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232?api-version=2021-04-01 + - 1b8a71048ae589835488a5f3d6ae4f09 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -3510,20 +3579,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 892 + content_length: 893 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232","name":"azdtest-lbaeec6-1737611232","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lbaeec6","azd-provision-param-hash":"ebaf128cc364af2bc37431679e4228b8dd9a7a028ce4664bf8805e305fbc7641"},"properties":{"templateHash":"9208930884015842103","parameters":{"environmentName":{"type":"String","value":"azdtest-lbaeec6"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-23T05:49:40.6992622Z","duration":"PT0.000544S","correlationId":"6f80b87d34d3b4d2629901da769f1487","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769","name":"azdtest-l415a1d-1737771769","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l415a1d","azd-provision-param-hash":"f2ff9dff54afda829e81796efd77d8b236f30be605d598bb30e5e78d7411ab51"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l415a1d"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-25T02:25:24.3601396Z","duration":"PT0.0002064S","correlationId":"1b8a71048ae589835488a5f3d6ae4f09","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232/operationStatuses/08584639955079360905?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769/operationStatuses/08584638349635190435?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "892" + - "893" Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:49:40 GMT + - Sat, 25 Jan 2025 02:25:24 GMT Expires: - "-1" Pragma: @@ -3535,23 +3604,23 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6f80b87d34d3b4d2629901da769f1487 + - 1b8a71048ae589835488a5f3d6ae4f09 X-Ms-Deployment-Engine-Version: - - 1.173.0 + - 1.224.0 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 65b57eee-93ef-403f-9691-80f6a2e11ce0 + - 1784c148-3171-4af3-9b1a-e18c917ce880 X-Ms-Routing-Request-Id: - - WESTUS2:20250123T054941Z:65b57eee-93ef-403f-9691-80f6a2e11ce0 + - WESTUS2:20250125T022524Z:1784c148-3171-4af3-9b1a-e18c917ce880 X-Msedge-Ref: - - 'Ref A: E86892FC86AF400799BDDD924FD10409 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:49:36Z' + - 'Ref A: AED54E8E12434E9081AEABA209FA76B5 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:25:21Z' status: 200 OK code: 200 - duration: 4.199127377s - - id: 52 + duration: 3.311261227s + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -3572,8 +3641,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 6f80b87d34d3b4d2629901da769f1487 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232/operationStatuses/08584639955079360905?api-version=2021-04-01 + - 1b8a71048ae589835488a5f3d6ae4f09 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769/operationStatuses/08584638349635190435?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3592,7 +3661,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:50:11 GMT + - Sat, 25 Jan 2025 02:25:55 GMT Expires: - "-1" Pragma: @@ -3604,21 +3673,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6f80b87d34d3b4d2629901da769f1487 + - 1b8a71048ae589835488a5f3d6ae4f09 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - eb40a521-7014-4af0-9e71-cddb0c6eaed0 + - 64a3fe19-ed3d-45a1-a9d3-8c79df519974 X-Ms-Routing-Request-Id: - - WESTUS2:20250123T055011Z:eb40a521-7014-4af0-9e71-cddb0c6eaed0 + - WESTUS2:20250125T022555Z:64a3fe19-ed3d-45a1-a9d3-8c79df519974 X-Msedge-Ref: - - 'Ref A: A7E950048E8046408BF0B4435C95FAC4 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:50:11Z' + - 'Ref A: 533FEFE6DC064A93B3A8CA2265E00E75 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:25:55Z' status: 200 OK code: 200 - duration: 197.779325ms - - id: 53 + duration: 320.790108ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -3639,8 +3708,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 6f80b87d34d3b4d2629901da769f1487 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232?api-version=2021-04-01 + - 1b8a71048ae589835488a5f3d6ae4f09 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3650,7 +3719,7 @@ interactions: trailer: {} content_length: 1101 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lbaeec6-1737611232","name":"azdtest-lbaeec6-1737611232","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lbaeec6","azd-provision-param-hash":"ebaf128cc364af2bc37431679e4228b8dd9a7a028ce4664bf8805e305fbc7641"},"properties":{"templateHash":"9208930884015842103","parameters":{"environmentName":{"type":"String","value":"azdtest-lbaeec6"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-23T05:49:44.3604104Z","duration":"PT3.6616922S","correlationId":"6f80b87d34d3b4d2629901da769f1487","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lbaeec6"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769","name":"azdtest-l415a1d-1737771769","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l415a1d","azd-provision-param-hash":"f2ff9dff54afda829e81796efd77d8b236f30be605d598bb30e5e78d7411ab51"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l415a1d"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-25T02:25:28.1928357Z","duration":"PT3.8329025S","correlationId":"1b8a71048ae589835488a5f3d6ae4f09","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l415a1d"}]}}' headers: Cache-Control: - no-cache @@ -3659,7 +3728,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:50:11 GMT + - Sat, 25 Jan 2025 02:25:55 GMT Expires: - "-1" Pragma: @@ -3671,21 +3740,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6f80b87d34d3b4d2629901da769f1487 + - 1b8a71048ae589835488a5f3d6ae4f09 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 95ff36b9-ac4c-46a6-bb48-df3cb7074dd5 + - 062ba760-644a-4bec-9327-67a690c7cd36 X-Ms-Routing-Request-Id: - - WESTUS2:20250123T055011Z:95ff36b9-ac4c-46a6-bb48-df3cb7074dd5 + - WESTUS2:20250125T022555Z:062ba760-644a-4bec-9327-67a690c7cd36 X-Msedge-Ref: - - 'Ref A: 22D37340054747E2A135BCFB838F11EA Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:50:11Z' + - 'Ref A: F6A31F2E4E224929ADADFA34CF9679C4 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:25:55Z' status: 200 OK code: 200 - duration: 224.77657ms - - id: 54 + duration: 252.187034ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -3708,8 +3777,8 @@ interactions: User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 6f80b87d34d3b4d2629901da769f1487 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lbaeec6%27&api-version=2021-04-01 + - 1b8a71048ae589835488a5f3d6ae4f09 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l415a1d%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3719,7 +3788,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lbaeec6","name":"rg-azdtest-lbaeec6","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lbaeec6"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l415a1d","name":"rg-azdtest-l415a1d","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l415a1d"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -3728,7 +3797,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Jan 2025 05:50:11 GMT + - Sat, 25 Jan 2025 02:25:55 GMT Expires: - "-1" Pragma: @@ -3740,20 +3809,150 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 6f80b87d34d3b4d2629901da769f1487 + - 1b8a71048ae589835488a5f3d6ae4f09 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 6e6f82b9-7043-4fd2-88a6-f074df0fe353 + - 394984a9-79e5-45a9-9b71-a108197baac8 X-Ms-Routing-Request-Id: - - WESTUS2:20250123T055011Z:6e6f82b9-7043-4fd2-88a6-f074df0fe353 + - WESTUS2:20250125T022555Z:394984a9-79e5-45a9-9b71-a108197baac8 X-Msedge-Ref: - - 'Ref A: 0A4D3CBC627C4A9E9365B6E49D8E66F8 Ref B: CO6AA3150219019 Ref C: 2025-01-23T05:50:11Z' + - 'Ref A: C13DF9C34BF7426ABA1238BA2C88AAA1 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:25:55Z' + status: 200 OK + code: 200 + duration: 74.013163ms + - id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-l415a1d-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 1b8a71048ae589835488a5f3d6ae4f09 + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 97 + uncompressed: false + body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "97" + Content-Type: + - application/json; charset=utf-8 + Date: + - Sat, 25 Jan 2025 02:25:55 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + Www-Authenticate: + - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - bee0c937-8869-4544-a2cf-ed6e95a2c674 + status: 401 Unauthorized + code: 401 + duration: 76.219259ms + - id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: azdtest-l415a1d-kva.vault.azure.net + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Accept: + - application/json + Accept-Encoding: + - gzip + Authorization: + - SANITIZED + User-Agent: + - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) + X-Ms-Correlation-Request-Id: + - 1b8a71048ae589835488a5f3d6ae4f09 + url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 + method: GET + response: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + transfer_encoding: [] + trailer: {} + content_length: 281 + uncompressed: false + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs/2c0c7d0ae553496ea7be8a08c48357c7","attributes":{"enabled":true,"created":1737771827,"updated":1737771827,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - "281" + Content-Type: + - application/json; charset=utf-8 + Date: + - Sat, 25 Jan 2025 02:25:55 GMT + Expires: + - "-1" + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000;includeSubDomains + X-Content-Type-Options: + - nosniff + X-Ms-Keyvault-Network-Info: + - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + X-Ms-Keyvault-Rbac-Assignment-Id: + - 4b07af59ec3042e79fc37b2c1760866e + X-Ms-Keyvault-Region: + - eastus2 + X-Ms-Keyvault-Service-Version: + - 1.9.2064.1 + X-Ms-Request-Id: + - 18f7e29e-4826-49b0-9950-8dc629824e0c status: 200 OK code: 200 - duration: 68.214612ms + duration: 94.949025ms --- -env_name: azdtest-lbaeec6 -time: "1737611232" +env_name: azdtest-l415a1d +time: "1737771769" diff --git a/cli/azd/test/functional/testdata/samples/environment-secrets/azure.yaml b/cli/azd/test/functional/testdata/samples/environment-secrets/azure.yaml index 747de302a09..489751403b6 100644 --- a/cli/azd/test/functional/testdata/samples/environment-secrets/azure.yaml +++ b/cli/azd/test/functional/testdata/samples/environment-secrets/azure.yaml @@ -2,7 +2,9 @@ name: storage metadata: template: azd-test/env-secrets@v1 hooks: - preprovision: + # using postprovision to give some time for rbac. When using preprovision, sometimes rbac role is still not ready + # and trying to read he secret fails for test case b/c how fast it goes from setting the secret to reading it. + postprovision: - windows: run: 'Write-Host ".env value: $env:SEC_REF `nResolved secret: $env:SECRET_RESOLVE"' shell: pwsh From 5c89019ee03a0cfb951cec649942683c7d82f9f8 Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Mon, 27 Jan 2025 18:50:58 +0000 Subject: [PATCH 18/22] recording --- .../Test_CLI_EnvironmentSecrets.yaml | 1292 +++++++---------- 1 file changed, 512 insertions(+), 780 deletions(-) diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvironmentSecrets.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvironmentSecrets.yaml index f615a25e0cc..d95bee92411 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvironmentSecrets.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvironmentSecrets.yaml @@ -24,7 +24,7 @@ interactions: User-Agent: - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 5bcf89daa4d1246a568f5cd429c2a56d + - 2ea710713f1b8017753cafad37b5f195 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 method: GET response: @@ -33,18 +33,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4056 + content_length: 3502 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-test-gha/providers/Microsoft.KeyVault/vaults/kv-d7e2iil2mbz6g","name":"kv-d7e2iil2mbz6g","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"hemarina-test-gha"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai/providers/Microsoft.KeyVault/vaults/kv-rajeshka371125419172","name":"kv-rajeshka371125419172","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-unique-eventhub.namespaces-ehnkv-rg/providers/Microsoft.KeyVault/vaults/dep-unique-kv-ehnkv","name":"dep-unique-kv-ehnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-unique-servicebus.namespaces-sbnkv-rg/providers/Microsoft.KeyVault/vaults/dep-unique-kv-sbnkv","name":"dep-unique-kv-sbnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai/providers/Microsoft.KeyVault/vaults/kv-rajeshka371125419172","name":"kv-rajeshka371125419172","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-eventhub.namespaces-ehnkv-rg/providers/Microsoft.KeyVault/vaults/dep-uni-kv-ehnkv","name":"dep-uni-kv-ehnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' headers: Cache-Control: - no-cache Content-Length: - - "4056" + - "3502" Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:22:54 GMT + - Mon, 27 Jan 2025 18:39:07 GMT Expires: - "-1" Pragma: @@ -56,20 +56,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5bcf89daa4d1246a568f5cd429c2a56d + - 2ea710713f1b8017753cafad37b5f195 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 759430c4-4bbe-4ce4-909b-a4fc78ceb46d + - ac68c101-ef8e-4798-8625-f404d2492fec X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022254Z:759430c4-4bbe-4ce4-909b-a4fc78ceb46d + - WESTUS2:20250127T183907Z:ac68c101-ef8e-4798-8625-f404d2492fec X-Msedge-Ref: - - 'Ref A: 10BF0B3814324990B2FDD527CCACE091 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:22:53Z' + - 'Ref A: E9CBA7C5C0D94837A2ED8AFC2496E7DE Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:39:07Z' status: 200 OK code: 200 - duration: 697.496393ms + duration: 447.136994ms - id: 1 request: proto: HTTP/1.1 @@ -93,7 +93,7 @@ interactions: User-Agent: - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 5bcf89daa4d1246a568f5cd429c2a56d + - 2ea710713f1b8017753cafad37b5f195 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -113,7 +113,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:22:57 GMT + - Mon, 27 Jan 2025 18:39:11 GMT Expires: - "-1" Pragma: @@ -125,20 +125,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5bcf89daa4d1246a568f5cd429c2a56d + - 2ea710713f1b8017753cafad37b5f195 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 5f3b1593-a60d-4cae-8865-2833943870a2 + - c63ba1f5-ad95-48e6-93ee-106034d7d7a6 X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022257Z:5f3b1593-a60d-4cae-8865-2833943870a2 + - WESTUS2:20250127T183911Z:c63ba1f5-ad95-48e6-93ee-106034d7d7a6 X-Msedge-Ref: - - 'Ref A: 780B10960790465CBA6F61DC8324573A Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:22:54Z' + - 'Ref A: 4D926111A70B4233BFF34ACF962E3A38 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:39:07Z' status: 200 OK code: 200 - duration: 2.828545601s + duration: 3.506904477s - id: 2 request: proto: HTTP/1.1 @@ -162,7 +162,7 @@ interactions: User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 5bcf89daa4d1246a568f5cd429c2a56d + - 2ea710713f1b8017753cafad37b5f195 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?api-version=2021-04-01 method: GET response: @@ -171,18 +171,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 45431 + content_length: 28104 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dataproduct48702-HostedResources-32E47270","name":"dataproduct48702-HostedResources-32E47270","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg73273/providers/Microsoft.NetworkAnalytics/dataProducts/dataproduct48702","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dataproduct72706-HostedResources-6BE50C22","name":"dataproduct72706-HostedResources-6BE50C22","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg39104/providers/Microsoft.NetworkAnalytics/dataProducts/dataproduct72706","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product89683-HostedResources-6EFC6FE2","name":"product89683-HostedResources-6EFC6FE2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg98573/providers/Microsoft.NetworkAnalytics/dataProducts/product89683","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product56057-HostedResources-081D2AD1","name":"product56057-HostedResources-081D2AD1","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg31226/providers/Microsoft.NetworkAnalytics/dataProducts/product56057","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product52308-HostedResources-5D5C105C","name":"product52308-HostedResources-5D5C105C","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg22243/providers/Microsoft.NetworkAnalytics/dataProducts/product52308","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product09392-HostedResources-6F71BABB","name":"product09392-HostedResources-6F71BABB","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg70288/providers/Microsoft.NetworkAnalytics/dataProducts/product09392","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product4lh001-HostedResources-20AFF06E","name":"product4lh001-HostedResources-20AFF06E","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest02/providers/Microsoft.NetworkAnalytics/dataProducts/product4lh001","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiaofeitest-HostedResources-38FAB8A0","name":"xiaofeitest-HostedResources-38FAB8A0","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-xiaofei/providers/Microsoft.NetworkAnalytics/dataProducts/xiaofeitest","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazeventhubs","name":"rg-riparkazeventhubs","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DeleteAfter":"01/25/2025 04:12:24"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/openai-shared","name":"openai-shared","type":"Microsoft.Resources/resourceGroups","location":"swedencentral","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/wenjiefu","name":"wenjiefu","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DeleteAfter":"07/12/2024 17:23:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chriss","name":"chriss","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-centralus-eus2","name":"ResourceMoverRG-eastus-centralus-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/09/2023 21:30:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mdwgecko","name":"rg-mdwgecko","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/09/2023 21:31:22"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NI_nc-platEng-Dev_eastus2","name":"NI_nc-platEng-Dev_eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/PlatEng-Dev/providers/Microsoft.DevCenter/networkconnections/nc-platEng-Dev","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-contoso-i34nhebbt3526","name":"rg-contoso-i34nhebbt3526","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"devcenter4lh003","DeleteAfter":"11/08/2023 08:09:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdux","name":"azdux","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-devcenter","name":"rg-wabrez-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-devcenter","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-westus2-eus2","name":"ResourceMoverRG-eastus-westus2-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"05/11/2024 19:17:16"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/AzSecPackAutoConfigRG","name":"AzSecPackAutoConfigRG","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-raychen-test-wus","name":"rg-raychen-test-wus","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter ":"2024-12-30T12:30:00.000Z","owner":"raychen","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg40370","name":"rg40370","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/09/2023 21:33:47"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg16812","name":"rg16812","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/09/2023 21:33:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/msolomon-testing","name":"msolomon-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/senyangrg","name":"senyangrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"03/08/2024 00:08:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azsdk-pm-ai","name":"azsdk-pm-ai","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"TypeSpecChannelBot-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/bterlson-cadl","name":"bterlson-cadl","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration","name":"rg-shrejaappconfiguration","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-12-24T05:11:17.9627286Z","Owners":"shreja","ServiceDirectory":"appconfiguration"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc88170fa","name":"rgloc88170fa","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc0890584","name":"rgloc0890584","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llawrence-rg","name":"llawrence-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"11/23/2024 00:21:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazservicebus","name":"rg-riparkazservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"messaging/azservicebus","Owners":"ripark","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkaznamespaces","name":"rg-riparkaznamespaces","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"messaging/eventgrid/aznamespaces","Owners":"ripark","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-swathipstorage","name":"rg-swathipstorage","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"storage","Owners":"swathip","DeleteAfter":"2025-01-26T22:17:50.4296899Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-177","name":"go-sdk-test-177","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/23/2025 08:15:38"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceeventhub","name":"rg-llawrenceeventhub","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-27T17:50:31.2824952Z","ServiceDirectory":"eventhub","Owners":"llawrence"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chloweazbatch","name":"rg-chloweazbatch","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"chlowe","DeleteAfter":"2025-01-27T19:26:00.9112619Z","ServiceDirectory":"batch/azbatch"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceservicebus","name":"rg-llawrenceservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-29T18:30:38.8051026Z","ServiceDirectory":"servicebus","Owners":"llawrence"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-swathipservicebus","name":"rg-swathipservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"servicebus","Owners":"swathip","DeleteAfter":"2025-01-27T23:21:49.2553458Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kashifkhanservicebus","name":"rg-kashifkhanservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-27T23:34:41.3453953Z","Owners":"kashifkhan","ServiceDirectory":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-conniey-eh0","name":"rg-conniey-eh0","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-28T20:31:01.5670010Z","ServiceDirectory":"eventhubs","Owners":"conniey"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-conniey-eh01","name":"rg-conniey-eh01","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-28T22:27:57.5082464Z","Owners":"conniey","ServiceDirectory":"eventhubs"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-benappconfiguration","name":"rg-benappconfiguration","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ben","ServiceDirectory":"appconfiguration","DeleteAfter":"2025-01-29T20:57:45.8764493Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazeventhubs2","name":"rg-riparkazeventhubs2","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ripark","ServiceDirectory":"messaging/azeventhubs","DeleteAfter":"2025-01-29T22:13:48.6457998Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-conniey-eh02","name":"rg-conniey-eh02","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"conniey","ServiceDirectory":"eventhubs","DeleteAfter":"2025-01-29T23:11:13.4589864Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg","name":"rg-stress-secrets-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg","name":"rg-stress-cluster-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-nodes-s1-stress-pg-pg","name":"rg-nodes-s1-stress-pg-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-stress-cluster-pg/providers/Microsoft.ContainerService/managedClusters/stress-pg","tags":{"DoNotDelete":"","aks-managed-cluster-name":"stress-pg","aks-managed-cluster-rg":"rg-stress-cluster-pg","environment":"pg","owners":"bebroder, albertcheng"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdev-dev","name":"rg-azdev-dev","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","product":"azdev","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan-search","name":"xiangyan-search","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan-apiview-gpt","name":"xiangyan-apiview-gpt","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-sdk-dotnet","name":"jsquire-sdk-dotnet","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"purpose":"local development","owner":"Jesse Squire","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/billwert-acrrg","name":"billwert-acrrg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"2025-02-05T19:08:55.2162878Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/antisch-cmtest","name":"antisch-cmtest","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/vigera-group","name":"vigera-group","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"01/26/2025 20:15:08"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/yumeng-js-test","name":"yumeng-js-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"01/28/2025 00:14:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119","name":"sameal-rg-0119","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"01/30/2025 00:14:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-queuew-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-queuew-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildId":"","ServiceDirectory":"/azure/","BuildNumber":"","DeleteAfter":"2025-01-28T17:38:02.4681872Z","BuildJob":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-aqueuepullw-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-aqueuepullw-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildNumber":"","Owners":"","DeleteAfter":"2025-01-28T17:38:02.5996863Z","ServiceDirectory":"/azure/","BuildJob":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-batchw-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-batchw-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","ServiceDirectory":"/azure/","BuildNumber":"","DeleteAfter":"2025-01-28T17:38:02.6956727Z","Owners":"","BuildId":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-batch-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-batch-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-28T17:38:02.9712344Z","BuildId":"","BuildJob":"","BuildReason":"","Owners":"","BuildNumber":"","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-aqueuepull-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-aqueuepull-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildReason":"","BuildId":"","Owners":"","ServiceDirectory":"/azure/","DeleteAfter":"2025-01-28T17:38:03.0072814Z","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-aqueue-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-aqueue-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildNumber":"","DeleteAfter":"2025-01-28T17:38:03.2165486Z","ServiceDirectory":"/azure/","Owners":"","BuildReason":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-aqueuew-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-aqueuew-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildReason":"","Owners":"","DeleteAfter":"2025-01-28T17:38:03.3367512Z","BuildId":"","ServiceDirectory":"/azure/","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-queuepull-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-queuepull-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","ServiceDirectory":"/azure/","Owners":"","BuildNumber":"","BuildJob":"","DeleteAfter":"2025-01-28T17:38:02.8532792Z","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-queue-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-queue-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","DeleteAfter":"2025-01-28T17:38:04.0233723Z","BuildJob":"","BuildId":"","BuildReason":"","Owners":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-abatchw-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-abatchw-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildId":"","DeleteAfter":"2025-01-28T17:38:04.3146253Z","BuildNumber":"","BuildReason":"","ServiceDirectory":"/azure/","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-queuepullw-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-queuepullw-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","ServiceDirectory":"/azure/","DeleteAfter":"2025-01-28T17:38:04.1130514Z","Owners":"","BuildJob":"","BuildNumber":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbcontrolfinal-dockerfile-abatch-py-sb-stress-test-1","name":"sbcontrolfinal-dockerfile-abatch-py-sb-stress-test-1","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","BuildJob":"","ServiceDirectory":"/azure/","BuildId":"","BuildNumber":"","DeleteAfter":"2025-01-28T17:38:04.8326422Z","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-aqueuepull-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-aqueuepull-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildId":"","DeleteAfter":"2025-01-28T17:41:53.1767113Z","ServiceDirectory":"/azure/","BuildReason":"","BuildNumber":"","BuildJob":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-batch-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-batch-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-28T17:41:53.4538813Z","BuildId":"","BuildReason":"","ServiceDirectory":"/azure/","BuildJob":"","Owners":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-abatchw-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-abatchw-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","BuildJob":"","BuildReason":"","BuildNumber":"","BuildId":"","DeleteAfter":"2025-01-28T17:41:54.1737440Z","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-queue-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-queue-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","Owners":"","BuildReason":"","BuildNumber":"","DeleteAfter":"2025-01-28T17:41:53.8610621Z","BuildId":"","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-aqueue-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-aqueue-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","Owners":"","ServiceDirectory":"/azure/","BuildId":"","BuildReason":"","BuildNumber":"","DeleteAfter":"2025-01-28T17:41:54.3781896Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-queuew-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-queuew-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","DeleteAfter":"2025-01-28T17:41:53.9485761Z","BuildReason":"","ServiceDirectory":"/azure/","BuildJob":"","Owners":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-batchw-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-batchw-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","BuildReason":"","DeleteAfter":"2025-01-28T17:41:54.3337634Z","BuildJob":"","BuildNumber":"","BuildId":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-queuepull-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-queuepull-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildReason":"","Owners":"","BuildNumber":"","BuildJob":"","DeleteAfter":"2025-01-28T17:41:54.3198437Z","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-aqueuepullw-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-aqueuepullw-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildId":"","Owners":"","BuildReason":"","DeleteAfter":"2025-01-28T17:41:54.5404984Z","BuildNumber":"","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-abatch-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-abatch-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-28T17:41:54.5649789Z","BuildJob":"","BuildNumber":"","BuildReason":"","Owners":"","ServiceDirectory":"/azure/","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-aqueuew-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-aqueuew-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","BuildReason":"","ServiceDirectory":"/azure/","Owners":"","BuildNumber":"","BuildId":"","DeleteAfter":"2025-01-28T17:41:54.8005523Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sbretryfinal-dockerfile-queuepullw-py-sb-stress-test-3","name":"sbretryfinal-dockerfile-queuepullw-py-sb-stress-test-3","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildId":"","BuildReason":"","Owners":"","ServiceDirectory":"/azure/","BuildJob":"","BuildNumber":"","DeleteAfter":"2025-01-28T17:41:55.3671020Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv","name":"rg-weilim-env-kv","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"01/31/2025 20:13:39"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg","name":"mcpatino-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"02/01/2025 00:15:13"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-batchasync-stress-py-eh-6","name":"ehretryfinal-dockerfile-batchasync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","DeleteAfter":"2025-01-29T16:52:57.7945300Z","BuildNumber":"","Owners":"","BuildReason":"","BuildJob":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-eventasync-stress-py-eh-6","name":"ehretryfinal-dockerfile-eventasync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildJob":"","Owners":"","BuildReason":"","BuildId":"","ServiceDirectory":"/azure/","DeleteAfter":"2025-01-29T16:52:58.3090280Z","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-batchsync-stress-py-eh-6","name":"ehretryfinal-dockerfile-batchsync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","ServiceDirectory":"/azure/","BuildNumber":"","BuildReason":"","BuildJob":"","BuildId":"","DeleteAfter":"2025-01-29T16:53:22.9439063Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-syncwebsockets-stress-py-eh-6","name":"ehretryfinal-dockerfile-syncwebsockets-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildReason":"","ServiceDirectory":"/azure/","BuildNumber":"","Owners":"","DeleteAfter":"2025-01-29T16:53:24.6222830Z","BuildJob":"","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-bplistasync-stress-py-eh-6","name":"ehretryfinal-dockerfile-bplistasync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildJob":"","BuildId":"","ServiceDirectory":"/azure/","DeleteAfter":"2025-01-29T16:53:24.7796237Z","BuildReason":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-asyncwebsockets-stress-py-eh-6","name":"ehretryfinal-dockerfile-asyncwebsockets-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildJob":"","DeleteAfter":"2025-01-29T16:53:24.8559209Z","BuildReason":"","BuildNumber":"","ServiceDirectory":"/azure/","BuildId":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-bplistsync-stress-py-eh-6","name":"ehretryfinal-dockerfile-bplistsync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"Owners":"","BuildNumber":"","BuildId":"","BuildReason":"","BuildJob":"","ServiceDirectory":"/azure/","DeleteAfter":"2025-01-29T16:53:25.1453362Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-bpsync-stress-py-eh-6","name":"ehretryfinal-dockerfile-bpsync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"BuildNumber":"","BuildId":"","Owners":"","DeleteAfter":"2025-01-29T16:53:25.1594201Z","BuildReason":"","BuildJob":"","ServiceDirectory":"/azure/"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-asyncbatchweb-stress-py-eh-6","name":"ehretryfinal-dockerfile-asyncbatchweb-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-29T16:53:25.2301546Z","ServiceDirectory":"/azure/","BuildJob":"","BuildNumber":"","Owners":"","BuildId":"","BuildReason":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-bpasync-stress-py-eh-6","name":"ehretryfinal-dockerfile-bpasync-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"ServiceDirectory":"/azure/","BuildReason":"","BuildId":"","DeleteAfter":"2025-01-29T16:53:25.4545126Z","Owners":"","BuildJob":"","BuildNumber":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ehretryfinal-dockerfile-syncbatchweb-stress-py-eh-6","name":"ehretryfinal-dockerfile-syncbatchweb-stress-py-eh-6","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"2025-01-29T16:53:25.4782304Z","BuildJob":"","ServiceDirectory":"/azure/","BuildReason":"","BuildId":"","BuildNumber":"","Owners":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-sarajama-3688_ai","name":"rg-sarajama-3688_ai","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"02/02/2025 16:15:26"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-unique-eventhub.namespaces-ehnkv-rg","name":"dep-unique-eventhub.namespaces-ehnkv-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"01/25/2025 04:12:25"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-unique-servicebus.namespaces-sbnkv-rg","name":"dep-unique-servicebus.namespaces-sbnkv-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"01/25/2025 04:12:26"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-cntso-network.virtualHub-nvhwaf-rg","name":"dep-cntso-network.virtualHub-nvhwaf-rg","type":"Microsoft.Resources/resourceGroups","location":"eastasia","tags":{"DeleteAfter":"07/09/2024 07:20:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec-service-adoption-mariog","name":"typespec-service-adoption-mariog","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":""," Owners":"marioguerra"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejasearchservice","name":"rg-shrejasearchservice","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"ServiceDirectory":"search","DeleteAfter":"2025-10-23T04:00:14.3477795Z","Owners":"shreja","DoNotDelete":"AI Chat Protocol Demo"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-o12r-max","name":"rg-o12r-max","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter","name":"rg-wb-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wb-devcenter","DeleteAfter":"09/05/2024 23:19:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-1121","name":"rg-jinlong-1121","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/09/2024 12:06:59"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-test-tc-final","name":"rg-test-tc-final","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/10/2024 11:13:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-bicep-registry","name":"rg-wabrez-bicep-registry","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-fenglongdev","name":"rg-fenglongdev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"fenglongdev","DeleteAfter":"12/12/2024 04:18:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xutong-monthly-release-test","name":"xutong-monthly-release-test","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b","name":"cm0ddf918b146443b","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-test-gha","name":"rg-hemarina-test-gha","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"hemarina-test-gha","DeleteAfter":"01/25/2025 20:15:16"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-matell-dev","name":"rg-matell-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"matell-dev","DeleteAfter":"01/31/2025 04:14:13"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets","name":"rg-vivazqu-with-secrets","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vivazqu-with-secrets","secured":"akvs://faa080af-c1d8-40ad-9cce-e1a450ca5b57/vivazqu-secrets/SEC-REF-kv-secret","DeleteAfter":"02/02/2025 04:12:34"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jcnew","name":"rg-jcnew","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"jcnew","DeleteAfter":"01/25/2025 20:10:41"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kz34-max","name":"rg-kz34-max","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec-ide-telemetry","name":"typespec-ide-telemetry","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-xsh-virtualmachineimages.imagetemplates-vmiitmax-rg","name":"dep-xsh-virtualmachineimages.imagetemplates-vmiitmax-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/11/2024 19:25:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jinlongAZD","name":"jinlongAZD","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"07/12/2025 17:23:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-fenglongfeng","name":"rg-fenglongfeng","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"fenglongfeng","DeleteAfter":"01/01/2025 08:14:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo","name":"mario-typespec-e2e-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{" Owner":"marioguerra","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/tjprescott","name":"tjprescott","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/31/2025 20:13:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/anuchan-wm","name":"anuchan-wm","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:15"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen","name":"jeffreychen","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:17"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ahkha-rg","name":"ahkha-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:19"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai","name":"rg-rajeshkamal-6661_ai","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/02/2025 20:12:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-335","name":"go-sdk-test-335","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/25/2025 04:12:27"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-79","name":"go-sdk-test-79","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/25/2025 04:12:29"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-806","name":"go-sdk-test-806","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/25/2025 04:12:30"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan","name":"xiangyan","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/krpratic-rg","name":"krpratic-rg","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dataproduct48702-HostedResources-32E47270","name":"dataproduct48702-HostedResources-32E47270","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg73273/providers/Microsoft.NetworkAnalytics/dataProducts/dataproduct48702","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dataproduct72706-HostedResources-6BE50C22","name":"dataproduct72706-HostedResources-6BE50C22","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg39104/providers/Microsoft.NetworkAnalytics/dataProducts/dataproduct72706","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product89683-HostedResources-6EFC6FE2","name":"product89683-HostedResources-6EFC6FE2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg98573/providers/Microsoft.NetworkAnalytics/dataProducts/product89683","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product56057-HostedResources-081D2AD1","name":"product56057-HostedResources-081D2AD1","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg31226/providers/Microsoft.NetworkAnalytics/dataProducts/product56057","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product52308-HostedResources-5D5C105C","name":"product52308-HostedResources-5D5C105C","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg22243/providers/Microsoft.NetworkAnalytics/dataProducts/product52308","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product09392-HostedResources-6F71BABB","name":"product09392-HostedResources-6F71BABB","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg70288/providers/Microsoft.NetworkAnalytics/dataProducts/product09392","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product4lh001-HostedResources-20AFF06E","name":"product4lh001-HostedResources-20AFF06E","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest02/providers/Microsoft.NetworkAnalytics/dataProducts/product4lh001","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiaofeitest-HostedResources-38FAB8A0","name":"xiaofeitest-HostedResources-38FAB8A0","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-xiaofei/providers/Microsoft.NetworkAnalytics/dataProducts/xiaofeitest","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazeventhubs","name":"rg-riparkazeventhubs","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DeleteAfter":"01/25/2025 04:12:24"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/scaddie","name":"scaddie","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/openai-shared","name":"openai-shared","type":"Microsoft.Resources/resourceGroups","location":"swedencentral","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/wenjiefu","name":"wenjiefu","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DeleteAfter":"07/12/2024 17:23:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chriss","name":"chriss","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-centralus-eus2","name":"ResourceMoverRG-eastus-centralus-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/09/2023 21:30:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mdwgecko","name":"rg-mdwgecko","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/09/2023 21:31:22"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NI_nc-platEng-Dev_eastus2","name":"NI_nc-platEng-Dev_eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/PlatEng-Dev/providers/Microsoft.DevCenter/networkconnections/nc-platEng-Dev","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-contoso-i34nhebbt3526","name":"rg-contoso-i34nhebbt3526","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"devcenter4lh003","DeleteAfter":"11/08/2023 08:09:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdux","name":"azdux","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-devcenter","name":"rg-wabrez-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-devcenter","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-westus2-eus2","name":"ResourceMoverRG-eastus-westus2-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"05/11/2024 19:17:16"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/AzSecPackAutoConfigRG","name":"AzSecPackAutoConfigRG","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-raychen-test-wus","name":"rg-raychen-test-wus","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter ":"2024-12-30T12:30:00.000Z","owner":"raychen","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg40370","name":"rg40370","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/09/2023 21:33:47"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg16812","name":"rg16812","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/09/2023 21:33:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/msolomon-testing","name":"msolomon-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/senyangrg","name":"senyangrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"03/08/2024 00:08:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azsdk-pm-ai","name":"azsdk-pm-ai","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"TypeSpecChannelBot-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/bterlson-cadl","name":"bterlson-cadl","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration","name":"rg-shrejaappconfiguration","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-12-24T05:11:17.9627286Z","Owners":"shreja","ServiceDirectory":"appconfiguration"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc88170fa","name":"rgloc88170fa","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc0890584","name":"rgloc0890584","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llawrence-rg","name":"llawrence-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"11/23/2024 00:21:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazservicebus","name":"rg-riparkazservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"messaging/azservicebus","Owners":"ripark","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkaznamespaces","name":"rg-riparkaznamespaces","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"messaging/eventgrid/aznamespaces","Owners":"ripark","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-swathipstorage","name":"rg-swathipstorage","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"storage","Owners":"swathip","DeleteAfter":"2025-01-26T22:17:50.4296899Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-177","name":"go-sdk-test-177","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/23/2025 08:15:38"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceeventhub","name":"rg-llawrenceeventhub","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-27T17:50:31.2824952Z","ServiceDirectory":"eventhub","Owners":"llawrence"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chloweazbatch","name":"rg-chloweazbatch","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"chlowe","DeleteAfter":"2025-01-27T19:26:00.9112619Z","ServiceDirectory":"batch/azbatch"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceservicebus","name":"rg-llawrenceservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-29T18:30:38.8051026Z","ServiceDirectory":"servicebus","Owners":"llawrence"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-swathipservicebus","name":"rg-swathipservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"servicebus","Owners":"swathip","DeleteAfter":"2025-01-27T23:21:49.2553458Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kashifkhanservicebus","name":"rg-kashifkhanservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-27T23:34:41.3453953Z","Owners":"kashifkhan","ServiceDirectory":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-conniey-eh0","name":"rg-conniey-eh0","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-28T20:31:01.5670010Z","ServiceDirectory":"eventhubs","Owners":"conniey"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-conniey-eh01","name":"rg-conniey-eh01","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-28T22:27:57.5082464Z","Owners":"conniey","ServiceDirectory":"eventhubs"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-benappconfiguration","name":"rg-benappconfiguration","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ben","ServiceDirectory":"appconfiguration","DeleteAfter":"2025-01-29T20:57:45.8764493Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazeventhubs2","name":"rg-riparkazeventhubs2","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ripark","ServiceDirectory":"messaging/azeventhubs","DeleteAfter":"2025-01-29T22:13:48.6457998Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-conniey-eh02","name":"rg-conniey-eh02","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"conniey","ServiceDirectory":"eventhubs","DeleteAfter":"2025-01-29T23:11:13.4589864Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg","name":"rg-stress-secrets-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg","name":"rg-stress-cluster-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-nodes-s1-stress-pg-pg","name":"rg-nodes-s1-stress-pg-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-stress-cluster-pg/providers/Microsoft.ContainerService/managedClusters/stress-pg","tags":{"DoNotDelete":"","aks-managed-cluster-name":"stress-pg","aks-managed-cluster-rg":"rg-stress-cluster-pg","environment":"pg","owners":"bebroder, albertcheng"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdev-dev","name":"rg-azdev-dev","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","product":"azdev","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan-search","name":"xiangyan-search","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan-apiview-gpt","name":"xiangyan-apiview-gpt","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-sdk-dotnet","name":"jsquire-sdk-dotnet","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"purpose":"local development","owner":"Jesse Squire","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/billwert-acrrg","name":"billwert-acrrg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"2025-02-05T19:08:55.2162878Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/antisch-cmtest","name":"antisch-cmtest","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/yumeng-js-test","name":"yumeng-js-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"01/28/2025 00:14:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119","name":"sameal-rg-0119","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"01/30/2025 00:14:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv","name":"rg-weilim-env-kv","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"01/31/2025 20:13:39"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg","name":"mcpatino-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"02/01/2025 00:15:13"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-sarajama-3688_ai","name":"rg-sarajama-3688_ai","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"02/02/2025 16:15:26"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-eventhub.namespaces-ehnkv-rg","name":"dep-uni-eventhub.namespaces-ehnkv-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-cntso-network.virtualHub-nvhwaf-rg","name":"dep-cntso-network.virtualHub-nvhwaf-rg","type":"Microsoft.Resources/resourceGroups","location":"eastasia","tags":{"DeleteAfter":"07/09/2024 07:20:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec-service-adoption-mariog","name":"typespec-service-adoption-mariog","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":""," Owners":"marioguerra"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejasearchservice","name":"rg-shrejasearchservice","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"ServiceDirectory":"search","DeleteAfter":"2025-10-23T04:00:14.3477795Z","Owners":"shreja","DoNotDelete":"AI Chat Protocol Demo"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-o12r-max","name":"rg-o12r-max","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter","name":"rg-wb-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wb-devcenter","DeleteAfter":"09/05/2024 23:19:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-1121","name":"rg-jinlong-1121","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/09/2024 12:06:59"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-test-tc-final","name":"rg-test-tc-final","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/10/2024 11:13:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-bicep-registry","name":"rg-wabrez-bicep-registry","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-fenglongdev","name":"rg-fenglongdev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"fenglongdev","DeleteAfter":"12/12/2024 04:18:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xutong-monthly-release-test","name":"xutong-monthly-release-test","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b","name":"cm0ddf918b146443b","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-matell-dev","name":"rg-matell-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"matell-dev","DeleteAfter":"01/31/2025 04:14:13"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets","name":"rg-vivazqu-with-secrets","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vivazqu-with-secrets","secured":"akvs://faa080af-c1d8-40ad-9cce-e1a450ca5b57/vivazqu-secrets/SEC-REF-kv-secret","DeleteAfter":"02/02/2025 04:12:34"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kz34-max","name":"rg-kz34-max","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec-ide-telemetry","name":"typespec-ide-telemetry","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-xsh-virtualmachineimages.imagetemplates-vmiitmax-rg","name":"dep-xsh-virtualmachineimages.imagetemplates-vmiitmax-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/11/2024 19:25:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jinlongAZD","name":"jinlongAZD","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"07/12/2025 17:23:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-fenglongfeng","name":"rg-fenglongfeng","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"fenglongfeng","DeleteAfter":"01/01/2025 08:14:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo","name":"mario-typespec-e2e-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{" Owner":"marioguerra","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/tjprescott","name":"tjprescott","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/31/2025 20:13:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/anuchan-wm","name":"anuchan-wm","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:15"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen","name":"jeffreychen","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:17"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ahkha-rg","name":"ahkha-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:19"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai","name":"rg-rajeshkamal-6661_ai","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/02/2025 20:12:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/limolkova","name":"limolkova","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/04/2025 20:20:28"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/renhetestanddemo","name":"renhetestanddemo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/28/2025 08:10:39"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan","name":"xiangyan","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/krpratic-rg","name":"krpratic-rg","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "45431" + - "28104" Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:22:57 GMT + - Mon, 27 Jan 2025 18:39:11 GMT Expires: - "-1" Pragma: @@ -194,20 +194,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5bcf89daa4d1246a568f5cd429c2a56d + - 2ea710713f1b8017753cafad37b5f195 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - c436522b-70fb-476e-afd0-041d9b99d17b + - 7d743cf3-d238-43c1-a78d-8ddeafd768fd X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022257Z:c436522b-70fb-476e-afd0-041d9b99d17b + - WESTUS2:20250127T183911Z:7d743cf3-d238-43c1-a78d-8ddeafd768fd X-Msedge-Ref: - - 'Ref A: 2F3383618B8F4607BAA2D1B2F0E6905E Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:22:57Z' + - 'Ref A: 7FF3DE0CC9CD4FBD8C9803BC156B0380 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:39:11Z' status: 200 OK code: 200 - duration: 65.616859ms + duration: 59.651266ms - id: 3 request: proto: HTTP/1.1 @@ -235,8 +235,8 @@ interactions: User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 5bcf89daa4d1246a568f5cd429c2a56d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/azdtest-l415a1d-rg?api-version=2021-04-01 + - 2ea710713f1b8017753cafad37b5f195 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/azdtest-l5607e1-rg?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -246,7 +246,7 @@ interactions: trailer: {} content_length: 244 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg","name":"azdtest-l415a1d-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg","name":"azdtest-l5607e1-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}}' headers: Cache-Control: - no-cache @@ -255,7 +255,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:22:58 GMT + - Mon, 27 Jan 2025 18:39:12 GMT Expires: - "-1" Pragma: @@ -267,20 +267,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5bcf89daa4d1246a568f5cd429c2a56d + - 2ea710713f1b8017753cafad37b5f195 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 58cb26c2-45e5-4a25-ac00-be643963710a + - 68da50b5-9324-4466-9be2-e67d90971a66 X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022258Z:58cb26c2-45e5-4a25-ac00-be643963710a + - WESTUS2:20250127T183912Z:68da50b5-9324-4466-9be2-e67d90971a66 X-Msedge-Ref: - - 'Ref A: 9589EA321FB44C2688013B1E7F0E049D Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:22:57Z' + - 'Ref A: CD4CE9678F48486A87A16B8E70BEE709 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:39:11Z' status: 201 Created code: 201 - duration: 901.16486ms + duration: 921.689419ms - id: 4 request: proto: HTTP/1.1 @@ -308,8 +308,8 @@ interactions: User-Agent: - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 5bcf89daa4d1246a568f5cd429c2a56d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg/providers/Microsoft.KeyVault/vaults/azdtest-l415a1d-kva?api-version=2023-07-01 + - 2ea710713f1b8017753cafad37b5f195 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg/providers/Microsoft.KeyVault/vaults/azdtest-l5607e1-kva?api-version=2023-07-01 method: PUT response: proto: HTTP/2.0 @@ -319,7 +319,7 @@ interactions: trailer: {} content_length: 836 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg/providers/Microsoft.KeyVault/vaults/azdtest-l415a1d-kva","name":"azdtest-l415a1d-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-25T02:23:00.046Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-25T02:23:00.046Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-l415a1d-kva.vault.azure.net","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg/providers/Microsoft.KeyVault/vaults/azdtest-l5607e1-kva","name":"azdtest-l5607e1-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-27T18:39:13.628Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-27T18:39:13.628Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-l5607e1-kva.vault.azure.net","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' headers: Cache-Control: - no-cache @@ -328,7 +328,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:23:01 GMT + - Mon, 27 Jan 2025 18:39:14 GMT Expires: - "-1" Pragma: @@ -342,9 +342,9 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Client-Request-Id: - - 730065a2-add3-4572-98aa-37c58a1974e5 + - 51952d86-9ee0-4cd7-8b6e-803377ae782c X-Ms-Correlation-Request-Id: - - 5bcf89daa4d1246a568f5cd429c2a56d + - 2ea710713f1b8017753cafad37b5f195 X-Ms-Keyvault-Service-Version: - 1.5.1455.0 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: @@ -352,14 +352,14 @@ interactions: X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 3deb0530-c73c-40eb-be58-02ffb384a8c8 + - 81642d24-7576-4ca5-890e-959e5afa058d X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022301Z:3f7fbdeb-dcdd-4964-ad65-14836d9d6c26 + - WESTUS2:20250127T183915Z:c5ec1aa7-07bf-45f6-8ee2-531cd268dbc8 X-Msedge-Ref: - - 'Ref A: 2E864EA23C1A4B44ABBEB1635D406294 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:22:58Z' + - 'Ref A: 28E97B46344C4B36836F2F8B87CA33ED Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:39:12Z' status: 200 OK code: 200 - duration: 3.258057201s + duration: 2.605900386s - id: 5 request: proto: HTTP/1.1 @@ -381,8 +381,8 @@ interactions: User-Agent: - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 5bcf89daa4d1246a568f5cd429c2a56d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg/providers/Microsoft.KeyVault/vaults/azdtest-l415a1d-kva?api-version=2023-07-01 + - 2ea710713f1b8017753cafad37b5f195 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg/providers/Microsoft.KeyVault/vaults/azdtest-l5607e1-kva?api-version=2023-07-01 method: GET response: proto: HTTP/2.0 @@ -392,7 +392,7 @@ interactions: trailer: {} content_length: 837 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg/providers/Microsoft.KeyVault/vaults/azdtest-l415a1d-kva","name":"azdtest-l415a1d-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-25T02:23:00.046Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-25T02:23:00.046Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-l415a1d-kva.vault.azure.net/","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg/providers/Microsoft.KeyVault/vaults/azdtest-l5607e1-kva","name":"azdtest-l5607e1-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-27T18:39:13.628Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-27T18:39:13.628Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-l5607e1-kva.vault.azure.net/","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' headers: Cache-Control: - no-cache @@ -401,7 +401,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:23:01 GMT + - Mon, 27 Jan 2025 18:39:15 GMT Expires: - "-1" Pragma: @@ -415,9 +415,9 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Client-Request-Id: - - c03ab2ec-51c9-434a-b0ae-39bc45c48d9c + - c9b1fd75-f603-4009-9ac2-21b476602be4 X-Ms-Correlation-Request-Id: - - 5bcf89daa4d1246a568f5cd429c2a56d + - 2ea710713f1b8017753cafad37b5f195 X-Ms-Keyvault-Service-Version: - 1.5.1455.0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: @@ -425,14 +425,14 @@ interactions: X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - de683afb-92ff-4051-a36b-c28ba4ebb6ce + - 643c09c9-cf35-427b-a1cf-0bee4e9764b4 X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022301Z:e8158a5e-65b0-4141-8763-7c2e162c6a1b + - WESTUS2:20250127T183915Z:56890c91-e3a1-4154-bca3-f8dd5ba3c1a7 X-Msedge-Ref: - - 'Ref A: A7D08AC4D84740E7A15F9D53B1C1FAA4 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:23:01Z' + - 'Ref A: 9A0305A036A248068CCD8B514290776A Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:39:15Z' status: 200 OK code: 200 - duration: 247.33417ms + duration: 363.392102ms - id: 6 request: proto: HTTP/1.1 @@ -454,8 +454,8 @@ interactions: User-Agent: - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 5bcf89daa4d1246a568f5cd429c2a56d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg/providers/Microsoft.KeyVault/vaults/azdtest-l415a1d-kva?api-version=2023-07-01 + - 2ea710713f1b8017753cafad37b5f195 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg/providers/Microsoft.KeyVault/vaults/azdtest-l5607e1-kva?api-version=2023-07-01 method: GET response: proto: HTTP/2.0 @@ -465,7 +465,7 @@ interactions: trailer: {} content_length: 832 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg/providers/Microsoft.KeyVault/vaults/azdtest-l415a1d-kva","name":"azdtest-l415a1d-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-25T02:23:00.046Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-25T02:23:00.046Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-l415a1d-kva.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg/providers/Microsoft.KeyVault/vaults/azdtest-l5607e1-kva","name":"azdtest-l5607e1-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-27T18:39:13.628Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-27T18:39:13.628Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-l5607e1-kva.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' headers: Cache-Control: - no-cache @@ -474,7 +474,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:23:31 GMT + - Mon, 27 Jan 2025 18:39:45 GMT Expires: - "-1" Pragma: @@ -488,9 +488,9 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Client-Request-Id: - - de0be649-0578-4670-a926-a643bd39b6d2 + - b38d36a2-9700-4ef3-8dc0-dec3b8113819 X-Ms-Correlation-Request-Id: - - 5bcf89daa4d1246a568f5cd429c2a56d + - 2ea710713f1b8017753cafad37b5f195 X-Ms-Keyvault-Service-Version: - 1.5.1455.0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: @@ -498,14 +498,14 @@ interactions: X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 198b724c-700b-471f-bf34-6456fb7e1c90 + - 66404f6f-cf93-4ed5-a94d-c15b29aae758 X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022332Z:547be095-19d0-47a9-9ab7-7484e51597c6 + - WESTUS2:20250127T183945Z:d6ad5050-9710-4ab9-addf-67ce586c09d0 X-Msedge-Ref: - - 'Ref A: 1FA4D15C2EED44EFBE8112E0837DB0D7 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:23:31Z' + - 'Ref A: A252A263B015423B8566F42DF829F09A Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:39:45Z' status: 200 OK code: 200 - duration: 230.905119ms + duration: 200.059124ms - id: 7 request: proto: HTTP/1.1 @@ -533,8 +533,8 @@ interactions: User-Agent: - azsdk-go-armauthorization.RoleAssignmentsClient/v2.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 5bcf89daa4d1246a568f5cd429c2a56d - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg/providers/Microsoft.KeyVault/vaults/azdtest-l415a1d-kva/providers/Microsoft.Authorization/roleAssignments/4b07af59-ec30-42e7-9fc3-7b2c1760866e?api-version=2022-04-01 + - 2ea710713f1b8017753cafad37b5f195 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg/providers/Microsoft.KeyVault/vaults/azdtest-l5607e1-kva/providers/Microsoft.Authorization/roleAssignments/817da24c-131b-4b3e-a1a7-94d96f73a639?api-version=2022-04-01 method: PUT response: proto: HTTP/2.0 @@ -544,7 +544,7 @@ interactions: trailer: {} content_length: 991 uncompressed: false - body: '{"properties":{"roleDefinitionId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483","principalId":"62661785-adcf-4117-b9d0-22b3aa2b4ebf","principalType":"User","scope":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg/providers/Microsoft.KeyVault/vaults/azdtest-l415a1d-kva","condition":null,"conditionVersion":null,"createdOn":"2025-01-25T02:23:33.0861421Z","updatedOn":"2025-01-25T02:23:33.2931433Z","createdBy":null,"updatedBy":"62661785-adcf-4117-b9d0-22b3aa2b4ebf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg/providers/Microsoft.KeyVault/vaults/azdtest-l415a1d-kva/providers/Microsoft.Authorization/roleAssignments/4b07af59-ec30-42e7-9fc3-7b2c1760866e","type":"Microsoft.Authorization/roleAssignments","name":"4b07af59-ec30-42e7-9fc3-7b2c1760866e"}' + body: '{"properties":{"roleDefinitionId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483","principalId":"62661785-adcf-4117-b9d0-22b3aa2b4ebf","principalType":"User","scope":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg/providers/Microsoft.KeyVault/vaults/azdtest-l5607e1-kva","condition":null,"conditionVersion":null,"createdOn":"2025-01-27T18:39:46.6355253Z","updatedOn":"2025-01-27T18:39:46.8294706Z","createdBy":null,"updatedBy":"62661785-adcf-4117-b9d0-22b3aa2b4ebf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg/providers/Microsoft.KeyVault/vaults/azdtest-l5607e1-kva/providers/Microsoft.Authorization/roleAssignments/817da24c-131b-4b3e-a1a7-94d96f73a639","type":"Microsoft.Authorization/roleAssignments","name":"817da24c-131b-4b3e-a1a7-94d96f73a639"}' headers: Cache-Control: - no-cache @@ -553,7 +553,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:23:36 GMT + - Mon, 27 Jan 2025 18:39:51 GMT Expires: - "-1" Pragma: @@ -565,20 +565,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 5bcf89daa4d1246a568f5cd429c2a56d + - 2ea710713f1b8017753cafad37b5f195 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - d0080ca1-5e2b-440a-8200-613ef709f610 + - 0ab73d08-ba11-4498-bcc2-b95d6418bfe7 X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022336Z:6b0e8328-5fd4-4acf-ad61-40c822bdd197 + - WESTUS2:20250127T183951Z:9b742b43-7a1f-4290-aea5-4b7da4a4b0f7 X-Msedge-Ref: - - 'Ref A: 4229EB88081F48FF94A70F1AE1A0AE6A Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:23:32Z' + - 'Ref A: 88910521432345BA93EA0FBFFC8FACC7 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:39:46Z' status: 201 Created code: 201 - duration: 3.746830906s + duration: 5.012708814s - id: 8 request: proto: HTTP/1.1 @@ -587,7 +587,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -604,8 +604,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 5bcf89daa4d1246a568f5cd429c2a56d - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs?api-version=7.4 + - 2ea710713f1b8017753cafad37b5f195 + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs?api-version=7.4 method: PUT response: proto: HTTP/1.1 @@ -624,7 +624,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:23:36 GMT + - Mon, 27 Jan 2025 18:39:51 GMT Expires: - "-1" Pragma: @@ -636,16 +636,16 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 1d0367d5-1db5-4d83-aa19-e4abf91ae691 + - 3e59cd12-80e2-4ba2-99b1-bce897f09c2b status: 401 Unauthorized code: 401 - duration: 418.552531ms + duration: 369.254914ms - id: 9 request: proto: HTTP/1.1 @@ -654,7 +654,7 @@ interactions: content_length: 36 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: '{"value":"THIS IS THE SECRET VALUE"}' @@ -673,276 +673,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 5bcf89daa4d1246a568f5cd429c2a56d - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs?api-version=7.4 - method: PUT - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 794 - uncompressed: false - body: '{"error":{"code":"Forbidden","message":"Caller is not authorized to perform action on resource.\r\nIf role assignments, deny assignments or role definitions were changed recently, please observe propagation time.\r\nCaller: appid=04b07795-8ddb-461a-bbee-02f9e1bf7b46;oid=62661785-adcf-4117-b9d0-22b3aa2b4ebf;iss=https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\r\nAction: ''Microsoft.KeyVault/vaults/secrets/setSecret/action''\r\nResource: ''/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/azdtest-l415a1d-rg/providers/microsoft.keyvault/vaults/azdtest-l415a1d-kva/secrets/azdtest-l415a1d-kvs''\r\nAssignment: (not found)\r\nDenyAssignmentId: null\r\nDecisionReason: null \r\nVault: azdtest-l415a1d-kva;location=eastus2\r\n","innererror":{"code":"ForbiddenByRbac"}}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "794" - Content-Type: - - application/json; charset=utf-8 - Date: - - Sat, 25 Jan 2025 02:23:37 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000;includeSubDomains - X-Content-Type-Options: - - nosniff - X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; - X-Ms-Keyvault-Region: - - eastus2 - X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 - X-Ms-Request-Id: - - 87cbccf7-37e2-483b-be9b-77ce266b5bf2 - status: 403 Forbidden - code: 403 - duration: 187.286811ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - Content-Length: - - "0" - User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - 5bcf89daa4d1246a568f5cd429c2a56d - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs?api-version=7.4 - method: PUT - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 97 - uncompressed: false - body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "97" - Content-Type: - - application/json; charset=utf-8 - Date: - - Sat, 25 Jan 2025 02:23:42 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000;includeSubDomains - Www-Authenticate: - - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" - X-Content-Type-Options: - - nosniff - X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; - X-Ms-Keyvault-Region: - - eastus2 - X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 - X-Ms-Request-Id: - - ddee97b7-dfe5-44c4-8d3e-a8deb649a2f6 - status: 401 Unauthorized - code: 401 - duration: 80.779234ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 36 - transfer_encoding: [] - trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net - remote_addr: "" - request_uri: "" - body: '{"value":"THIS IS THE SECRET VALUE"}' - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - Content-Length: - - "36" - Content-Type: - - application/json - User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - 5bcf89daa4d1246a568f5cd429c2a56d - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs?api-version=7.4 - method: PUT - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 794 - uncompressed: false - body: '{"error":{"code":"Forbidden","message":"Caller is not authorized to perform action on resource.\r\nIf role assignments, deny assignments or role definitions were changed recently, please observe propagation time.\r\nCaller: appid=04b07795-8ddb-461a-bbee-02f9e1bf7b46;oid=62661785-adcf-4117-b9d0-22b3aa2b4ebf;iss=https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/\r\nAction: ''Microsoft.KeyVault/vaults/secrets/setSecret/action''\r\nResource: ''/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/azdtest-l415a1d-rg/providers/microsoft.keyvault/vaults/azdtest-l415a1d-kva/secrets/azdtest-l415a1d-kvs''\r\nAssignment: (not found)\r\nDenyAssignmentId: null\r\nDecisionReason: null \r\nVault: azdtest-l415a1d-kva;location=eastus2\r\n","innererror":{"code":"ForbiddenByRbac"}}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "794" - Content-Type: - - application/json; charset=utf-8 - Date: - - Sat, 25 Jan 2025 02:23:42 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000;includeSubDomains - X-Content-Type-Options: - - nosniff - X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; - X-Ms-Keyvault-Region: - - eastus2 - X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 - X-Ms-Request-Id: - - 15fb5c2e-0ce2-4cc5-a376-5d635fb117f5 - status: 403 Forbidden - code: 403 - duration: 80.044835ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - Content-Length: - - "0" - User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - 5bcf89daa4d1246a568f5cd429c2a56d - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs?api-version=7.4 - method: PUT - response: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - transfer_encoding: [] - trailer: {} - content_length: 97 - uncompressed: false - body: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing a Bearer or PoP token."}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - "97" - Content-Type: - - application/json; charset=utf-8 - Date: - - Sat, 25 Jan 2025 02:23:47 GMT - Expires: - - "-1" - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000;includeSubDomains - Www-Authenticate: - - Bearer authorization="https://login.microsoftonline.com/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" - X-Content-Type-Options: - - nosniff - X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; - X-Ms-Keyvault-Region: - - eastus2 - X-Ms-Keyvault-Service-Version: - - 1.9.2064.1 - X-Ms-Request-Id: - - 191f357e-97dd-47f2-8ec0-6cb11b15c980 - status: 401 Unauthorized - code: 401 - duration: 82.39083ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 36 - transfer_encoding: [] - trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net - remote_addr: "" - request_uri: "" - body: '{"value":"THIS IS THE SECRET VALUE"}' - form: {} - headers: - Accept: - - application/json - Accept-Encoding: - - gzip - Authorization: - - SANITIZED - Content-Length: - - "36" - Content-Type: - - application/json - User-Agent: - - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) - X-Ms-Correlation-Request-Id: - - 5bcf89daa4d1246a568f5cd429c2a56d - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs?api-version=7.4 + - 2ea710713f1b8017753cafad37b5f195 + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs?api-version=7.4 method: PUT response: proto: HTTP/1.1 @@ -952,7 +684,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs/2c0c7d0ae553496ea7be8a08c48357c7","attributes":{"enabled":true,"created":1737771827,"updated":1737771827,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs/c2e90ce56e2c4e2dae951dcdc7bc5566","attributes":{"enabled":true,"created":1738003192,"updated":1738003192,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -961,7 +693,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:23:47 GMT + - Mon, 27 Jan 2025 18:39:51 GMT Expires: - "-1" Pragma: @@ -971,19 +703,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 4b07af59ec3042e79fc37b2c1760866e + - 817da24c131b4b3ea1a794d96f73a639 X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 662ba6e1-c687-4a41-b2c6-51ebd43b6cd9 + - da61361d-5b4f-4f51-a5b9-4b8e34dffe68 status: 200 OK code: 200 - duration: 414.605247ms - - id: 14 + duration: 363.265108ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -991,7 +723,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1006,8 +738,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 983cefcee051f8a08a9fd3b92a1d5620 - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 + - b6aa18a3633f682b54c51885189b418f + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -1026,7 +758,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:23:51 GMT + - Mon, 27 Jan 2025 18:39:55 GMT Expires: - "-1" Pragma: @@ -1038,17 +770,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - ad279f6b-a215-402b-8ac1-a1e8ff7a7acc + - b0fa2cdf-f9ff-4855-bb23-9f9cc91bbb60 status: 401 Unauthorized code: 401 - duration: 80.749034ms - - id: 15 + duration: 80.33159ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -1056,7 +788,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1071,8 +803,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 983cefcee051f8a08a9fd3b92a1d5620 - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 + - b6aa18a3633f682b54c51885189b418f + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -1082,7 +814,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs/2c0c7d0ae553496ea7be8a08c48357c7","attributes":{"enabled":true,"created":1737771827,"updated":1737771827,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs/c2e90ce56e2c4e2dae951dcdc7bc5566","attributes":{"enabled":true,"created":1738003192,"updated":1738003192,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -1091,7 +823,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:23:51 GMT + - Mon, 27 Jan 2025 18:39:55 GMT Expires: - "-1" Pragma: @@ -1101,19 +833,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 4b07af59ec3042e79fc37b2c1760866e + - 817da24c131b4b3ea1a794d96f73a639 X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 532462cb-8eab-4d30-bbf1-2b19ec760ccd + - c7fd7f9f-b80b-4385-8f32-fbcd090fde1a status: 200 OK code: 200 - duration: 102.21249ms - - id: 16 + duration: 117.014031ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -1136,7 +868,7 @@ interactions: User-Agent: - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 983cefcee051f8a08a9fd3b92a1d5620 + - b6aa18a3633f682b54c51885189b418f url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -1156,7 +888,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:23:53 GMT + - Mon, 27 Jan 2025 18:39:58 GMT Expires: - "-1" Pragma: @@ -1168,21 +900,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 983cefcee051f8a08a9fd3b92a1d5620 + - b6aa18a3633f682b54c51885189b418f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 92b0b399-af65-40eb-881f-d9bb6c73ca9a + - 3355f5ee-43df-4894-8ff9-c794bca3928a X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022354Z:92b0b399-af65-40eb-881f-d9bb6c73ca9a + - WESTUS2:20250127T183959Z:3355f5ee-43df-4894-8ff9-c794bca3928a X-Msedge-Ref: - - 'Ref A: 56E16531F2004910893ED40288334993 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:23:51Z' + - 'Ref A: AFB23B1CD2A34CB78C2427C0BB42E040 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:39:55Z' status: 200 OK code: 200 - duration: 2.278095039s - - id: 17 + duration: 3.178649069s + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -1190,7 +922,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1205,8 +937,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 983cefcee051f8a08a9fd3b92a1d5620 - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 + - b6aa18a3633f682b54c51885189b418f + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -1225,7 +957,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:23:54 GMT + - Mon, 27 Jan 2025 18:39:58 GMT Expires: - "-1" Pragma: @@ -1237,17 +969,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 22651574-e932-4565-9457-06a5c9081995 + - 012e9c58-e3c7-4f67-8a29-7a91e22fc557 status: 401 Unauthorized code: 401 - duration: 79.832936ms - - id: 18 + duration: 73.092082ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -1255,7 +987,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1270,8 +1002,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 983cefcee051f8a08a9fd3b92a1d5620 - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 + - b6aa18a3633f682b54c51885189b418f + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -1281,7 +1013,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs/2c0c7d0ae553496ea7be8a08c48357c7","attributes":{"enabled":true,"created":1737771827,"updated":1737771827,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs/c2e90ce56e2c4e2dae951dcdc7bc5566","attributes":{"enabled":true,"created":1738003192,"updated":1738003192,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -1290,7 +1022,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:23:54 GMT + - Mon, 27 Jan 2025 18:39:58 GMT Expires: - "-1" Pragma: @@ -1300,19 +1032,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 4b07af59ec3042e79fc37b2c1760866e + - 817da24c131b4b3ea1a794d96f73a639 X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 5263b186-e9fb-4f49-88d4-383faeeedd78 + - 1132c46a-2d58-4fdf-820c-996e9addf09c status: 200 OK code: 200 - duration: 102.161992ms - - id: 19 + duration: 114.914429ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -1335,7 +1067,7 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 983cefcee051f8a08a9fd3b92a1d5620 + - b6aa18a3633f682b54c51885189b418f url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -1344,18 +1076,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 10911 + content_length: 4001 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "10911" + - "4001" Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:23:54 GMT + - Mon, 27 Jan 2025 18:39:59 GMT Expires: - "-1" Pragma: @@ -1367,21 +1099,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 983cefcee051f8a08a9fd3b92a1d5620 + - b6aa18a3633f682b54c51885189b418f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 6c77a59f-0e97-4a51-ae04-52d6faa3d376 + - a6419329-6a88-4592-902a-fe297c2f2b54 X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022354Z:6c77a59f-0e97-4a51-ae04-52d6faa3d376 + - WESTUS2:20250127T183959Z:a6419329-6a88-4592-902a-fe297c2f2b54 X-Msedge-Ref: - - 'Ref A: 7BA57EBE55654625B9490862B42BBA07 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:23:54Z' + - 'Ref A: 151A41A158D04FE88ECE138499A89B77 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:39:59Z' status: 200 OK code: 200 - duration: 492.965093ms - - id: 20 + duration: 148.162367ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -1392,7 +1124,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-l415a1d"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.33.13.18514","templateHash":"7230513710032888086"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-l415a1d","azd-provision-param-hash":"f2ff9dff54afda829e81796efd77d8b236f30be605d598bb30e5e78d7411ab51"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-l5607e1"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.33.13.18514","templateHash":"7230513710032888086"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-l5607e1","azd-provision-param-hash":"c74f447dbeb881a1873a4cb623bf79db7f0d21f4179eee995d0b9b172855ca42"}}' form: {} headers: Accept: @@ -1408,8 +1140,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 983cefcee051f8a08a9fd3b92a1d5620 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769?api-version=2021-04-01 + - b6aa18a3633f682b54c51885189b418f + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -1417,20 +1149,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 893 + content_length: 892 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769","name":"azdtest-l415a1d-1737771769","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l415a1d","azd-provision-param-hash":"f2ff9dff54afda829e81796efd77d8b236f30be605d598bb30e5e78d7411ab51"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l415a1d"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-25T02:23:58.5025027Z","duration":"PT0.0006268S","correlationId":"983cefcee051f8a08a9fd3b92a1d5620","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143","name":"azdtest-l5607e1-1738003143","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l5607e1","azd-provision-param-hash":"c74f447dbeb881a1873a4cb623bf79db7f0d21f4179eee995d0b9b172855ca42"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l5607e1"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-27T18:40:02.283187Z","duration":"PT0.0009254S","correlationId":"b6aa18a3633f682b54c51885189b418f","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769/operationStatuses/08584638350502595779?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143/operationStatuses/08584636036855507777?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "893" + - "892" Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:23:59 GMT + - Mon, 27 Jan 2025 18:40:03 GMT Expires: - "-1" Pragma: @@ -1442,7 +1174,7 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 983cefcee051f8a08a9fd3b92a1d5620 + - b6aa18a3633f682b54c51885189b418f X-Ms-Deployment-Engine-Version: - 1.224.0 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: @@ -1450,15 +1182,15 @@ interactions: X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 9d30ea68-f550-4053-9c3a-30b51c69e1f3 + - 2cc88232-1a17-467e-9b0d-76e8edd202ad X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022400Z:9d30ea68-f550-4053-9c3a-30b51c69e1f3 + - WESTUS2:20250127T184003Z:2cc88232-1a17-467e-9b0d-76e8edd202ad X-Msedge-Ref: - - 'Ref A: FB47F68740E64AF5BC0E8FD7ACA27A12 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:23:54Z' + - 'Ref A: 77FD0595944F41F18BE7B79C1EBB39AC Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:39:59Z' status: 201 Created code: 201 - duration: 5.090803727s - - id: 21 + duration: 3.712916274s + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -1479,8 +1211,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 983cefcee051f8a08a9fd3b92a1d5620 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769/operationStatuses/08584638350502595779?api-version=2021-04-01 + - b6aa18a3633f682b54c51885189b418f + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143/operationStatuses/08584636036855507777?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1499,7 +1231,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:24:30 GMT + - Mon, 27 Jan 2025 18:40:33 GMT Expires: - "-1" Pragma: @@ -1511,21 +1243,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 983cefcee051f8a08a9fd3b92a1d5620 + - b6aa18a3633f682b54c51885189b418f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 508a8d7f-ca9f-48ca-bae2-989230d052c8 + - a56b4655-0058-490e-82d1-74c5b59049e0 X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022430Z:508a8d7f-ca9f-48ca-bae2-989230d052c8 + - WESTUS2:20250127T184033Z:a56b4655-0058-490e-82d1-74c5b59049e0 X-Msedge-Ref: - - 'Ref A: AAC8F7DEB91B45388F3180ED9FF5E3D4 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:24:30Z' + - 'Ref A: 2527D85B05AB4F9FA8D32F990B593E87 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:40:33Z' status: 200 OK code: 200 - duration: 206.985491ms - - id: 22 + duration: 291.403631ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -1546,8 +1278,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 983cefcee051f8a08a9fd3b92a1d5620 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769?api-version=2021-04-01 + - b6aa18a3633f682b54c51885189b418f + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1557,7 +1289,7 @@ interactions: trailer: {} content_length: 1101 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769","name":"azdtest-l415a1d-1737771769","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l415a1d","azd-provision-param-hash":"f2ff9dff54afda829e81796efd77d8b236f30be605d598bb30e5e78d7411ab51"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l415a1d"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-25T02:24:04.8340071Z","duration":"PT6.3321312S","correlationId":"983cefcee051f8a08a9fd3b92a1d5620","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l415a1d"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143","name":"azdtest-l5607e1-1738003143","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l5607e1","azd-provision-param-hash":"c74f447dbeb881a1873a4cb623bf79db7f0d21f4179eee995d0b9b172855ca42"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l5607e1"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-27T18:40:08.0362712Z","duration":"PT5.7540096S","correlationId":"b6aa18a3633f682b54c51885189b418f","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l5607e1"}]}}' headers: Cache-Control: - no-cache @@ -1566,7 +1298,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:24:30 GMT + - Mon, 27 Jan 2025 18:40:33 GMT Expires: - "-1" Pragma: @@ -1578,21 +1310,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 983cefcee051f8a08a9fd3b92a1d5620 + - b6aa18a3633f682b54c51885189b418f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - f9521289-437c-4470-8e0c-b444589320c0 + - bf18e241-e013-4b94-8766-78e562daeb76 X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022430Z:f9521289-437c-4470-8e0c-b444589320c0 + - WESTUS2:20250127T184034Z:bf18e241-e013-4b94-8766-78e562daeb76 X-Msedge-Ref: - - 'Ref A: F618A5F91ABE4A92B01912E487EFD8EE Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:24:30Z' + - 'Ref A: 4ADB3C81BE9246ECA1CD4A627E7DF549 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:40:33Z' status: 200 OK code: 200 - duration: 260.268685ms - - id: 23 + duration: 241.026873ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1615,8 +1347,8 @@ interactions: User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 983cefcee051f8a08a9fd3b92a1d5620 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l415a1d%27&api-version=2021-04-01 + - b6aa18a3633f682b54c51885189b418f + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l5607e1%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1626,7 +1358,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l415a1d","name":"rg-azdtest-l415a1d","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l415a1d"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l5607e1","name":"rg-azdtest-l5607e1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l5607e1"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1635,7 +1367,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:24:30 GMT + - Mon, 27 Jan 2025 18:40:34 GMT Expires: - "-1" Pragma: @@ -1647,21 +1379,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 983cefcee051f8a08a9fd3b92a1d5620 + - b6aa18a3633f682b54c51885189b418f X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16498" + - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1098" + - "1099" X-Ms-Request-Id: - - 76fffc40-6030-402d-a2dd-14b99636eb4c + - ef02b4fb-360e-4530-b935-bc89a4e63dc6 X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022430Z:76fffc40-6030-402d-a2dd-14b99636eb4c + - WESTUS2:20250127T184034Z:ef02b4fb-360e-4530-b935-bc89a4e63dc6 X-Msedge-Ref: - - 'Ref A: 4088E16189C34F8488408F7E962124FB Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:24:30Z' + - 'Ref A: 69E7F8F3D3404D0EA807AD80E9CAFB22 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:40:34Z' status: 200 OK code: 200 - duration: 67.403767ms - - id: 24 + duration: 56.038263ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1669,7 +1401,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1684,8 +1416,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 983cefcee051f8a08a9fd3b92a1d5620 - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 + - b6aa18a3633f682b54c51885189b418f + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -1704,7 +1436,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:24:30 GMT + - Mon, 27 Jan 2025 18:40:33 GMT Expires: - "-1" Pragma: @@ -1716,17 +1448,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - eaa1e15f-1999-406b-92d9-cf6ac5250c7d + - 1888f208-c927-402f-ae8d-0784b8edb1f4 status: 401 Unauthorized code: 401 - duration: 82.789236ms - - id: 25 + duration: 77.299687ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1734,7 +1466,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1749,8 +1481,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 983cefcee051f8a08a9fd3b92a1d5620 - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 + - b6aa18a3633f682b54c51885189b418f + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -1760,7 +1492,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs/2c0c7d0ae553496ea7be8a08c48357c7","attributes":{"enabled":true,"created":1737771827,"updated":1737771827,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs/c2e90ce56e2c4e2dae951dcdc7bc5566","attributes":{"enabled":true,"created":1738003192,"updated":1738003192,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -1769,7 +1501,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:24:30 GMT + - Mon, 27 Jan 2025 18:40:33 GMT Expires: - "-1" Pragma: @@ -1779,19 +1511,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 4b07af59ec3042e79fc37b2c1760866e + - 817da24c131b4b3ea1a794d96f73a639 X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 59cec7cb-ef8a-4e6f-b624-1c89ff2e7281 + - a9d2b9fe-db4c-4dc9-89d8-b11f738cfb56 status: 200 OK code: 200 - duration: 84.393533ms - - id: 26 + duration: 81.974493ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1814,7 +1546,7 @@ interactions: User-Agent: - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - d9bc7b83114f4c63e35d3c9ae98b0b8d + - cedc8461a2a5c400814e5f69c4193979 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 method: GET response: @@ -1823,18 +1555,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4302 + content_length: 3748 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-test-gha/providers/Microsoft.KeyVault/vaults/kv-d7e2iil2mbz6g","name":"kv-d7e2iil2mbz6g","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"hemarina-test-gha"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg/providers/Microsoft.KeyVault/vaults/azdtest-l415a1d-kva","name":"azdtest-l415a1d-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai/providers/Microsoft.KeyVault/vaults/kv-rajeshka371125419172","name":"kv-rajeshka371125419172","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-unique-eventhub.namespaces-ehnkv-rg/providers/Microsoft.KeyVault/vaults/dep-unique-kv-ehnkv","name":"dep-unique-kv-ehnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-unique-servicebus.namespaces-sbnkv-rg/providers/Microsoft.KeyVault/vaults/dep-unique-kv-sbnkv","name":"dep-unique-kv-sbnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg/providers/Microsoft.KeyVault/vaults/azdtest-l5607e1-kva","name":"azdtest-l5607e1-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai/providers/Microsoft.KeyVault/vaults/kv-rajeshka371125419172","name":"kv-rajeshka371125419172","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-eventhub.namespaces-ehnkv-rg/providers/Microsoft.KeyVault/vaults/dep-uni-kv-ehnkv","name":"dep-uni-kv-ehnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' headers: Cache-Control: - no-cache Content-Length: - - "4302" + - "3748" Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:24:31 GMT + - Mon, 27 Jan 2025 18:40:34 GMT Expires: - "-1" Pragma: @@ -1846,21 +1578,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - d9bc7b83114f4c63e35d3c9ae98b0b8d + - cedc8461a2a5c400814e5f69c4193979 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - fb2d0a47-d7b7-4d7e-b065-7148dbe88c10 + - 1991269f-ac04-4e59-bcd2-b4b8925560b0 X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022431Z:fb2d0a47-d7b7-4d7e-b065-7148dbe88c10 + - WESTUS2:20250127T184034Z:1991269f-ac04-4e59-bcd2-b4b8925560b0 X-Msedge-Ref: - - 'Ref A: FAED7A8DF69641FF9E0AC0AD883FC944 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:24:31Z' + - 'Ref A: 83E854A8BEB54C43BC289F5131FCEC26 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:40:34Z' status: 200 OK code: 200 - duration: 211.918381ms - - id: 27 + duration: 279.212617ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1868,7 +1600,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1885,8 +1617,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - d9bc7b83114f4c63e35d3c9ae98b0b8d - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs2?api-version=7.4 + - cedc8461a2a5c400814e5f69c4193979 + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs2?api-version=7.4 method: PUT response: proto: HTTP/1.1 @@ -1905,7 +1637,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:24:31 GMT + - Mon, 27 Jan 2025 18:40:34 GMT Expires: - "-1" Pragma: @@ -1917,17 +1649,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - f4380743-1160-485e-941e-d6311d4c759a + - ed5e18a3-429b-4807-a59f-f810496b33dc status: 401 Unauthorized code: 401 - duration: 76.352049ms - - id: 28 + duration: 68.806778ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1935,7 +1667,7 @@ interactions: content_length: 40 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: '{"value":"THIS IS THE NEW SECRET VALUE"}' @@ -1954,8 +1686,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - d9bc7b83114f4c63e35d3c9ae98b0b8d - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs2?api-version=7.4 + - cedc8461a2a5c400814e5f69c4193979 + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs2?api-version=7.4 method: PUT response: proto: HTTP/1.1 @@ -1965,7 +1697,7 @@ interactions: trailer: {} content_length: 286 uncompressed: false - body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs2/9f0c6a6b63b54f9aac3b78df1f238db3","attributes":{"enabled":true,"created":1737771871,"updated":1737771871,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs2/48f17e06794943b691978cda2c3576cb","attributes":{"enabled":true,"created":1738003235,"updated":1738003235,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -1974,7 +1706,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:24:31 GMT + - Mon, 27 Jan 2025 18:40:34 GMT Expires: - "-1" Pragma: @@ -1984,19 +1716,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 4b07af59ec3042e79fc37b2c1760866e + - 817da24c131b4b3ea1a794d96f73a639 X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - fc9ebb3a-0520-413f-8bf5-d6d6dea69f0d + - 3a12e389-1506-40f9-bf3e-8d32305ecf11 status: 200 OK code: 200 - duration: 147.015009ms - - id: 29 + duration: 137.995857ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -2004,7 +1736,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2019,8 +1751,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - f9d01e1e244df8a9c4b88d06f2ee557f - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs2/?api-version=7.4 + - dc1972e27119d03754458fd6f5b22463 + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs2/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -2039,7 +1771,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:24:34 GMT + - Mon, 27 Jan 2025 18:40:37 GMT Expires: - "-1" Pragma: @@ -2051,17 +1783,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 80898e6b-6d4e-498f-b5e9-59f9653d06f3 + - 42c0887a-b14c-4a23-80aa-565134714872 status: 401 Unauthorized code: 401 - duration: 81.508539ms - - id: 30 + duration: 184.78831ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -2069,7 +1801,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2084,8 +1816,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - f9d01e1e244df8a9c4b88d06f2ee557f - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs2/?api-version=7.4 + - dc1972e27119d03754458fd6f5b22463 + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs2/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -2095,7 +1827,7 @@ interactions: trailer: {} content_length: 286 uncompressed: false - body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs2/9f0c6a6b63b54f9aac3b78df1f238db3","attributes":{"enabled":true,"created":1737771871,"updated":1737771871,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs2/48f17e06794943b691978cda2c3576cb","attributes":{"enabled":true,"created":1738003235,"updated":1738003235,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -2104,7 +1836,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:24:34 GMT + - Mon, 27 Jan 2025 18:40:37 GMT Expires: - "-1" Pragma: @@ -2114,19 +1846,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 4b07af59ec3042e79fc37b2c1760866e + - 817da24c131b4b3ea1a794d96f73a639 X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 740da4ad-0206-4b45-bea7-0b63301ea3fa + - 45b18ff3-e90e-49dd-8c5d-2acf84ae237b status: 200 OK code: 200 - duration: 86.876428ms - - id: 31 + duration: 84.315696ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -2149,7 +1881,7 @@ interactions: User-Agent: - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - f9d01e1e244df8a9c4b88d06f2ee557f + - dc1972e27119d03754458fd6f5b22463 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -2169,7 +1901,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:24:37 GMT + - Mon, 27 Jan 2025 18:40:41 GMT Expires: - "-1" Pragma: @@ -2181,21 +1913,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f9d01e1e244df8a9c4b88d06f2ee557f + - dc1972e27119d03754458fd6f5b22463 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - bda51941-c3aa-418d-a768-40d957e01381 + - 84ab2f4d-a4dd-4e76-aa66-3327f58fb593 X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022437Z:bda51941-c3aa-418d-a768-40d957e01381 + - WESTUS2:20250127T184041Z:84ab2f4d-a4dd-4e76-aa66-3327f58fb593 X-Msedge-Ref: - - 'Ref A: 06FB75B4EC914F20A18D941EC642C9A3 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:24:35Z' + - 'Ref A: 82581469F4F7470F83902DEBFECA8BD6 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:40:38Z' status: 200 OK code: 200 - duration: 2.779673525s - - id: 32 + duration: 3.039425156s + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -2203,7 +1935,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2218,8 +1950,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - f9d01e1e244df8a9c4b88d06f2ee557f - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs2/?api-version=7.4 + - dc1972e27119d03754458fd6f5b22463 + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs2/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -2238,7 +1970,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:24:37 GMT + - Mon, 27 Jan 2025 18:40:41 GMT Expires: - "-1" Pragma: @@ -2250,17 +1982,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 85dbdbac-fecd-46c8-9345-90f2b9776168 + - bb9e36b7-c292-4582-8ef2-df80a76cce65 status: 401 Unauthorized code: 401 - duration: 77.985847ms - - id: 33 + duration: 72.686483ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -2268,7 +2000,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2283,8 +2015,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - f9d01e1e244df8a9c4b88d06f2ee557f - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs2/?api-version=7.4 + - dc1972e27119d03754458fd6f5b22463 + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs2/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -2294,7 +2026,7 @@ interactions: trailer: {} content_length: 286 uncompressed: false - body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs2/9f0c6a6b63b54f9aac3b78df1f238db3","attributes":{"enabled":true,"created":1737771871,"updated":1737771871,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs2/48f17e06794943b691978cda2c3576cb","attributes":{"enabled":true,"created":1738003235,"updated":1738003235,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -2303,7 +2035,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:24:37 GMT + - Mon, 27 Jan 2025 18:40:41 GMT Expires: - "-1" Pragma: @@ -2313,19 +2045,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 4b07af59ec3042e79fc37b2c1760866e + - 817da24c131b4b3ea1a794d96f73a639 X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 7573505b-e8d7-4401-a343-02771ec00e80 + - f3230641-b487-4dcd-87b5-dd5204903b48 status: 200 OK code: 200 - duration: 98.777606ms - - id: 34 + duration: 94.595908ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -2348,7 +2080,7 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - f9d01e1e244df8a9c4b88d06f2ee557f + - dc1972e27119d03754458fd6f5b22463 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -2357,18 +2089,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 13014 + content_length: 5103 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769","location":"eastus2","name":"azdtest-l415a1d-1737771769","properties":{"correlationId":"983cefcee051f8a08a9fd3b92a1d5620","dependencies":[],"duration":"PT6.3321312S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l415a1d"}],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-l415a1d"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"}]}],"provisioningState":"Succeeded","templateHash":"7230513710032888086","timestamp":"2025-01-25T02:24:04.8340071Z"},"tags":{"azd-env-name":"azdtest-l415a1d","azd-provision-param-hash":"f2ff9dff54afda829e81796efd77d8b236f30be605d598bb30e5e78d7411ab51"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143","location":"eastus2","name":"azdtest-l5607e1-1738003143","properties":{"correlationId":"b6aa18a3633f682b54c51885189b418f","dependencies":[],"duration":"PT5.7540096S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l5607e1"}],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-l5607e1"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"}]}],"provisioningState":"Succeeded","templateHash":"7230513710032888086","timestamp":"2025-01-27T18:40:08.0362712Z"},"tags":{"azd-env-name":"azdtest-l5607e1","azd-provision-param-hash":"c74f447dbeb881a1873a4cb623bf79db7f0d21f4179eee995d0b9b172855ca42"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "13014" + - "5103" Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:24:38 GMT + - Mon, 27 Jan 2025 18:40:42 GMT Expires: - "-1" Pragma: @@ -2380,21 +2112,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f9d01e1e244df8a9c4b88d06f2ee557f + - dc1972e27119d03754458fd6f5b22463 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - b78d86fd-8215-4e8d-bf53-94df7faaeb71 + - c519493d-2bed-4da5-b6f1-a4459ebbfc65 X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022438Z:b78d86fd-8215-4e8d-bf53-94df7faaeb71 + - WESTUS2:20250127T184042Z:c519493d-2bed-4da5-b6f1-a4459ebbfc65 X-Msedge-Ref: - - 'Ref A: 5C60D687A9CC46F4816077F6144A0CD8 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:24:38Z' + - 'Ref A: 0BB29710447A4400A81FA71C574464F3 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:40:42Z' status: 200 OK code: 200 - duration: 650.81452ms - - id: 35 + duration: 658.362349ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -2421,7 +2153,7 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - f9d01e1e244df8a9c4b88d06f2ee557f + - dc1972e27119d03754458fd6f5b22463 url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 method: POST response: @@ -2441,7 +2173,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:24:38 GMT + - Mon, 27 Jan 2025 18:40:42 GMT Expires: - "-1" Pragma: @@ -2453,19 +2185,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f9d01e1e244df8a9c4b88d06f2ee557f + - dc1972e27119d03754458fd6f5b22463 X-Ms-Ratelimit-Remaining-Tenant-Writes: - "799" X-Ms-Request-Id: - - 92c7f353-cd67-42f1-8363-30f10ab65ee6 + - febb35a2-1eb1-496a-813e-b400ddeb70af X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022438Z:92c7f353-cd67-42f1-8363-30f10ab65ee6 + - WESTUS2:20250127T184042Z:febb35a2-1eb1-496a-813e-b400ddeb70af X-Msedge-Ref: - - 'Ref A: 7328E3D027264666AD42540315DC49A1 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:24:38Z' + - 'Ref A: 74BE0BB13AFA4EDCBDF9540049E7C38D Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:40:42Z' status: 200 OK code: 200 - duration: 41.690319ms - - id: 36 + duration: 48.539955ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -2476,7 +2208,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-l415a1d"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE NEW SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.33.13.18514","templateHash":"7230513710032888086"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-l415a1d","azd-provision-param-hash":"7ee6aa975629e69ebb50b05a0bc59a34fe2553d6fcc4471a2d774e9777bcba87"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-l5607e1"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE NEW SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.33.13.18514","templateHash":"7230513710032888086"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-l5607e1","azd-provision-param-hash":"c7e80e82d0b04afa2ad043ea9881284ac2f24e1082c297bce212466a45065298"}}' form: {} headers: Accept: @@ -2492,8 +2224,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - f9d01e1e244df8a9c4b88d06f2ee557f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769?api-version=2021-04-01 + - dc1972e27119d03754458fd6f5b22463 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -2503,10 +2235,10 @@ interactions: trailer: {} content_length: 893 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769","name":"azdtest-l415a1d-1737771769","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l415a1d","azd-provision-param-hash":"7ee6aa975629e69ebb50b05a0bc59a34fe2553d6fcc4471a2d774e9777bcba87"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l415a1d"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-25T02:24:42.2656693Z","duration":"PT0.0002811S","correlationId":"f9d01e1e244df8a9c4b88d06f2ee557f","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143","name":"azdtest-l5607e1-1738003143","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l5607e1","azd-provision-param-hash":"c7e80e82d0b04afa2ad043ea9881284ac2f24e1082c297bce212466a45065298"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l5607e1"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-27T18:40:45.4915642Z","duration":"PT0.0007956S","correlationId":"dc1972e27119d03754458fd6f5b22463","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769/operationStatuses/08584638350061714767?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143/operationStatuses/08584636036421594978?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: @@ -2514,7 +2246,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:24:42 GMT + - Mon, 27 Jan 2025 18:40:45 GMT Expires: - "-1" Pragma: @@ -2526,7 +2258,7 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f9d01e1e244df8a9c4b88d06f2ee557f + - dc1972e27119d03754458fd6f5b22463 X-Ms-Deployment-Engine-Version: - 1.224.0 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: @@ -2534,15 +2266,15 @@ interactions: X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 901e430f-334f-4347-acfe-963bc9c62367 + - de3935be-184f-4cfc-b522-924e077adb74 X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022442Z:901e430f-334f-4347-acfe-963bc9c62367 + - WESTUS2:20250127T184046Z:de3935be-184f-4cfc-b522-924e077adb74 X-Msedge-Ref: - - 'Ref A: C8D285BB76A74BB28716AFB157309AF7 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:24:38Z' + - 'Ref A: AB530A6117834F6BAAE50C5BDC569677 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:40:42Z' status: 200 OK code: 200 - duration: 3.812208419s - - id: 37 + duration: 3.304477862s + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -2563,8 +2295,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - f9d01e1e244df8a9c4b88d06f2ee557f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769/operationStatuses/08584638350061714767?api-version=2021-04-01 + - dc1972e27119d03754458fd6f5b22463 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143/operationStatuses/08584636036421594978?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2583,7 +2315,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:25:12 GMT + - Mon, 27 Jan 2025 18:41:16 GMT Expires: - "-1" Pragma: @@ -2595,21 +2327,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f9d01e1e244df8a9c4b88d06f2ee557f + - dc1972e27119d03754458fd6f5b22463 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - a8d23eeb-2236-4083-a708-eb3558887a85 + - de370a7f-6e53-4db3-8ead-bb5569f76870 X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022513Z:a8d23eeb-2236-4083-a708-eb3558887a85 + - WESTUS2:20250127T184116Z:de370a7f-6e53-4db3-8ead-bb5569f76870 X-Msedge-Ref: - - 'Ref A: 188770A684AC467EB54A378E4DB9024F Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:25:12Z' + - 'Ref A: 6DC1449687DE4DA9884247597D4C4760 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:41:16Z' status: 200 OK code: 200 - duration: 231.348758ms - - id: 38 + duration: 200.19163ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -2630,8 +2362,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - f9d01e1e244df8a9c4b88d06f2ee557f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769?api-version=2021-04-01 + - dc1972e27119d03754458fd6f5b22463 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2641,7 +2373,7 @@ interactions: trailer: {} content_length: 1105 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769","name":"azdtest-l415a1d-1737771769","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l415a1d","azd-provision-param-hash":"7ee6aa975629e69ebb50b05a0bc59a34fe2553d6fcc4471a2d774e9777bcba87"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l415a1d"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-25T02:24:45.8983591Z","duration":"PT3.6329709S","correlationId":"f9d01e1e244df8a9c4b88d06f2ee557f","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE NEW SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l415a1d"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143","name":"azdtest-l5607e1-1738003143","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l5607e1","azd-provision-param-hash":"c7e80e82d0b04afa2ad043ea9881284ac2f24e1082c297bce212466a45065298"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l5607e1"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-27T18:40:49.1778099Z","duration":"PT3.6870413S","correlationId":"dc1972e27119d03754458fd6f5b22463","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE NEW SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l5607e1"}]}}' headers: Cache-Control: - no-cache @@ -2650,7 +2382,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:25:13 GMT + - Mon, 27 Jan 2025 18:41:16 GMT Expires: - "-1" Pragma: @@ -2662,21 +2394,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f9d01e1e244df8a9c4b88d06f2ee557f + - dc1972e27119d03754458fd6f5b22463 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 7f02e2d0-dd03-4b32-8543-104c1f6fbd6c + - dfd167f1-23ce-4414-988d-866b6e7827cd X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022513Z:7f02e2d0-dd03-4b32-8543-104c1f6fbd6c + - WESTUS2:20250127T184116Z:dfd167f1-23ce-4414-988d-866b6e7827cd X-Msedge-Ref: - - 'Ref A: 8D0C77F5F2194D3893607DCA5CCB2746 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:25:13Z' + - 'Ref A: 64F355CCA0394287B8D75586CFCB7519 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:41:16Z' status: 200 OK code: 200 - duration: 186.266644ms - - id: 39 + duration: 217.31475ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -2699,8 +2431,8 @@ interactions: User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - f9d01e1e244df8a9c4b88d06f2ee557f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l415a1d%27&api-version=2021-04-01 + - dc1972e27119d03754458fd6f5b22463 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l5607e1%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2710,7 +2442,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l415a1d","name":"rg-azdtest-l415a1d","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l415a1d"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l5607e1","name":"rg-azdtest-l5607e1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l5607e1"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -2719,7 +2451,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:25:13 GMT + - Mon, 27 Jan 2025 18:41:16 GMT Expires: - "-1" Pragma: @@ -2731,21 +2463,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - f9d01e1e244df8a9c4b88d06f2ee557f + - dc1972e27119d03754458fd6f5b22463 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - cb192586-2f3a-40b2-9743-3332fd02e5e5 + - 1c5a8c3b-5511-4a0e-b088-ec3e18a44b6c X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022513Z:cb192586-2f3a-40b2-9743-3332fd02e5e5 + - WESTUS2:20250127T184116Z:1c5a8c3b-5511-4a0e-b088-ec3e18a44b6c X-Msedge-Ref: - - 'Ref A: 08CC86DE11364C9495F85D36E90C9117 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:25:13Z' + - 'Ref A: AA7CD940D6334C4B93BD2340D4AD5DE2 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:41:16Z' status: 200 OK code: 200 - duration: 46.318812ms - - id: 40 + duration: 54.917963ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2753,7 +2485,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2768,8 +2500,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - f9d01e1e244df8a9c4b88d06f2ee557f - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs2/?api-version=7.4 + - dc1972e27119d03754458fd6f5b22463 + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs2/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -2788,7 +2520,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:25:12 GMT + - Mon, 27 Jan 2025 18:41:16 GMT Expires: - "-1" Pragma: @@ -2800,17 +2532,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 9e73d91b-3d96-488e-99a1-8c427c6d6b5e + - 041c3c59-13dd-40cc-b468-0272b83f4bb1 status: 401 Unauthorized code: 401 - duration: 81.999944ms - - id: 41 + duration: 74.165886ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2818,7 +2550,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2833,8 +2565,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - f9d01e1e244df8a9c4b88d06f2ee557f - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs2/?api-version=7.4 + - dc1972e27119d03754458fd6f5b22463 + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs2/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -2844,7 +2576,7 @@ interactions: trailer: {} content_length: 286 uncompressed: false - body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs2/9f0c6a6b63b54f9aac3b78df1f238db3","attributes":{"enabled":true,"created":1737771871,"updated":1737771871,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs2/48f17e06794943b691978cda2c3576cb","attributes":{"enabled":true,"created":1738003235,"updated":1738003235,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -2853,7 +2585,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:25:12 GMT + - Mon, 27 Jan 2025 18:41:16 GMT Expires: - "-1" Pragma: @@ -2863,19 +2595,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 4b07af59ec3042e79fc37b2c1760866e + - 817da24c131b4b3ea1a794d96f73a639 X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - de4942ab-861e-4e5e-9d8c-dec694a44d5e + - a31b6fb2-cc48-49cc-b464-065d03f01508 status: 200 OK code: 200 - duration: 84.12884ms - - id: 42 + duration: 78.082689ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2898,7 +2630,7 @@ interactions: User-Agent: - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 302f70f19983612a98c0d80b6dc7cc59 + - fa75c061d908ebea3c119030186807ee url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 method: GET response: @@ -2907,18 +2639,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4302 + content_length: 4008 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-hemarina-test-gha/providers/Microsoft.KeyVault/vaults/kv-d7e2iil2mbz6g","name":"kv-d7e2iil2mbz6g","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{"azd-env-name":"hemarina-test-gha"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l415a1d-rg/providers/Microsoft.KeyVault/vaults/azdtest-l415a1d-kva","name":"azdtest-l415a1d-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai/providers/Microsoft.KeyVault/vaults/kv-rajeshka371125419172","name":"kv-rajeshka371125419172","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-unique-eventhub.namespaces-ehnkv-rg/providers/Microsoft.KeyVault/vaults/dep-unique-kv-ehnkv","name":"dep-unique-kv-ehnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-unique-servicebus.namespaces-sbnkv-rg/providers/Microsoft.KeyVault/vaults/dep-unique-kv-sbnkv","name":"dep-unique-kv-sbnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg/providers/Microsoft.KeyVault/vaults/azdtest-l5607e1-kva","name":"azdtest-l5607e1-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai/providers/Microsoft.KeyVault/vaults/kv-rajeshka371125419172","name":"kv-rajeshka371125419172","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-eventhub.namespaces-ehnkv-rg/providers/Microsoft.KeyVault/vaults/dep-uni-kv-ehnkv","name":"dep-uni-kv-ehnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-servicebus.namespaces-sbnkv-rg/providers/Microsoft.KeyVault/vaults/dep-uni-kv-sbnkv","name":"dep-uni-kv-sbnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' headers: Cache-Control: - no-cache Content-Length: - - "4302" + - "4008" Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:25:13 GMT + - Mon, 27 Jan 2025 18:41:17 GMT Expires: - "-1" Pragma: @@ -2930,21 +2662,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 302f70f19983612a98c0d80b6dc7cc59 + - fa75c061d908ebea3c119030186807ee X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - ce3e4d90-e8f0-4ac4-b672-e87a2bcb4407 + - 19bd7516-aecf-441a-b135-7d93e54a9f51 X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022514Z:ce3e4d90-e8f0-4ac4-b672-e87a2bcb4407 + - WESTUS2:20250127T184117Z:19bd7516-aecf-441a-b135-7d93e54a9f51 X-Msedge-Ref: - - 'Ref A: 94146122CD0241899C8E2F50FC0676AC Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:25:13Z' + - 'Ref A: 36E7603D63FA4990977648AE6EB6BF8D Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:41:17Z' status: 200 OK code: 200 - duration: 205.473008ms - - id: 43 + duration: 224.529458ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2952,7 +2684,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2967,8 +2699,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 302f70f19983612a98c0d80b6dc7cc59 - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets?api-version=7.4 + - fa75c061d908ebea3c119030186807ee + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -2987,7 +2719,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:25:13 GMT + - Mon, 27 Jan 2025 18:41:16 GMT Expires: - "-1" Pragma: @@ -2999,17 +2731,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - f6c7383e-faef-4fd3-abb9-f5362037f3a4 + - 1486f641-59be-4b44-bca8-aa54511b785b status: 401 Unauthorized code: 401 - duration: 77.289453ms - - id: 44 + duration: 81.108093ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -3017,7 +2749,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -3032,8 +2764,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 302f70f19983612a98c0d80b6dc7cc59 - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets?api-version=7.4 + - fa75c061d908ebea3c119030186807ee + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -3043,7 +2775,7 @@ interactions: trailer: {} content_length: 456 uncompressed: false - body: '{"value":[{"id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs","attributes":{"enabled":true,"created":1737771827,"updated":1737771827,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}},{"id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs2","attributes":{"enabled":true,"created":1737771871,"updated":1737771871,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}],"nextLink":null}' + body: '{"value":[{"id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs","attributes":{"enabled":true,"created":1738003192,"updated":1738003192,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}},{"id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs2","attributes":{"enabled":true,"created":1738003235,"updated":1738003235,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}],"nextLink":null}' headers: Cache-Control: - no-cache @@ -3052,7 +2784,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:25:13 GMT + - Mon, 27 Jan 2025 18:41:16 GMT Expires: - "-1" Pragma: @@ -3062,19 +2794,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 4b07af59ec3042e79fc37b2c1760866e + - 817da24c131b4b3ea1a794d96f73a639 X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - a2537b1a-ff31-4b10-9af5-8d9f46cb7b34 + - 95388371-0103-4fff-9c91-589d89ec6978 status: 200 OK code: 200 - duration: 106.080097ms - - id: 45 + duration: 113.731931ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -3082,7 +2814,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -3097,8 +2829,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 1b8a71048ae589835488a5f3d6ae4f09 - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 + - e1fd0013e7e6e0b1900dfa7a67a5232b + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -3117,7 +2849,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:25:16 GMT + - Mon, 27 Jan 2025 18:41:20 GMT Expires: - "-1" Pragma: @@ -3129,17 +2861,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 3601d695-735f-4885-98fc-19d760d01fa3 + - 19ff8f8b-2f47-44c5-a4e7-f01335892ff6 status: 401 Unauthorized code: 401 - duration: 71.087764ms - - id: 46 + duration: 74.011185ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -3147,7 +2879,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -3162,8 +2894,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 1b8a71048ae589835488a5f3d6ae4f09 - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 + - e1fd0013e7e6e0b1900dfa7a67a5232b + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -3173,7 +2905,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs/2c0c7d0ae553496ea7be8a08c48357c7","attributes":{"enabled":true,"created":1737771827,"updated":1737771827,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs/c2e90ce56e2c4e2dae951dcdc7bc5566","attributes":{"enabled":true,"created":1738003192,"updated":1738003192,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -3182,7 +2914,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:25:16 GMT + - Mon, 27 Jan 2025 18:41:20 GMT Expires: - "-1" Pragma: @@ -3192,19 +2924,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 4b07af59ec3042e79fc37b2c1760866e + - 817da24c131b4b3ea1a794d96f73a639 X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - f5512de4-d60c-4000-a99f-adcb5fde8173 + - 56d9f296-0099-40a3-88fd-cee4247d7b00 status: 200 OK code: 200 - duration: 102.258005ms - - id: 47 + duration: 123.326242ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -3227,7 +2959,7 @@ interactions: User-Agent: - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 1b8a71048ae589835488a5f3d6ae4f09 + - e1fd0013e7e6e0b1900dfa7a67a5232b url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -3247,7 +2979,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:25:20 GMT + - Mon, 27 Jan 2025 18:41:23 GMT Expires: - "-1" Pragma: @@ -3259,21 +2991,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1b8a71048ae589835488a5f3d6ae4f09 + - e1fd0013e7e6e0b1900dfa7a67a5232b X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 0b23baf1-5f04-46f5-9b08-e999b7668975 + - 99431896-2986-4319-9c70-13fcb4d6e4e6 X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022520Z:0b23baf1-5f04-46f5-9b08-e999b7668975 + - WESTUS2:20250127T184123Z:99431896-2986-4319-9c70-13fcb4d6e4e6 X-Msedge-Ref: - - 'Ref A: 13BE93DF0943424890F5CA35226D596A Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:25:17Z' + - 'Ref A: 8CB717390E9342A38B0884D256137448 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:41:21Z' status: 200 OK code: 200 - duration: 3.033140835s - - id: 48 + duration: 2.770018686s + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -3281,7 +3013,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -3296,8 +3028,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 1b8a71048ae589835488a5f3d6ae4f09 - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 + - e1fd0013e7e6e0b1900dfa7a67a5232b + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -3316,7 +3048,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:25:19 GMT + - Mon, 27 Jan 2025 18:41:23 GMT Expires: - "-1" Pragma: @@ -3328,17 +3060,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 656146e5-b40e-4aa1-b499-c741e1565413 + - de0d3de5-4b2b-47fb-94ca-21a893d9b162 status: 401 Unauthorized code: 401 - duration: 77.011554ms - - id: 49 + duration: 74.035385ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -3346,7 +3078,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -3361,8 +3093,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 1b8a71048ae589835488a5f3d6ae4f09 - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 + - e1fd0013e7e6e0b1900dfa7a67a5232b + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -3372,7 +3104,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs/2c0c7d0ae553496ea7be8a08c48357c7","attributes":{"enabled":true,"created":1737771827,"updated":1737771827,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs/c2e90ce56e2c4e2dae951dcdc7bc5566","attributes":{"enabled":true,"created":1738003192,"updated":1738003192,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -3381,7 +3113,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:25:20 GMT + - Mon, 27 Jan 2025 18:41:23 GMT Expires: - "-1" Pragma: @@ -3391,19 +3123,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 4b07af59ec3042e79fc37b2c1760866e + - 817da24c131b4b3ea1a794d96f73a639 X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - c1823873-bd30-43a5-a66c-da7b05d603db + - 89346b6c-f12f-4cb3-b944-c80f2ad78469 status: 200 OK code: 200 - duration: 127.563058ms - - id: 50 + duration: 92.284206ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -3426,7 +3158,7 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 1b8a71048ae589835488a5f3d6ae4f09 + - e1fd0013e7e6e0b1900dfa7a67a5232b url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -3435,18 +3167,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 13457 + content_length: 7647 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769","location":"eastus2","name":"azdtest-l415a1d-1737771769","properties":{"correlationId":"f9d01e1e244df8a9c4b88d06f2ee557f","dependencies":[],"duration":"PT3.6329709S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l415a1d"}],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE NEW SECRET VALUE"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-l415a1d"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"}]}],"provisioningState":"Succeeded","templateHash":"7230513710032888086","timestamp":"2025-01-25T02:24:45.8983591Z"},"tags":{"azd-env-name":"azdtest-l415a1d","azd-provision-param-hash":"7ee6aa975629e69ebb50b05a0bc59a34fe2553d6fcc4471a2d774e9777bcba87"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143","location":"eastus2","name":"azdtest-l5607e1-1738003143","properties":{"correlationId":"dc1972e27119d03754458fd6f5b22463","dependencies":[],"duration":"PT3.6870413S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l5607e1"}],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE NEW SECRET VALUE"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-l5607e1"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"}]}],"provisioningState":"Succeeded","templateHash":"7230513710032888086","timestamp":"2025-01-27T18:40:49.1778099Z"},"tags":{"azd-env-name":"azdtest-l5607e1","azd-provision-param-hash":"c7e80e82d0b04afa2ad043ea9881284ac2f24e1082c297bce212466a45065298"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "13457" + - "7647" Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:25:21 GMT + - Mon, 27 Jan 2025 18:41:24 GMT Expires: - "-1" Pragma: @@ -3458,21 +3190,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1b8a71048ae589835488a5f3d6ae4f09 + - e1fd0013e7e6e0b1900dfa7a67a5232b X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - ffff2900-3404-4b7e-868e-9ec4972b0912 + - 7c9bfcc7-5932-4717-8dc5-593351b9b458 X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022521Z:ffff2900-3404-4b7e-868e-9ec4972b0912 + - WESTUS2:20250127T184124Z:7c9bfcc7-5932-4717-8dc5-593351b9b458 X-Msedge-Ref: - - 'Ref A: 6C8568239C1F41F1AC40547E030B1D48 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:25:20Z' + - 'Ref A: 81F5ACD421204789ABF73418D2505254 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:41:24Z' status: 200 OK code: 200 - duration: 493.895763ms - - id: 51 + duration: 499.713975ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -3499,7 +3231,7 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 1b8a71048ae589835488a5f3d6ae4f09 + - e1fd0013e7e6e0b1900dfa7a67a5232b url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 method: POST response: @@ -3519,7 +3251,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:25:21 GMT + - Mon, 27 Jan 2025 18:41:24 GMT Expires: - "-1" Pragma: @@ -3531,19 +3263,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1b8a71048ae589835488a5f3d6ae4f09 + - e1fd0013e7e6e0b1900dfa7a67a5232b X-Ms-Ratelimit-Remaining-Tenant-Writes: - "799" X-Ms-Request-Id: - - 64fc5fcb-f4d5-4a0a-9646-1f15128e2fba + - f4c0af8b-41fa-4a1a-8433-7c01a6127fea X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022521Z:64fc5fcb-f4d5-4a0a-9646-1f15128e2fba + - WESTUS2:20250127T184124Z:f4c0af8b-41fa-4a1a-8433-7c01a6127fea X-Msedge-Ref: - - 'Ref A: 3124BEB17E854CD9B2C2A7C1A8E86596 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:25:21Z' + - 'Ref A: 996ABA15728045D18947081B5F9FAEDC Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:41:24Z' status: 200 OK code: 200 - duration: 69.634268ms - - id: 52 + duration: 48.676056ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -3554,7 +3286,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-l415a1d"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.33.13.18514","templateHash":"7230513710032888086"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-l415a1d","azd-provision-param-hash":"f2ff9dff54afda829e81796efd77d8b236f30be605d598bb30e5e78d7411ab51"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-l5607e1"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.33.13.18514","templateHash":"7230513710032888086"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-l5607e1","azd-provision-param-hash":"c74f447dbeb881a1873a4cb623bf79db7f0d21f4179eee995d0b9b172855ca42"}}' form: {} headers: Accept: @@ -3570,8 +3302,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 1b8a71048ae589835488a5f3d6ae4f09 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769?api-version=2021-04-01 + - e1fd0013e7e6e0b1900dfa7a67a5232b + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -3581,10 +3313,10 @@ interactions: trailer: {} content_length: 893 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769","name":"azdtest-l415a1d-1737771769","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l415a1d","azd-provision-param-hash":"f2ff9dff54afda829e81796efd77d8b236f30be605d598bb30e5e78d7411ab51"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l415a1d"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-25T02:25:24.3601396Z","duration":"PT0.0002064S","correlationId":"1b8a71048ae589835488a5f3d6ae4f09","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143","name":"azdtest-l5607e1-1738003143","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l5607e1","azd-provision-param-hash":"c74f447dbeb881a1873a4cb623bf79db7f0d21f4179eee995d0b9b172855ca42"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l5607e1"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-27T18:41:28.1669692Z","duration":"PT0.0000985S","correlationId":"e1fd0013e7e6e0b1900dfa7a67a5232b","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769/operationStatuses/08584638349635190435?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143/operationStatuses/08584636036000927649?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: @@ -3592,7 +3324,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:25:24 GMT + - Mon, 27 Jan 2025 18:41:28 GMT Expires: - "-1" Pragma: @@ -3604,7 +3336,7 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1b8a71048ae589835488a5f3d6ae4f09 + - e1fd0013e7e6e0b1900dfa7a67a5232b X-Ms-Deployment-Engine-Version: - 1.224.0 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: @@ -3612,15 +3344,15 @@ interactions: X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 1784c148-3171-4af3-9b1a-e18c917ce880 + - 2089733f-7ad5-413a-bf8c-3459dfe12777 X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022524Z:1784c148-3171-4af3-9b1a-e18c917ce880 + - WESTUS2:20250127T184128Z:2089733f-7ad5-413a-bf8c-3459dfe12777 X-Msedge-Ref: - - 'Ref A: AED54E8E12434E9081AEABA209FA76B5 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:25:21Z' + - 'Ref A: F60BB728772E461DA21967F502583A8B Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:41:24Z' status: 200 OK code: 200 - duration: 3.311261227s - - id: 53 + duration: 3.788332461s + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -3641,8 +3373,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 1b8a71048ae589835488a5f3d6ae4f09 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769/operationStatuses/08584638349635190435?api-version=2021-04-01 + - e1fd0013e7e6e0b1900dfa7a67a5232b + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143/operationStatuses/08584636036000927649?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3661,7 +3393,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:25:55 GMT + - Mon, 27 Jan 2025 18:41:58 GMT Expires: - "-1" Pragma: @@ -3673,21 +3405,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1b8a71048ae589835488a5f3d6ae4f09 + - e1fd0013e7e6e0b1900dfa7a67a5232b X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 64a3fe19-ed3d-45a1-a9d3-8c79df519974 + - 2e4efd7b-aedc-4374-af51-382dcbae5f87 X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022555Z:64a3fe19-ed3d-45a1-a9d3-8c79df519974 + - WESTUS2:20250127T184159Z:2e4efd7b-aedc-4374-af51-382dcbae5f87 X-Msedge-Ref: - - 'Ref A: 533FEFE6DC064A93B3A8CA2265E00E75 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:25:55Z' + - 'Ref A: 0F3B2FB614E147AC96D6E418BEBE4D93 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:41:58Z' status: 200 OK code: 200 - duration: 320.790108ms - - id: 54 + duration: 278.925424ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -3708,8 +3440,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 1b8a71048ae589835488a5f3d6ae4f09 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769?api-version=2021-04-01 + - e1fd0013e7e6e0b1900dfa7a67a5232b + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3719,7 +3451,7 @@ interactions: trailer: {} content_length: 1101 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l415a1d-1737771769","name":"azdtest-l415a1d-1737771769","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l415a1d","azd-provision-param-hash":"f2ff9dff54afda829e81796efd77d8b236f30be605d598bb30e5e78d7411ab51"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l415a1d"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-25T02:25:28.1928357Z","duration":"PT3.8329025S","correlationId":"1b8a71048ae589835488a5f3d6ae4f09","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l415a1d"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143","name":"azdtest-l5607e1-1738003143","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l5607e1","azd-provision-param-hash":"c74f447dbeb881a1873a4cb623bf79db7f0d21f4179eee995d0b9b172855ca42"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l5607e1"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-27T18:41:31.2930132Z","duration":"PT3.1261425S","correlationId":"e1fd0013e7e6e0b1900dfa7a67a5232b","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l5607e1"}]}}' headers: Cache-Control: - no-cache @@ -3728,7 +3460,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:25:55 GMT + - Mon, 27 Jan 2025 18:41:59 GMT Expires: - "-1" Pragma: @@ -3740,21 +3472,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1b8a71048ae589835488a5f3d6ae4f09 + - e1fd0013e7e6e0b1900dfa7a67a5232b X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 062ba760-644a-4bec-9327-67a690c7cd36 + - bcd4ac84-a4f2-4a56-9ac5-23f1bba9c8ba X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022555Z:062ba760-644a-4bec-9327-67a690c7cd36 + - WESTUS2:20250127T184159Z:bcd4ac84-a4f2-4a56-9ac5-23f1bba9c8ba X-Msedge-Ref: - - 'Ref A: F6A31F2E4E224929ADADFA34CF9679C4 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:25:55Z' + - 'Ref A: 3D59B910E3AD4DFB9E2187BFDB9A8F93 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:41:59Z' status: 200 OK code: 200 - duration: 252.187034ms - - id: 55 + duration: 226.461563ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -3777,8 +3509,8 @@ interactions: User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 1b8a71048ae589835488a5f3d6ae4f09 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l415a1d%27&api-version=2021-04-01 + - e1fd0013e7e6e0b1900dfa7a67a5232b + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l5607e1%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3788,7 +3520,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l415a1d","name":"rg-azdtest-l415a1d","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l415a1d"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l5607e1","name":"rg-azdtest-l5607e1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l5607e1"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -3797,7 +3529,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:25:55 GMT + - Mon, 27 Jan 2025 18:41:59 GMT Expires: - "-1" Pragma: @@ -3809,21 +3541,21 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 1b8a71048ae589835488a5f3d6ae4f09 + - e1fd0013e7e6e0b1900dfa7a67a5232b X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 394984a9-79e5-45a9-9b71-a108197baac8 + - 3eacce7d-fde5-4d3d-b948-c6cfeeb61128 X-Ms-Routing-Request-Id: - - WESTUS2:20250125T022555Z:394984a9-79e5-45a9-9b71-a108197baac8 + - WESTUS2:20250127T184159Z:3eacce7d-fde5-4d3d-b948-c6cfeeb61128 X-Msedge-Ref: - - 'Ref A: C13DF9C34BF7426ABA1238BA2C88AAA1 Ref B: CO6AA3150217027 Ref C: 2025-01-25T02:25:55Z' + - 'Ref A: BB2E4D0FF3244903836892872EC77E48 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:41:59Z' status: 200 OK code: 200 - duration: 74.013163ms - - id: 56 + duration: 56.922466ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -3831,7 +3563,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -3846,8 +3578,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 1b8a71048ae589835488a5f3d6ae4f09 - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 + - e1fd0013e7e6e0b1900dfa7a67a5232b + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -3866,7 +3598,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:25:55 GMT + - Mon, 27 Jan 2025 18:41:59 GMT Expires: - "-1" Pragma: @@ -3878,17 +3610,17 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - bee0c937-8869-4544-a2cf-ed6e95a2c674 + - 746410c7-1861-4b80-afee-9025bc65f759 status: 401 Unauthorized code: 401 - duration: 76.219259ms - - id: 57 + duration: 83.430697ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -3896,7 +3628,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l415a1d-kva.vault.azure.net + host: azdtest-l5607e1-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -3911,8 +3643,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 1b8a71048ae589835488a5f3d6ae4f09 - url: https://azdtest-l415a1d-kva.vault.azure.net:443/secrets/azdtest-l415a1d-kvs/?api-version=7.4 + - e1fd0013e7e6e0b1900dfa7a67a5232b + url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -3922,7 +3654,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l415a1d-kva.vault.azure.net/secrets/azdtest-l415a1d-kvs/2c0c7d0ae553496ea7be8a08c48357c7","attributes":{"enabled":true,"created":1737771827,"updated":1737771827,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs/c2e90ce56e2c4e2dae951dcdc7bc5566","attributes":{"enabled":true,"created":1738003192,"updated":1738003192,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -3931,7 +3663,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sat, 25 Jan 2025 02:25:55 GMT + - Mon, 27 Jan 2025 18:41:59 GMT Expires: - "-1" Pragma: @@ -3941,18 +3673,18 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.75;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 4b07af59ec3042e79fc37b2c1760866e + - 817da24c131b4b3ea1a794d96f73a639 X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 18f7e29e-4826-49b0-9950-8dc629824e0c + - 882b82e5-b928-4a34-939b-26911821317b status: 200 OK code: 200 - duration: 94.949025ms + duration: 86.2204ms --- -env_name: azdtest-l415a1d -time: "1737771769" +env_name: azdtest-l5607e1 +time: "1738003143" From 4238976525ffa379cf1e103929aff2c4cc2f1eeb Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Mon, 27 Jan 2025 19:33:15 +0000 Subject: [PATCH 19/22] add subcription variable --- cli/azd/test/functional/cli_test.go | 7 + .../Test_CLI_EnvironmentSecrets.yaml | 945 +++++++++--------- 2 files changed, 480 insertions(+), 472 deletions(-) diff --git a/cli/azd/test/functional/cli_test.go b/cli/azd/test/functional/cli_test.go index 0d728501619..69e359c1fbd 100644 --- a/cli/azd/test/functional/cli_test.go +++ b/cli/azd/test/functional/cli_test.go @@ -457,6 +457,13 @@ func Test_CLI_EnvironmentSecrets(t *testing.T) { envValue, err = cli.RunCommand(ctx, "env", "get-value", "BICEP_OUTPUT") require.NoError(t, err) require.Contains(t, envValue.Stdout, kvsv) + + env, err := envFromAzdRoot(ctx, dir, envName) + require.NoError(t, err) + + if session != nil { + session.Variables[recording.SubscriptionIdKey] = env.GetSubscriptionId() + } } func Test_CLI_ProvisionStateWithDown(t *testing.T) { diff --git a/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvironmentSecrets.yaml b/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvironmentSecrets.yaml index d95bee92411..7aa7cef36c4 100644 --- a/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvironmentSecrets.yaml +++ b/cli/azd/test/functional/testdata/recordings/Test_CLI_EnvironmentSecrets.yaml @@ -24,7 +24,7 @@ interactions: User-Agent: - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 2ea710713f1b8017753cafad37b5f195 + - 5d923cd306c352ec436b414eda031f88 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 method: GET response: @@ -33,18 +33,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3502 + content_length: 3762 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai/providers/Microsoft.KeyVault/vaults/kv-rajeshka371125419172","name":"kv-rajeshka371125419172","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-eventhub.namespaces-ehnkv-rg/providers/Microsoft.KeyVault/vaults/dep-uni-kv-ehnkv","name":"dep-uni-kv-ehnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai/providers/Microsoft.KeyVault/vaults/kv-rajeshka371125419172","name":"kv-rajeshka371125419172","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-eventhub.namespaces-ehnkv-rg/providers/Microsoft.KeyVault/vaults/dep-uni-kv-ehnkv","name":"dep-uni-kv-ehnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-servicebus.namespaces-sbnkv-rg/providers/Microsoft.KeyVault/vaults/dep-uni-kv-sbnkv","name":"dep-uni-kv-sbnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' headers: Cache-Control: - no-cache Content-Length: - - "3502" + - "3762" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:39:07 GMT + - Mon, 27 Jan 2025 19:27:47 GMT Expires: - "-1" Pragma: @@ -56,20 +56,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ea710713f1b8017753cafad37b5f195 + - 5d923cd306c352ec436b414eda031f88 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - ac68c101-ef8e-4798-8625-f404d2492fec + - 6d04e565-fe50-44d2-a967-028b4f47b943 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T183907Z:ac68c101-ef8e-4798-8625-f404d2492fec + - WESTUS2:20250127T192747Z:6d04e565-fe50-44d2-a967-028b4f47b943 X-Msedge-Ref: - - 'Ref A: E9CBA7C5C0D94837A2ED8AFC2496E7DE Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:39:07Z' + - 'Ref A: 89E09323228742F6BB00F5295A06DBE3 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:27:46Z' status: 200 OK code: 200 - duration: 447.136994ms + duration: 331.096259ms - id: 1 request: proto: HTTP/1.1 @@ -93,7 +93,7 @@ interactions: User-Agent: - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 2ea710713f1b8017753cafad37b5f195 + - 5d923cd306c352ec436b414eda031f88 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -113,7 +113,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:39:11 GMT + - Mon, 27 Jan 2025 19:27:50 GMT Expires: - "-1" Pragma: @@ -125,20 +125,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ea710713f1b8017753cafad37b5f195 + - 5d923cd306c352ec436b414eda031f88 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - c63ba1f5-ad95-48e6-93ee-106034d7d7a6 + - c645a67a-6bc5-46d0-86de-e85a50b80f2b X-Ms-Routing-Request-Id: - - WESTUS2:20250127T183911Z:c63ba1f5-ad95-48e6-93ee-106034d7d7a6 + - WESTUS2:20250127T192750Z:c645a67a-6bc5-46d0-86de-e85a50b80f2b X-Msedge-Ref: - - 'Ref A: 4D926111A70B4233BFF34ACF962E3A38 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:39:07Z' + - 'Ref A: D1B54E28ADF44BD0ABDCFE7CCCDBB6BA Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:27:47Z' status: 200 OK code: 200 - duration: 3.506904477s + duration: 3.753724777s - id: 2 request: proto: HTTP/1.1 @@ -162,7 +162,7 @@ interactions: User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 2ea710713f1b8017753cafad37b5f195 + - 5d923cd306c352ec436b414eda031f88 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?api-version=2021-04-01 method: GET response: @@ -171,18 +171,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 28104 + content_length: 28379 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dataproduct48702-HostedResources-32E47270","name":"dataproduct48702-HostedResources-32E47270","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg73273/providers/Microsoft.NetworkAnalytics/dataProducts/dataproduct48702","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dataproduct72706-HostedResources-6BE50C22","name":"dataproduct72706-HostedResources-6BE50C22","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg39104/providers/Microsoft.NetworkAnalytics/dataProducts/dataproduct72706","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product89683-HostedResources-6EFC6FE2","name":"product89683-HostedResources-6EFC6FE2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg98573/providers/Microsoft.NetworkAnalytics/dataProducts/product89683","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product56057-HostedResources-081D2AD1","name":"product56057-HostedResources-081D2AD1","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg31226/providers/Microsoft.NetworkAnalytics/dataProducts/product56057","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product52308-HostedResources-5D5C105C","name":"product52308-HostedResources-5D5C105C","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg22243/providers/Microsoft.NetworkAnalytics/dataProducts/product52308","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product09392-HostedResources-6F71BABB","name":"product09392-HostedResources-6F71BABB","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg70288/providers/Microsoft.NetworkAnalytics/dataProducts/product09392","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product4lh001-HostedResources-20AFF06E","name":"product4lh001-HostedResources-20AFF06E","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest02/providers/Microsoft.NetworkAnalytics/dataProducts/product4lh001","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiaofeitest-HostedResources-38FAB8A0","name":"xiaofeitest-HostedResources-38FAB8A0","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-xiaofei/providers/Microsoft.NetworkAnalytics/dataProducts/xiaofeitest","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazeventhubs","name":"rg-riparkazeventhubs","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DeleteAfter":"01/25/2025 04:12:24"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/scaddie","name":"scaddie","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/openai-shared","name":"openai-shared","type":"Microsoft.Resources/resourceGroups","location":"swedencentral","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/wenjiefu","name":"wenjiefu","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DeleteAfter":"07/12/2024 17:23:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chriss","name":"chriss","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-centralus-eus2","name":"ResourceMoverRG-eastus-centralus-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/09/2023 21:30:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mdwgecko","name":"rg-mdwgecko","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/09/2023 21:31:22"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NI_nc-platEng-Dev_eastus2","name":"NI_nc-platEng-Dev_eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/PlatEng-Dev/providers/Microsoft.DevCenter/networkconnections/nc-platEng-Dev","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-contoso-i34nhebbt3526","name":"rg-contoso-i34nhebbt3526","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"devcenter4lh003","DeleteAfter":"11/08/2023 08:09:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdux","name":"azdux","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-devcenter","name":"rg-wabrez-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-devcenter","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-westus2-eus2","name":"ResourceMoverRG-eastus-westus2-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"05/11/2024 19:17:16"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/AzSecPackAutoConfigRG","name":"AzSecPackAutoConfigRG","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-raychen-test-wus","name":"rg-raychen-test-wus","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter ":"2024-12-30T12:30:00.000Z","owner":"raychen","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg40370","name":"rg40370","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/09/2023 21:33:47"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg16812","name":"rg16812","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/09/2023 21:33:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/msolomon-testing","name":"msolomon-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/senyangrg","name":"senyangrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"03/08/2024 00:08:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azsdk-pm-ai","name":"azsdk-pm-ai","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"TypeSpecChannelBot-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/bterlson-cadl","name":"bterlson-cadl","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration","name":"rg-shrejaappconfiguration","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-12-24T05:11:17.9627286Z","Owners":"shreja","ServiceDirectory":"appconfiguration"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc88170fa","name":"rgloc88170fa","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc0890584","name":"rgloc0890584","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llawrence-rg","name":"llawrence-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"11/23/2024 00:21:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazservicebus","name":"rg-riparkazservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"messaging/azservicebus","Owners":"ripark","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkaznamespaces","name":"rg-riparkaznamespaces","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"messaging/eventgrid/aznamespaces","Owners":"ripark","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-swathipstorage","name":"rg-swathipstorage","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"storage","Owners":"swathip","DeleteAfter":"2025-01-26T22:17:50.4296899Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-177","name":"go-sdk-test-177","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/23/2025 08:15:38"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceeventhub","name":"rg-llawrenceeventhub","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-27T17:50:31.2824952Z","ServiceDirectory":"eventhub","Owners":"llawrence"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chloweazbatch","name":"rg-chloweazbatch","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"chlowe","DeleteAfter":"2025-01-27T19:26:00.9112619Z","ServiceDirectory":"batch/azbatch"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceservicebus","name":"rg-llawrenceservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-29T18:30:38.8051026Z","ServiceDirectory":"servicebus","Owners":"llawrence"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-swathipservicebus","name":"rg-swathipservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"servicebus","Owners":"swathip","DeleteAfter":"2025-01-27T23:21:49.2553458Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kashifkhanservicebus","name":"rg-kashifkhanservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-27T23:34:41.3453953Z","Owners":"kashifkhan","ServiceDirectory":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-conniey-eh0","name":"rg-conniey-eh0","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-28T20:31:01.5670010Z","ServiceDirectory":"eventhubs","Owners":"conniey"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-conniey-eh01","name":"rg-conniey-eh01","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-28T22:27:57.5082464Z","Owners":"conniey","ServiceDirectory":"eventhubs"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-benappconfiguration","name":"rg-benappconfiguration","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ben","ServiceDirectory":"appconfiguration","DeleteAfter":"2025-01-29T20:57:45.8764493Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazeventhubs2","name":"rg-riparkazeventhubs2","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ripark","ServiceDirectory":"messaging/azeventhubs","DeleteAfter":"2025-01-29T22:13:48.6457998Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-conniey-eh02","name":"rg-conniey-eh02","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"conniey","ServiceDirectory":"eventhubs","DeleteAfter":"2025-01-29T23:11:13.4589864Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg","name":"rg-stress-secrets-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg","name":"rg-stress-cluster-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-nodes-s1-stress-pg-pg","name":"rg-nodes-s1-stress-pg-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-stress-cluster-pg/providers/Microsoft.ContainerService/managedClusters/stress-pg","tags":{"DoNotDelete":"","aks-managed-cluster-name":"stress-pg","aks-managed-cluster-rg":"rg-stress-cluster-pg","environment":"pg","owners":"bebroder, albertcheng"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdev-dev","name":"rg-azdev-dev","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","product":"azdev","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan-search","name":"xiangyan-search","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan-apiview-gpt","name":"xiangyan-apiview-gpt","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-sdk-dotnet","name":"jsquire-sdk-dotnet","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"purpose":"local development","owner":"Jesse Squire","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/billwert-acrrg","name":"billwert-acrrg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"2025-02-05T19:08:55.2162878Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/antisch-cmtest","name":"antisch-cmtest","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/yumeng-js-test","name":"yumeng-js-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"01/28/2025 00:14:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119","name":"sameal-rg-0119","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"01/30/2025 00:14:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv","name":"rg-weilim-env-kv","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"01/31/2025 20:13:39"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg","name":"mcpatino-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"02/01/2025 00:15:13"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-sarajama-3688_ai","name":"rg-sarajama-3688_ai","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"02/02/2025 16:15:26"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-eventhub.namespaces-ehnkv-rg","name":"dep-uni-eventhub.namespaces-ehnkv-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-cntso-network.virtualHub-nvhwaf-rg","name":"dep-cntso-network.virtualHub-nvhwaf-rg","type":"Microsoft.Resources/resourceGroups","location":"eastasia","tags":{"DeleteAfter":"07/09/2024 07:20:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec-service-adoption-mariog","name":"typespec-service-adoption-mariog","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":""," Owners":"marioguerra"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejasearchservice","name":"rg-shrejasearchservice","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"ServiceDirectory":"search","DeleteAfter":"2025-10-23T04:00:14.3477795Z","Owners":"shreja","DoNotDelete":"AI Chat Protocol Demo"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-o12r-max","name":"rg-o12r-max","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter","name":"rg-wb-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wb-devcenter","DeleteAfter":"09/05/2024 23:19:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-1121","name":"rg-jinlong-1121","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/09/2024 12:06:59"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-test-tc-final","name":"rg-test-tc-final","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/10/2024 11:13:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-bicep-registry","name":"rg-wabrez-bicep-registry","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-fenglongdev","name":"rg-fenglongdev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"fenglongdev","DeleteAfter":"12/12/2024 04:18:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xutong-monthly-release-test","name":"xutong-monthly-release-test","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b","name":"cm0ddf918b146443b","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-matell-dev","name":"rg-matell-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"matell-dev","DeleteAfter":"01/31/2025 04:14:13"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets","name":"rg-vivazqu-with-secrets","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vivazqu-with-secrets","secured":"akvs://faa080af-c1d8-40ad-9cce-e1a450ca5b57/vivazqu-secrets/SEC-REF-kv-secret","DeleteAfter":"02/02/2025 04:12:34"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kz34-max","name":"rg-kz34-max","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec-ide-telemetry","name":"typespec-ide-telemetry","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-xsh-virtualmachineimages.imagetemplates-vmiitmax-rg","name":"dep-xsh-virtualmachineimages.imagetemplates-vmiitmax-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/11/2024 19:25:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jinlongAZD","name":"jinlongAZD","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"07/12/2025 17:23:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-fenglongfeng","name":"rg-fenglongfeng","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"fenglongfeng","DeleteAfter":"01/01/2025 08:14:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo","name":"mario-typespec-e2e-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{" Owner":"marioguerra","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/tjprescott","name":"tjprescott","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/31/2025 20:13:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/anuchan-wm","name":"anuchan-wm","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:15"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen","name":"jeffreychen","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:17"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ahkha-rg","name":"ahkha-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:19"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai","name":"rg-rajeshkamal-6661_ai","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/02/2025 20:12:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/limolkova","name":"limolkova","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/04/2025 20:20:28"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/renhetestanddemo","name":"renhetestanddemo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/28/2025 08:10:39"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan","name":"xiangyan","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/krpratic-rg","name":"krpratic-rg","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dataproduct48702-HostedResources-32E47270","name":"dataproduct48702-HostedResources-32E47270","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg73273/providers/Microsoft.NetworkAnalytics/dataProducts/dataproduct48702","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dataproduct72706-HostedResources-6BE50C22","name":"dataproduct72706-HostedResources-6BE50C22","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg39104/providers/Microsoft.NetworkAnalytics/dataProducts/dataproduct72706","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product89683-HostedResources-6EFC6FE2","name":"product89683-HostedResources-6EFC6FE2","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg98573/providers/Microsoft.NetworkAnalytics/dataProducts/product89683","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product56057-HostedResources-081D2AD1","name":"product56057-HostedResources-081D2AD1","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg31226/providers/Microsoft.NetworkAnalytics/dataProducts/product56057","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product52308-HostedResources-5D5C105C","name":"product52308-HostedResources-5D5C105C","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg22243/providers/Microsoft.NetworkAnalytics/dataProducts/product52308","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product09392-HostedResources-6F71BABB","name":"product09392-HostedResources-6F71BABB","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg70288/providers/Microsoft.NetworkAnalytics/dataProducts/product09392","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/product4lh001-HostedResources-20AFF06E","name":"product4lh001-HostedResources-20AFF06E","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/v-tongMonthlyReleaseTest02/providers/Microsoft.NetworkAnalytics/dataProducts/product4lh001","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiaofeitest-HostedResources-38FAB8A0","name":"xiaofeitest-HostedResources-38FAB8A0","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-xiaofei/providers/Microsoft.NetworkAnalytics/dataProducts/xiaofeitest","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazeventhubs","name":"rg-riparkazeventhubs","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DeleteAfter":"01/25/2025 04:12:24"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/scaddie","name":"scaddie","type":"Microsoft.Resources/resourceGroups","location":"northcentralus","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/openai-shared","name":"openai-shared","type":"Microsoft.Resources/resourceGroups","location":"swedencentral","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/wenjiefu","name":"wenjiefu","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DeleteAfter":"07/12/2024 17:23:01"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/chriss","name":"chriss","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-centralus-eus2","name":"ResourceMoverRG-eastus-centralus-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/09/2023 21:30:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-mdwgecko","name":"rg-mdwgecko","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"09/09/2023 21:31:22"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NI_nc-platEng-Dev_eastus2","name":"NI_nc-platEng-Dev_eastus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/PlatEng-Dev/providers/Microsoft.DevCenter/networkconnections/nc-platEng-Dev","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-contoso-i34nhebbt3526","name":"rg-contoso-i34nhebbt3526","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"devcenter4lh003","DeleteAfter":"11/08/2023 08:09:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdux","name":"azdux","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-devcenter","name":"rg-wabrez-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wabrez-devcenter","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ResourceMoverRG-eastus-westus2-eus2","name":"ResourceMoverRG-eastus-westus2-eus2","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DeleteAfter":"05/11/2024 19:17:16"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/AzSecPackAutoConfigRG","name":"AzSecPackAutoConfigRG","type":"Microsoft.Resources/resourceGroups","location":"eastus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-raychen-test-wus","name":"rg-raychen-test-wus","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter ":"2024-12-30T12:30:00.000Z","owner":"raychen","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg40370","name":"rg40370","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/09/2023 21:33:47"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg16812","name":"rg16812","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/09/2023 21:33:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/msolomon-testing","name":"msolomon-testing","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/senyangrg","name":"senyangrg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"03/08/2024 00:08:48"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azsdk-pm-ai","name":"azsdk-pm-ai","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"TypeSpecChannelBot-dev"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/bterlson-cadl","name":"bterlson-cadl","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration","name":"rg-shrejaappconfiguration","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-12-24T05:11:17.9627286Z","Owners":"shreja","ServiceDirectory":"appconfiguration"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc88170fa","name":"rgloc88170fa","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rgloc0890584","name":"rgloc0890584","type":"Microsoft.Resources/resourceGroups","location":"westus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/llawrence-rg","name":"llawrence-rg","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"11/23/2024 00:21:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazservicebus","name":"rg-riparkazservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"messaging/azservicebus","Owners":"ripark","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkaznamespaces","name":"rg-riparkaznamespaces","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"messaging/eventgrid/aznamespaces","Owners":"ripark","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-swathipstorage","name":"rg-swathipstorage","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"storage","Owners":"swathip","DeleteAfter":"2025-01-26T22:17:50.4296899Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/go-sdk-test-177","name":"go-sdk-test-177","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"01/23/2025 08:15:38"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceeventhub","name":"rg-llawrenceeventhub","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-27T17:50:31.2824952Z","ServiceDirectory":"eventhub","Owners":"llawrence"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-chloweazbatch","name":"rg-chloweazbatch","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"chlowe","DeleteAfter":"2025-01-27T19:26:00.9112619Z","ServiceDirectory":"batch/azbatch"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-llawrenceservicebus","name":"rg-llawrenceservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-29T18:30:38.8051026Z","ServiceDirectory":"servicebus","Owners":"llawrence"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-swathipservicebus","name":"rg-swathipservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"ServiceDirectory":"servicebus","Owners":"swathip","DeleteAfter":"2025-01-27T23:21:49.2553458Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kashifkhanservicebus","name":"rg-kashifkhanservicebus","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-27T23:34:41.3453953Z","Owners":"kashifkhan","ServiceDirectory":"servicebus"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-conniey-eh0","name":"rg-conniey-eh0","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-28T20:31:01.5670010Z","ServiceDirectory":"eventhubs","Owners":"conniey"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-conniey-eh01","name":"rg-conniey-eh01","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"DeleteAfter":"2025-01-28T22:27:57.5082464Z","Owners":"conniey","ServiceDirectory":"eventhubs"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-benappconfiguration","name":"rg-benappconfiguration","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ben","ServiceDirectory":"appconfiguration","DeleteAfter":"2025-01-29T20:57:45.8764493Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-riparkazeventhubs2","name":"rg-riparkazeventhubs2","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"ripark","ServiceDirectory":"messaging/azeventhubs","DeleteAfter":"2025-01-29T22:13:48.6457998Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-conniey-eh02","name":"rg-conniey-eh02","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"Owners":"conniey","ServiceDirectory":"eventhubs","DeleteAfter":"2025-01-29T23:11:13.4589864Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/NetworkWatcherRG","name":"NetworkWatcherRG","type":"Microsoft.Resources/resourceGroups","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg","name":"rg-stress-secrets-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg","name":"rg-stress-cluster-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-nodes-s1-stress-pg-pg","name":"rg-nodes-s1-stress-pg-pg","type":"Microsoft.Resources/resourceGroups","location":"westus3","managedBy":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/rg-stress-cluster-pg/providers/Microsoft.ContainerService/managedClusters/stress-pg","tags":{"DoNotDelete":"","aks-managed-cluster-name":"stress-pg","aks-managed-cluster-rg":"rg-stress-cluster-pg","environment":"pg","owners":"bebroder, albertcheng"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdev-dev","name":"rg-azdev-dev","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"Owners":"rajeshkamal,hemarina,matell,vivazqu,wabrez,weilim","product":"azdev","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan-search","name":"xiangyan-search","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan-apiview-gpt","name":"xiangyan-apiview-gpt","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"\"\""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jsquire-sdk-dotnet","name":"jsquire-sdk-dotnet","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"purpose":"local development","owner":"Jesse Squire","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/billwert-acrrg","name":"billwert-acrrg","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"2025-02-05T19:08:55.2162878Z"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/antisch-cmtest","name":"antisch-cmtest","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/yumeng-js-test","name":"yumeng-js-test","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"01/28/2025 00:14:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119","name":"sameal-rg-0119","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DeleteAfter":"01/30/2025 00:14:14"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv","name":"rg-weilim-env-kv","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"01/31/2025 20:13:39"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg","name":"mcpatino-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"02/01/2025 00:15:13"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-sarajama-3688_ai","name":"rg-sarajama-3688_ai","type":"Microsoft.Resources/resourceGroups","location":"westus3","tags":{"DeleteAfter":"02/02/2025 16:15:26"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-eventhub.namespaces-ehnkv-rg","name":"dep-uni-eventhub.namespaces-ehnkv-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-servicebus.namespaces-sbnkv-rg","name":"dep-uni-servicebus.namespaces-sbnkv-rg","type":"Microsoft.Resources/resourceGroups","location":"westus3","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-cntso-network.virtualHub-nvhwaf-rg","name":"dep-cntso-network.virtualHub-nvhwaf-rg","type":"Microsoft.Resources/resourceGroups","location":"eastasia","tags":{"DeleteAfter":"07/09/2024 07:20:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec-service-adoption-mariog","name":"typespec-service-adoption-mariog","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DoNotDelete":""," Owners":"marioguerra"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejasearchservice","name":"rg-shrejasearchservice","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"ServiceDirectory":"search","DeleteAfter":"2025-10-23T04:00:14.3477795Z","Owners":"shreja","DoNotDelete":"AI Chat Protocol Demo"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-o12r-max","name":"rg-o12r-max","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wb-devcenter","name":"rg-wb-devcenter","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"wb-devcenter","DeleteAfter":"09/05/2024 23:19:06"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-jinlong-1121","name":"rg-jinlong-1121","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/09/2024 12:06:59"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-test-tc-final","name":"rg-test-tc-final","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"Environment":"Dev","Owner":"AI Team","Project":"GPTBot","Toolkit":"Bicep","DeleteAfter":"10/10/2024 11:13:37"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-wabrez-bicep-registry","name":"rg-wabrez-bicep-registry","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-fenglongdev","name":"rg-fenglongdev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"fenglongdev","DeleteAfter":"12/12/2024 04:18:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xutong-monthly-release-test","name":"xutong-monthly-release-test","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b","name":"cm0ddf918b146443b","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"DoNotDelete":"true"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-matell-dev","name":"rg-matell-dev","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"matell-dev","DeleteAfter":"01/31/2025 04:14:13"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets","name":"rg-vivazqu-with-secrets","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"vivazqu-with-secrets","secured":"akvs://faa080af-c1d8-40ad-9cce-e1a450ca5b57/vivazqu-secrets/SEC-REF-kv-secret","DeleteAfter":"02/02/2025 04:12:34"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-kz34-max","name":"rg-kz34-max","type":"Microsoft.Resources/resourceGroups","location":"northeurope","tags":{},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/typespec-ide-telemetry","name":"typespec-ide-telemetry","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-xsh-virtualmachineimages.imagetemplates-vmiitmax-rg","name":"dep-xsh-virtualmachineimages.imagetemplates-vmiitmax-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"09/11/2024 19:25:43"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jinlongAZD","name":"jinlongAZD","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"07/12/2025 17:23:02"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-fenglongfeng","name":"rg-fenglongfeng","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"azd-env-name":"fenglongfeng","DeleteAfter":"01/01/2025 08:14:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo","name":"mario-typespec-e2e-demo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{" Owner":"marioguerra","DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/tjprescott","name":"tjprescott","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/31/2025 20:13:40"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/anuchan-wm","name":"anuchan-wm","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:15"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen","name":"jeffreychen","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:17"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/ahkha-rg","name":"ahkha-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/01/2025 00:15:19"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai","name":"rg-rajeshkamal-6661_ai","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/02/2025 20:12:32"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/limolkova","name":"limolkova","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"02/04/2025 20:20:28"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/renhetestanddemo","name":"renhetestanddemo","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"DeleteAfter":"01/28/2025 08:10:39"},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/xiangyan","name":"xiangyan","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/krpratic-rg","name":"krpratic-rg","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"DoNotDelete":""},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache Content-Length: - - "28104" + - "28379" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:39:11 GMT + - Mon, 27 Jan 2025 19:27:50 GMT Expires: - "-1" Pragma: @@ -194,20 +194,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ea710713f1b8017753cafad37b5f195 + - 5d923cd306c352ec436b414eda031f88 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 7d743cf3-d238-43c1-a78d-8ddeafd768fd + - b6e899d9-9e3d-406e-b0a5-c093f57d63f4 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T183911Z:7d743cf3-d238-43c1-a78d-8ddeafd768fd + - WESTUS2:20250127T192750Z:b6e899d9-9e3d-406e-b0a5-c093f57d63f4 X-Msedge-Ref: - - 'Ref A: 7FF3DE0CC9CD4FBD8C9803BC156B0380 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:39:11Z' + - 'Ref A: 44C507B879544195A89D8040BAC95319 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:27:50Z' status: 200 OK code: 200 - duration: 59.651266ms + duration: 45.568597ms - id: 3 request: proto: HTTP/1.1 @@ -235,8 +235,8 @@ interactions: User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 2ea710713f1b8017753cafad37b5f195 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/azdtest-l5607e1-rg?api-version=2021-04-01 + - 5d923cd306c352ec436b414eda031f88 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups/azdtest-lb61973-rg?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -246,7 +246,7 @@ interactions: trailer: {} content_length: 244 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg","name":"azdtest-l5607e1-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg","name":"azdtest-lb61973-rg","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{},"properties":{"provisioningState":"Succeeded"}}' headers: Cache-Control: - no-cache @@ -255,7 +255,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:39:12 GMT + - Mon, 27 Jan 2025 19:27:51 GMT Expires: - "-1" Pragma: @@ -267,20 +267,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ea710713f1b8017753cafad37b5f195 + - 5d923cd306c352ec436b414eda031f88 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 68da50b5-9324-4466-9be2-e67d90971a66 + - 2654e740-a5f4-4d24-ae47-ffb8cd92c8ac X-Ms-Routing-Request-Id: - - WESTUS2:20250127T183912Z:68da50b5-9324-4466-9be2-e67d90971a66 + - WESTUS2:20250127T192751Z:2654e740-a5f4-4d24-ae47-ffb8cd92c8ac X-Msedge-Ref: - - 'Ref A: CD4CE9678F48486A87A16B8E70BEE709 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:39:11Z' + - 'Ref A: FB62893B44DD44AF9D6DCAD20F038E78 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:27:51Z' status: 201 Created code: 201 - duration: 921.689419ms + duration: 797.350429ms - id: 4 request: proto: HTTP/1.1 @@ -308,8 +308,8 @@ interactions: User-Agent: - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 2ea710713f1b8017753cafad37b5f195 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg/providers/Microsoft.KeyVault/vaults/azdtest-l5607e1-kva?api-version=2023-07-01 + - 5d923cd306c352ec436b414eda031f88 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg/providers/Microsoft.KeyVault/vaults/azdtest-lb61973-kva?api-version=2023-07-01 method: PUT response: proto: HTTP/2.0 @@ -317,18 +317,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 836 + content_length: 832 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg/providers/Microsoft.KeyVault/vaults/azdtest-l5607e1-kva","name":"azdtest-l5607e1-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-27T18:39:13.628Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-27T18:39:13.628Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-l5607e1-kva.vault.azure.net","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg/providers/Microsoft.KeyVault/vaults/azdtest-lb61973-kva","name":"azdtest-lb61973-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-27T19:27:53.1Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-27T19:27:53.1Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-lb61973-kva.vault.azure.net","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' headers: Cache-Control: - no-cache Content-Length: - - "836" + - "832" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:39:14 GMT + - Mon, 27 Jan 2025 19:27:54 GMT Expires: - "-1" Pragma: @@ -342,9 +342,9 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Client-Request-Id: - - 51952d86-9ee0-4cd7-8b6e-803377ae782c + - fa12920f-cbbd-473f-9398-0f70d4ce5880 X-Ms-Correlation-Request-Id: - - 2ea710713f1b8017753cafad37b5f195 + - 5d923cd306c352ec436b414eda031f88 X-Ms-Keyvault-Service-Version: - 1.5.1455.0 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: @@ -352,14 +352,14 @@ interactions: X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 81642d24-7576-4ca5-890e-959e5afa058d + - 7035be52-449f-4401-9389-0843acb7490d X-Ms-Routing-Request-Id: - - WESTUS2:20250127T183915Z:c5ec1aa7-07bf-45f6-8ee2-531cd268dbc8 + - WESTUS2:20250127T192754Z:3e74b584-3095-4065-acec-6b5eeda3cf92 X-Msedge-Ref: - - 'Ref A: 28E97B46344C4B36836F2F8B87CA33ED Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:39:12Z' + - 'Ref A: 3E0A80C2B392467FBB02319ACFE71953 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:27:51Z' status: 200 OK code: 200 - duration: 2.605900386s + duration: 2.725314961s - id: 5 request: proto: HTTP/1.1 @@ -381,8 +381,8 @@ interactions: User-Agent: - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 2ea710713f1b8017753cafad37b5f195 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg/providers/Microsoft.KeyVault/vaults/azdtest-l5607e1-kva?api-version=2023-07-01 + - 5d923cd306c352ec436b414eda031f88 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg/providers/Microsoft.KeyVault/vaults/azdtest-lb61973-kva?api-version=2023-07-01 method: GET response: proto: HTTP/2.0 @@ -390,18 +390,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 837 + content_length: 833 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg/providers/Microsoft.KeyVault/vaults/azdtest-l5607e1-kva","name":"azdtest-l5607e1-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-27T18:39:13.628Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-27T18:39:13.628Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-l5607e1-kva.vault.azure.net/","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg/providers/Microsoft.KeyVault/vaults/azdtest-lb61973-kva","name":"azdtest-lb61973-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-27T19:27:53.1Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-27T19:27:53.1Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-lb61973-kva.vault.azure.net/","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' headers: Cache-Control: - no-cache Content-Length: - - "837" + - "833" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:39:15 GMT + - Mon, 27 Jan 2025 19:27:54 GMT Expires: - "-1" Pragma: @@ -415,9 +415,9 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Client-Request-Id: - - c9b1fd75-f603-4009-9ac2-21b476602be4 + - 3db80ac3-4638-4b2e-90f5-336667eff116 X-Ms-Correlation-Request-Id: - - 2ea710713f1b8017753cafad37b5f195 + - 5d923cd306c352ec436b414eda031f88 X-Ms-Keyvault-Service-Version: - 1.5.1455.0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: @@ -425,14 +425,14 @@ interactions: X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 643c09c9-cf35-427b-a1cf-0bee4e9764b4 + - e77e0838-351b-4a19-a4d9-b93a59f4945f X-Ms-Routing-Request-Id: - - WESTUS2:20250127T183915Z:56890c91-e3a1-4154-bca3-f8dd5ba3c1a7 + - WESTUS2:20250127T192754Z:53578cda-6646-42db-a3c0-f0ffd9d73a93 X-Msedge-Ref: - - 'Ref A: 9A0305A036A248068CCD8B514290776A Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:39:15Z' + - 'Ref A: 246C583804874FF1BCF8CB22E96F8782 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:27:54Z' status: 200 OK code: 200 - duration: 363.392102ms + duration: 187.34104ms - id: 6 request: proto: HTTP/1.1 @@ -454,8 +454,8 @@ interactions: User-Agent: - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 2ea710713f1b8017753cafad37b5f195 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg/providers/Microsoft.KeyVault/vaults/azdtest-l5607e1-kva?api-version=2023-07-01 + - 5d923cd306c352ec436b414eda031f88 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg/providers/Microsoft.KeyVault/vaults/azdtest-lb61973-kva?api-version=2023-07-01 method: GET response: proto: HTTP/2.0 @@ -463,18 +463,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 832 + content_length: 828 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg/providers/Microsoft.KeyVault/vaults/azdtest-l5607e1-kva","name":"azdtest-l5607e1-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-27T18:39:13.628Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-27T18:39:13.628Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-l5607e1-kva.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg/providers/Microsoft.KeyVault/vaults/azdtest-lb61973-kva","name":"azdtest-lb61973-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"systemData":{"createdBy":"vivazqu@microsoft.com","createdByType":"User","createdAt":"2025-01-27T19:27:53.1Z","lastModifiedBy":"vivazqu@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2025-01-27T19:27:53.1Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":true,"vaultUri":"https://azdtest-lb61973-kva.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' headers: Cache-Control: - no-cache Content-Length: - - "832" + - "828" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:39:45 GMT + - Mon, 27 Jan 2025 19:28:24 GMT Expires: - "-1" Pragma: @@ -488,9 +488,9 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Client-Request-Id: - - b38d36a2-9700-4ef3-8dc0-dec3b8113819 + - 36642e2e-83d4-4321-8a0d-1da285bc7ee3 X-Ms-Correlation-Request-Id: - - 2ea710713f1b8017753cafad37b5f195 + - 5d923cd306c352ec436b414eda031f88 X-Ms-Keyvault-Service-Version: - 1.5.1455.0 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: @@ -498,14 +498,14 @@ interactions: X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 66404f6f-cf93-4ed5-a94d-c15b29aae758 + - a329c6ed-b0c5-4436-9364-cd75bb7dd3af X-Ms-Routing-Request-Id: - - WESTUS2:20250127T183945Z:d6ad5050-9710-4ab9-addf-67ce586c09d0 + - WESTUS2:20250127T192824Z:7faa7b3a-2ae4-4383-847a-a2a22038e447 X-Msedge-Ref: - - 'Ref A: A252A263B015423B8566F42DF829F09A Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:39:45Z' + - 'Ref A: BF4AF033884641DEBFAF70946B19C814 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:28:24Z' status: 200 OK code: 200 - duration: 200.059124ms + duration: 195.994544ms - id: 7 request: proto: HTTP/1.1 @@ -533,8 +533,8 @@ interactions: User-Agent: - azsdk-go-armauthorization.RoleAssignmentsClient/v2.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 2ea710713f1b8017753cafad37b5f195 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg/providers/Microsoft.KeyVault/vaults/azdtest-l5607e1-kva/providers/Microsoft.Authorization/roleAssignments/817da24c-131b-4b3e-a1a7-94d96f73a639?api-version=2022-04-01 + - 5d923cd306c352ec436b414eda031f88 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg/providers/Microsoft.KeyVault/vaults/azdtest-lb61973-kva/providers/Microsoft.Authorization/roleAssignments/98408f8e-0730-4071-9f91-7ca966ecd37c?api-version=2022-04-01 method: PUT response: proto: HTTP/2.0 @@ -544,7 +544,7 @@ interactions: trailer: {} content_length: 991 uncompressed: false - body: '{"properties":{"roleDefinitionId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483","principalId":"62661785-adcf-4117-b9d0-22b3aa2b4ebf","principalType":"User","scope":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg/providers/Microsoft.KeyVault/vaults/azdtest-l5607e1-kva","condition":null,"conditionVersion":null,"createdOn":"2025-01-27T18:39:46.6355253Z","updatedOn":"2025-01-27T18:39:46.8294706Z","createdBy":null,"updatedBy":"62661785-adcf-4117-b9d0-22b3aa2b4ebf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg/providers/Microsoft.KeyVault/vaults/azdtest-l5607e1-kva/providers/Microsoft.Authorization/roleAssignments/817da24c-131b-4b3e-a1a7-94d96f73a639","type":"Microsoft.Authorization/roleAssignments","name":"817da24c-131b-4b3e-a1a7-94d96f73a639"}' + body: '{"properties":{"roleDefinitionId":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Authorization/roleDefinitions/00482a5a-887f-4fb3-b363-3b7fe8e74483","principalId":"62661785-adcf-4117-b9d0-22b3aa2b4ebf","principalType":"User","scope":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg/providers/Microsoft.KeyVault/vaults/azdtest-lb61973-kva","condition":null,"conditionVersion":null,"createdOn":"2025-01-27T19:28:25.9167453Z","updatedOn":"2025-01-27T19:28:26.1027468Z","createdBy":null,"updatedBy":"62661785-adcf-4117-b9d0-22b3aa2b4ebf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg/providers/Microsoft.KeyVault/vaults/azdtest-lb61973-kva/providers/Microsoft.Authorization/roleAssignments/98408f8e-0730-4071-9f91-7ca966ecd37c","type":"Microsoft.Authorization/roleAssignments","name":"98408f8e-0730-4071-9f91-7ca966ecd37c"}' headers: Cache-Control: - no-cache @@ -553,7 +553,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:39:51 GMT + - Mon, 27 Jan 2025 19:28:29 GMT Expires: - "-1" Pragma: @@ -565,20 +565,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - 2ea710713f1b8017753cafad37b5f195 + - 5d923cd306c352ec436b414eda031f88 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: - "11999" X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 0ab73d08-ba11-4498-bcc2-b95d6418bfe7 + - d1766c43-2639-477f-833e-9720867a90bd X-Ms-Routing-Request-Id: - - WESTUS2:20250127T183951Z:9b742b43-7a1f-4290-aea5-4b7da4a4b0f7 + - WESTUS2:20250127T192830Z:8bab5549-e9d9-4aeb-aaef-4808bf15b995 X-Msedge-Ref: - - 'Ref A: 88910521432345BA93EA0FBFFC8FACC7 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:39:46Z' + - 'Ref A: 51DA7F30363B41C996262EF508CD2FB9 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:28:25Z' status: 201 Created code: 201 - duration: 5.012708814s + duration: 4.916743338s - id: 8 request: proto: HTTP/1.1 @@ -587,7 +587,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -604,8 +604,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 2ea710713f1b8017753cafad37b5f195 - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs?api-version=7.4 + - 5d923cd306c352ec436b414eda031f88 + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs?api-version=7.4 method: PUT response: proto: HTTP/1.1 @@ -624,7 +624,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:39:51 GMT + - Mon, 27 Jan 2025 19:28:29 GMT Expires: - "-1" Pragma: @@ -636,16 +636,16 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 3e59cd12-80e2-4ba2-99b1-bce897f09c2b + - 75e83651-5bcf-42de-b2b3-a18fd27b264b status: 401 Unauthorized code: 401 - duration: 369.254914ms + duration: 359.91795ms - id: 9 request: proto: HTTP/1.1 @@ -654,7 +654,7 @@ interactions: content_length: 36 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: '{"value":"THIS IS THE SECRET VALUE"}' @@ -673,8 +673,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - 2ea710713f1b8017753cafad37b5f195 - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs?api-version=7.4 + - 5d923cd306c352ec436b414eda031f88 + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs?api-version=7.4 method: PUT response: proto: HTTP/1.1 @@ -684,7 +684,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs/c2e90ce56e2c4e2dae951dcdc7bc5566","attributes":{"enabled":true,"created":1738003192,"updated":1738003192,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs/3f7d2a6d26f94b3b8100b2750cd9d705","attributes":{"enabled":true,"created":1738006110,"updated":1738006110,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -693,7 +693,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:39:51 GMT + - Mon, 27 Jan 2025 19:28:29 GMT Expires: - "-1" Pragma: @@ -703,18 +703,18 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 817da24c131b4b3ea1a794d96f73a639 + - 98408f8e073040719f917ca966ecd37c X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - da61361d-5b4f-4f51-a5b9-4b8e34dffe68 + - 50f72d3e-aa50-4e43-83ea-68cae4a4c8c6 status: 200 OK code: 200 - duration: 363.265108ms + duration: 297.763681ms - id: 10 request: proto: HTTP/1.1 @@ -723,7 +723,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -738,8 +738,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - b6aa18a3633f682b54c51885189b418f - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 + - 22359bab11d5f5cc51fc9ef1673ec6ee + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -758,7 +758,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:39:55 GMT + - Mon, 27 Jan 2025 19:28:32 GMT Expires: - "-1" Pragma: @@ -770,16 +770,16 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - b0fa2cdf-f9ff-4855-bb23-9f9cc91bbb60 + - 4526314d-7f45-41f2-b3a3-24496e0f42b2 status: 401 Unauthorized code: 401 - duration: 80.33159ms + duration: 95.124271ms - id: 11 request: proto: HTTP/1.1 @@ -788,7 +788,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -803,8 +803,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - b6aa18a3633f682b54c51885189b418f - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 + - 22359bab11d5f5cc51fc9ef1673ec6ee + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -814,7 +814,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs/c2e90ce56e2c4e2dae951dcdc7bc5566","attributes":{"enabled":true,"created":1738003192,"updated":1738003192,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs/3f7d2a6d26f94b3b8100b2750cd9d705","attributes":{"enabled":true,"created":1738006110,"updated":1738006110,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -823,7 +823,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:39:55 GMT + - Mon, 27 Jan 2025 19:28:33 GMT Expires: - "-1" Pragma: @@ -833,18 +833,18 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 817da24c131b4b3ea1a794d96f73a639 + - 98408f8e073040719f917ca966ecd37c X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - c7fd7f9f-b80b-4385-8f32-fbcd090fde1a + - e2e456af-4a44-4169-9746-34b419fd5c9c status: 200 OK code: 200 - duration: 117.014031ms + duration: 114.866913ms - id: 12 request: proto: HTTP/1.1 @@ -868,7 +868,7 @@ interactions: User-Agent: - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - b6aa18a3633f682b54c51885189b418f + - 22359bab11d5f5cc51fc9ef1673ec6ee url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -888,7 +888,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:39:58 GMT + - Mon, 27 Jan 2025 19:28:37 GMT Expires: - "-1" Pragma: @@ -900,20 +900,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b6aa18a3633f682b54c51885189b418f + - 22359bab11d5f5cc51fc9ef1673ec6ee X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 3355f5ee-43df-4894-8ff9-c794bca3928a + - a86355ee-ad57-4d08-a597-915511111769 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T183959Z:3355f5ee-43df-4894-8ff9-c794bca3928a + - WESTUS2:20250127T192837Z:a86355ee-ad57-4d08-a597-915511111769 X-Msedge-Ref: - - 'Ref A: AFB23B1CD2A34CB78C2427C0BB42E040 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:39:55Z' + - 'Ref A: 30E7BBC128B84455903038DC307B589E Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:28:34Z' status: 200 OK code: 200 - duration: 3.178649069s + duration: 3.520192189s - id: 13 request: proto: HTTP/1.1 @@ -922,7 +922,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -937,8 +937,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - b6aa18a3633f682b54c51885189b418f - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 + - 22359bab11d5f5cc51fc9ef1673ec6ee + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -957,7 +957,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:39:58 GMT + - Mon, 27 Jan 2025 19:28:36 GMT Expires: - "-1" Pragma: @@ -969,16 +969,16 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 012e9c58-e3c7-4f67-8a29-7a91e22fc557 + - 694eb598-7f67-4801-8e51-cc667b2a56be status: 401 Unauthorized code: 401 - duration: 73.092082ms + duration: 79.727076ms - id: 14 request: proto: HTTP/1.1 @@ -987,7 +987,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1002,8 +1002,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - b6aa18a3633f682b54c51885189b418f - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 + - 22359bab11d5f5cc51fc9ef1673ec6ee + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -1013,7 +1013,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs/c2e90ce56e2c4e2dae951dcdc7bc5566","attributes":{"enabled":true,"created":1738003192,"updated":1738003192,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs/3f7d2a6d26f94b3b8100b2750cd9d705","attributes":{"enabled":true,"created":1738006110,"updated":1738006110,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -1022,7 +1022,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:39:58 GMT + - Mon, 27 Jan 2025 19:28:36 GMT Expires: - "-1" Pragma: @@ -1032,18 +1032,18 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 817da24c131b4b3ea1a794d96f73a639 + - 98408f8e073040719f917ca966ecd37c X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 1132c46a-2d58-4fdf-820c-996e9addf09c + - 8166b276-0f50-4627-9d90-469c69f02b95 status: 200 OK code: 200 - duration: 114.914429ms + duration: 75.383523ms - id: 15 request: proto: HTTP/1.1 @@ -1067,7 +1067,7 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - b6aa18a3633f682b54c51885189b418f + - 22359bab11d5f5cc51fc9ef1673ec6ee url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -1076,18 +1076,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4001 + content_length: 8031 uncompressed: false body: '{"value":[]}' headers: Cache-Control: - no-cache Content-Length: - - "4001" + - "8031" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:39:59 GMT + - Mon, 27 Jan 2025 19:28:37 GMT Expires: - "-1" Pragma: @@ -1099,20 +1099,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b6aa18a3633f682b54c51885189b418f + - 22359bab11d5f5cc51fc9ef1673ec6ee X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - a6419329-6a88-4592-902a-fe297c2f2b54 + - 01b1f49d-4c1c-4dac-b37a-da9594bfb611 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T183959Z:a6419329-6a88-4592-902a-fe297c2f2b54 + - WESTUS2:20250127T192838Z:01b1f49d-4c1c-4dac-b37a-da9594bfb611 X-Msedge-Ref: - - 'Ref A: 151A41A158D04FE88ECE138499A89B77 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:39:59Z' + - 'Ref A: 6C3DEDE752614BB8B31B54E159AFC3B3 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:28:37Z' status: 200 OK code: 200 - duration: 148.162367ms + duration: 193.976771ms - id: 16 request: proto: HTTP/1.1 @@ -1124,7 +1124,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-l5607e1"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.33.13.18514","templateHash":"7230513710032888086"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-l5607e1","azd-provision-param-hash":"c74f447dbeb881a1873a4cb623bf79db7f0d21f4179eee995d0b9b172855ca42"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-lb61973"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.33.13.18514","templateHash":"7230513710032888086"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-lb61973","azd-provision-param-hash":"f760fb0c68001175b3cc381daac42104c84a3e2870e53062432822d2c1b38bf0"}}' form: {} headers: Accept: @@ -1140,8 +1140,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - b6aa18a3633f682b54c51885189b418f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143?api-version=2021-04-01 + - 22359bab11d5f5cc51fc9ef1673ec6ee + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -1149,20 +1149,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 892 + content_length: 893 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143","name":"azdtest-l5607e1-1738003143","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l5607e1","azd-provision-param-hash":"c74f447dbeb881a1873a4cb623bf79db7f0d21f4179eee995d0b9b172855ca42"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l5607e1"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-27T18:40:02.283187Z","duration":"PT0.0009254S","correlationId":"b6aa18a3633f682b54c51885189b418f","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065","name":"azdtest-lb61973-1738006065","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lb61973","azd-provision-param-hash":"f760fb0c68001175b3cc381daac42104c84a3e2870e53062432822d2c1b38bf0"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-lb61973"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-27T19:28:40.3655384Z","duration":"PT0.0009565S","correlationId":"22359bab11d5f5cc51fc9ef1673ec6ee","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143/operationStatuses/08584636036855507777?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065/operationStatuses/08584636007670253186?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: - - "892" + - "893" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:40:03 GMT + - Mon, 27 Jan 2025 19:28:41 GMT Expires: - "-1" Pragma: @@ -1174,7 +1174,7 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b6aa18a3633f682b54c51885189b418f + - 22359bab11d5f5cc51fc9ef1673ec6ee X-Ms-Deployment-Engine-Version: - 1.224.0 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: @@ -1182,14 +1182,14 @@ interactions: X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 2cc88232-1a17-467e-9b0d-76e8edd202ad + - 68a8dd9e-70dd-498a-9bdb-64b8cde7023e X-Ms-Routing-Request-Id: - - WESTUS2:20250127T184003Z:2cc88232-1a17-467e-9b0d-76e8edd202ad + - WESTUS2:20250127T192841Z:68a8dd9e-70dd-498a-9bdb-64b8cde7023e X-Msedge-Ref: - - 'Ref A: 77FD0595944F41F18BE7B79C1EBB39AC Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:39:59Z' + - 'Ref A: F6E6C279D8AA4D68B381BF85DCF7FD6F Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:28:38Z' status: 201 Created code: 201 - duration: 3.712916274s + duration: 3.011670051s - id: 17 request: proto: HTTP/1.1 @@ -1211,8 +1211,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - b6aa18a3633f682b54c51885189b418f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143/operationStatuses/08584636036855507777?api-version=2021-04-01 + - 22359bab11d5f5cc51fc9ef1673ec6ee + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065/operationStatuses/08584636007670253186?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1231,7 +1231,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:40:33 GMT + - Mon, 27 Jan 2025 19:29:11 GMT Expires: - "-1" Pragma: @@ -1243,20 +1243,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b6aa18a3633f682b54c51885189b418f + - 22359bab11d5f5cc51fc9ef1673ec6ee X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - a56b4655-0058-490e-82d1-74c5b59049e0 + - ca315ec9-25ef-4170-88d0-8a9f446b5252 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T184033Z:a56b4655-0058-490e-82d1-74c5b59049e0 + - WESTUS2:20250127T192911Z:ca315ec9-25ef-4170-88d0-8a9f446b5252 X-Msedge-Ref: - - 'Ref A: 2527D85B05AB4F9FA8D32F990B593E87 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:40:33Z' + - 'Ref A: 74BACAA6F61E4906807A8A11E870B168 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:11Z' status: 200 OK code: 200 - duration: 291.403631ms + duration: 223.688509ms - id: 18 request: proto: HTTP/1.1 @@ -1278,8 +1278,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - b6aa18a3633f682b54c51885189b418f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143?api-version=2021-04-01 + - 22359bab11d5f5cc51fc9ef1673ec6ee + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1289,7 +1289,7 @@ interactions: trailer: {} content_length: 1101 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143","name":"azdtest-l5607e1-1738003143","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l5607e1","azd-provision-param-hash":"c74f447dbeb881a1873a4cb623bf79db7f0d21f4179eee995d0b9b172855ca42"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l5607e1"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-27T18:40:08.0362712Z","duration":"PT5.7540096S","correlationId":"b6aa18a3633f682b54c51885189b418f","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l5607e1"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065","name":"azdtest-lb61973-1738006065","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lb61973","azd-provision-param-hash":"f760fb0c68001175b3cc381daac42104c84a3e2870e53062432822d2c1b38bf0"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-lb61973"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-27T19:28:45.7819846Z","duration":"PT5.4174027S","correlationId":"22359bab11d5f5cc51fc9ef1673ec6ee","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lb61973"}]}}' headers: Cache-Control: - no-cache @@ -1298,7 +1298,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:40:33 GMT + - Mon, 27 Jan 2025 19:29:11 GMT Expires: - "-1" Pragma: @@ -1310,20 +1310,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b6aa18a3633f682b54c51885189b418f + - 22359bab11d5f5cc51fc9ef1673ec6ee X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - bf18e241-e013-4b94-8766-78e562daeb76 + - 9e39ea1b-4747-4cd8-9f12-0617f5671393 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T184034Z:bf18e241-e013-4b94-8766-78e562daeb76 + - WESTUS2:20250127T192911Z:9e39ea1b-4747-4cd8-9f12-0617f5671393 X-Msedge-Ref: - - 'Ref A: 4ADB3C81BE9246ECA1CD4A627E7DF549 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:40:33Z' + - 'Ref A: 0289C0AE04334CECBDEFD4B21A3B21F2 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:11Z' status: 200 OK code: 200 - duration: 241.026873ms + duration: 296.176255ms - id: 19 request: proto: HTTP/1.1 @@ -1347,8 +1347,8 @@ interactions: User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - b6aa18a3633f682b54c51885189b418f - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l5607e1%27&api-version=2021-04-01 + - 22359bab11d5f5cc51fc9ef1673ec6ee + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lb61973%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -1358,7 +1358,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l5607e1","name":"rg-azdtest-l5607e1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l5607e1"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lb61973","name":"rg-azdtest-lb61973","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lb61973"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -1367,7 +1367,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:40:34 GMT + - Mon, 27 Jan 2025 19:29:11 GMT Expires: - "-1" Pragma: @@ -1379,20 +1379,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - b6aa18a3633f682b54c51885189b418f + - 22359bab11d5f5cc51fc9ef1673ec6ee X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - ef02b4fb-360e-4530-b935-bc89a4e63dc6 + - 4a4797a4-a9f6-4fab-9207-ed36c24b6b45 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T184034Z:ef02b4fb-360e-4530-b935-bc89a4e63dc6 + - WESTUS2:20250127T192912Z:4a4797a4-a9f6-4fab-9207-ed36c24b6b45 X-Msedge-Ref: - - 'Ref A: 69E7F8F3D3404D0EA807AD80E9CAFB22 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:40:34Z' + - 'Ref A: 8F23EA34DC9C41BAA65823486C3A438C Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:11Z' status: 200 OK code: 200 - duration: 56.038263ms + duration: 50.868793ms - id: 20 request: proto: HTTP/1.1 @@ -1401,7 +1401,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1416,8 +1416,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - b6aa18a3633f682b54c51885189b418f - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 + - 22359bab11d5f5cc51fc9ef1673ec6ee + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -1436,7 +1436,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:40:33 GMT + - Mon, 27 Jan 2025 19:29:12 GMT Expires: - "-1" Pragma: @@ -1448,16 +1448,16 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 1888f208-c927-402f-ae8d-0784b8edb1f4 + - fc1ece8d-8a86-4d28-9e00-1124fb5cd965 status: 401 Unauthorized code: 401 - duration: 77.299687ms + duration: 75.939285ms - id: 21 request: proto: HTTP/1.1 @@ -1466,7 +1466,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1481,8 +1481,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - b6aa18a3633f682b54c51885189b418f - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 + - 22359bab11d5f5cc51fc9ef1673ec6ee + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -1492,7 +1492,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs/c2e90ce56e2c4e2dae951dcdc7bc5566","attributes":{"enabled":true,"created":1738003192,"updated":1738003192,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs/3f7d2a6d26f94b3b8100b2750cd9d705","attributes":{"enabled":true,"created":1738006110,"updated":1738006110,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -1501,7 +1501,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:40:33 GMT + - Mon, 27 Jan 2025 19:29:12 GMT Expires: - "-1" Pragma: @@ -1511,18 +1511,18 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 817da24c131b4b3ea1a794d96f73a639 + - 98408f8e073040719f917ca966ecd37c X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - a9d2b9fe-db4c-4dc9-89d8-b11f738cfb56 + - bb70b808-7d4e-43cd-b17a-355ba0eca9f4 status: 200 OK code: 200 - duration: 81.974493ms + duration: 120.463103ms - id: 22 request: proto: HTTP/1.1 @@ -1546,7 +1546,7 @@ interactions: User-Agent: - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - cedc8461a2a5c400814e5f69c4193979 + - b2c1f939060d80aa29d011152332b5ff url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 method: GET response: @@ -1555,18 +1555,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3748 + content_length: 4008 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg/providers/Microsoft.KeyVault/vaults/azdtest-l5607e1-kva","name":"azdtest-l5607e1-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai/providers/Microsoft.KeyVault/vaults/kv-rajeshka371125419172","name":"kv-rajeshka371125419172","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-eventhub.namespaces-ehnkv-rg/providers/Microsoft.KeyVault/vaults/dep-uni-kv-ehnkv","name":"dep-uni-kv-ehnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg/providers/Microsoft.KeyVault/vaults/azdtest-lb61973-kva","name":"azdtest-lb61973-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai/providers/Microsoft.KeyVault/vaults/kv-rajeshka371125419172","name":"kv-rajeshka371125419172","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-eventhub.namespaces-ehnkv-rg/providers/Microsoft.KeyVault/vaults/dep-uni-kv-ehnkv","name":"dep-uni-kv-ehnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-servicebus.namespaces-sbnkv-rg/providers/Microsoft.KeyVault/vaults/dep-uni-kv-sbnkv","name":"dep-uni-kv-sbnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' headers: Cache-Control: - no-cache Content-Length: - - "3748" + - "4008" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:40:34 GMT + - Mon, 27 Jan 2025 19:29:12 GMT Expires: - "-1" Pragma: @@ -1578,20 +1578,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - cedc8461a2a5c400814e5f69c4193979 + - b2c1f939060d80aa29d011152332b5ff X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 1991269f-ac04-4e59-bcd2-b4b8925560b0 + - eb3d8fdd-7db0-46a6-a05a-144ecfaa1e45 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T184034Z:1991269f-ac04-4e59-bcd2-b4b8925560b0 + - WESTUS2:20250127T192912Z:eb3d8fdd-7db0-46a6-a05a-144ecfaa1e45 X-Msedge-Ref: - - 'Ref A: 83E854A8BEB54C43BC289F5131FCEC26 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:40:34Z' + - 'Ref A: B19C42834CF24D3285BEED09A716D5A1 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:12Z' status: 200 OK code: 200 - duration: 279.212617ms + duration: 219.587958ms - id: 23 request: proto: HTTP/1.1 @@ -1600,7 +1600,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1617,8 +1617,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - cedc8461a2a5c400814e5f69c4193979 - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs2?api-version=7.4 + - b2c1f939060d80aa29d011152332b5ff + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs2?api-version=7.4 method: PUT response: proto: HTTP/1.1 @@ -1637,7 +1637,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:40:34 GMT + - Mon, 27 Jan 2025 19:29:12 GMT Expires: - "-1" Pragma: @@ -1649,16 +1649,16 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - ed5e18a3-429b-4807-a59f-f810496b33dc + - d7302278-74ee-47a6-8ce2-f6d6c59f7d1b status: 401 Unauthorized code: 401 - duration: 68.806778ms + duration: 76.39039ms - id: 24 request: proto: HTTP/1.1 @@ -1667,7 +1667,7 @@ interactions: content_length: 40 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: '{"value":"THIS IS THE NEW SECRET VALUE"}' @@ -1686,8 +1686,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - cedc8461a2a5c400814e5f69c4193979 - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs2?api-version=7.4 + - b2c1f939060d80aa29d011152332b5ff + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs2?api-version=7.4 method: PUT response: proto: HTTP/1.1 @@ -1697,7 +1697,7 @@ interactions: trailer: {} content_length: 286 uncompressed: false - body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs2/48f17e06794943b691978cda2c3576cb","attributes":{"enabled":true,"created":1738003235,"updated":1738003235,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs2/19bcc292ac7447509ea49b76eb6ce024","attributes":{"enabled":true,"created":1738006152,"updated":1738006152,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -1706,7 +1706,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:40:34 GMT + - Mon, 27 Jan 2025 19:29:12 GMT Expires: - "-1" Pragma: @@ -1716,18 +1716,18 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 817da24c131b4b3ea1a794d96f73a639 + - 98408f8e073040719f917ca966ecd37c X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 3a12e389-1506-40f9-bf3e-8d32305ecf11 + - d9bfbec7-97a7-4062-a0f9-486c06d2e8dd status: 200 OK code: 200 - duration: 137.995857ms + duration: 140.613438ms - id: 25 request: proto: HTTP/1.1 @@ -1736,7 +1736,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1751,8 +1751,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - dc1972e27119d03754458fd6f5b22463 - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs2/?api-version=7.4 + - eb1957cf972be2975de88c3bafd1ed48 + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs2/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -1771,7 +1771,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:40:37 GMT + - Mon, 27 Jan 2025 19:29:16 GMT Expires: - "-1" Pragma: @@ -1783,16 +1783,16 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 42c0887a-b14c-4a23-80aa-565134714872 + - b750e06e-b0de-4935-9767-c307e527f842 status: 401 Unauthorized code: 401 - duration: 184.78831ms + duration: 82.621257ms - id: 26 request: proto: HTTP/1.1 @@ -1801,7 +1801,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1816,8 +1816,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - dc1972e27119d03754458fd6f5b22463 - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs2/?api-version=7.4 + - eb1957cf972be2975de88c3bafd1ed48 + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs2/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -1827,7 +1827,7 @@ interactions: trailer: {} content_length: 286 uncompressed: false - body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs2/48f17e06794943b691978cda2c3576cb","attributes":{"enabled":true,"created":1738003235,"updated":1738003235,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs2/19bcc292ac7447509ea49b76eb6ce024","attributes":{"enabled":true,"created":1738006152,"updated":1738006152,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -1836,7 +1836,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:40:37 GMT + - Mon, 27 Jan 2025 19:29:16 GMT Expires: - "-1" Pragma: @@ -1846,18 +1846,18 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 817da24c131b4b3ea1a794d96f73a639 + - 98408f8e073040719f917ca966ecd37c X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 45b18ff3-e90e-49dd-8c5d-2acf84ae237b + - 9ba085af-c4ec-44f7-b203-76126934801b status: 200 OK code: 200 - duration: 84.315696ms + duration: 110.896284ms - id: 27 request: proto: HTTP/1.1 @@ -1881,7 +1881,7 @@ interactions: User-Agent: - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - dc1972e27119d03754458fd6f5b22463 + - eb1957cf972be2975de88c3bafd1ed48 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -1901,7 +1901,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:40:41 GMT + - Mon, 27 Jan 2025 19:29:18 GMT Expires: - "-1" Pragma: @@ -1913,20 +1913,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - dc1972e27119d03754458fd6f5b22463 + - eb1957cf972be2975de88c3bafd1ed48 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 84ab2f4d-a4dd-4e76-aa66-3327f58fb593 + - 5a833610-7129-45f5-bbc9-1a5d0c6f56f4 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T184041Z:84ab2f4d-a4dd-4e76-aa66-3327f58fb593 + - WESTUS2:20250127T192919Z:5a833610-7129-45f5-bbc9-1a5d0c6f56f4 X-Msedge-Ref: - - 'Ref A: 82581469F4F7470F83902DEBFECA8BD6 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:40:38Z' + - 'Ref A: 63BD0E4157A248DC98492DD4AD3271D1 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:16Z' status: 200 OK code: 200 - duration: 3.039425156s + duration: 2.835609096s - id: 28 request: proto: HTTP/1.1 @@ -1935,7 +1935,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -1950,8 +1950,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - dc1972e27119d03754458fd6f5b22463 - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs2/?api-version=7.4 + - eb1957cf972be2975de88c3bafd1ed48 + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs2/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -1970,7 +1970,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:40:41 GMT + - Mon, 27 Jan 2025 19:29:19 GMT Expires: - "-1" Pragma: @@ -1982,16 +1982,16 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - bb9e36b7-c292-4582-8ef2-df80a76cce65 + - 13bebf6f-3a3d-4dc8-b9af-b502acbe737f status: 401 Unauthorized code: 401 - duration: 72.686483ms + duration: 68.816294ms - id: 29 request: proto: HTTP/1.1 @@ -2000,7 +2000,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2015,8 +2015,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - dc1972e27119d03754458fd6f5b22463 - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs2/?api-version=7.4 + - eb1957cf972be2975de88c3bafd1ed48 + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs2/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -2026,7 +2026,7 @@ interactions: trailer: {} content_length: 286 uncompressed: false - body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs2/48f17e06794943b691978cda2c3576cb","attributes":{"enabled":true,"created":1738003235,"updated":1738003235,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs2/19bcc292ac7447509ea49b76eb6ce024","attributes":{"enabled":true,"created":1738006152,"updated":1738006152,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -2035,7 +2035,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:40:41 GMT + - Mon, 27 Jan 2025 19:29:19 GMT Expires: - "-1" Pragma: @@ -2045,18 +2045,18 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 817da24c131b4b3ea1a794d96f73a639 + - 98408f8e073040719f917ca966ecd37c X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - f3230641-b487-4dcd-87b5-dd5204903b48 + - c8cc5ba9-c097-4373-82e2-56757c0dfac9 status: 200 OK code: 200 - duration: 94.595908ms + duration: 104.382005ms - id: 30 request: proto: HTTP/1.1 @@ -2080,7 +2080,7 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - dc1972e27119d03754458fd6f5b22463 + - eb1957cf972be2975de88c3bafd1ed48 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -2089,18 +2089,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 5103 + content_length: 9133 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143","location":"eastus2","name":"azdtest-l5607e1-1738003143","properties":{"correlationId":"b6aa18a3633f682b54c51885189b418f","dependencies":[],"duration":"PT5.7540096S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l5607e1"}],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-l5607e1"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"}]}],"provisioningState":"Succeeded","templateHash":"7230513710032888086","timestamp":"2025-01-27T18:40:08.0362712Z"},"tags":{"azd-env-name":"azdtest-l5607e1","azd-provision-param-hash":"c74f447dbeb881a1873a4cb623bf79db7f0d21f4179eee995d0b9b172855ca42"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065","location":"eastus2","name":"azdtest-lb61973-1738006065","properties":{"correlationId":"22359bab11d5f5cc51fc9ef1673ec6ee","dependencies":[],"duration":"PT5.4174027S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lb61973"}],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-lb61973"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"}]}],"provisioningState":"Succeeded","templateHash":"7230513710032888086","timestamp":"2025-01-27T19:28:45.7819846Z"},"tags":{"azd-env-name":"azdtest-lb61973","azd-provision-param-hash":"f760fb0c68001175b3cc381daac42104c84a3e2870e53062432822d2c1b38bf0"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "5103" + - "9133" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:40:42 GMT + - Mon, 27 Jan 2025 19:29:20 GMT Expires: - "-1" Pragma: @@ -2112,20 +2112,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - dc1972e27119d03754458fd6f5b22463 + - eb1957cf972be2975de88c3bafd1ed48 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - c519493d-2bed-4da5-b6f1-a4459ebbfc65 + - 3c1a0a64-0bc1-4d91-8b0b-336aa6b36d9b X-Ms-Routing-Request-Id: - - WESTUS2:20250127T184042Z:c519493d-2bed-4da5-b6f1-a4459ebbfc65 + - WESTUS:20250127T192920Z:3c1a0a64-0bc1-4d91-8b0b-336aa6b36d9b X-Msedge-Ref: - - 'Ref A: 0BB29710447A4400A81FA71C574464F3 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:40:42Z' + - 'Ref A: 4BA2BE34E5AE491089DC05619E4667B5 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:19Z' status: 200 OK code: 200 - duration: 658.362349ms + duration: 930.099223ms - id: 31 request: proto: HTTP/1.1 @@ -2153,7 +2153,7 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - dc1972e27119d03754458fd6f5b22463 + - eb1957cf972be2975de88c3bafd1ed48 url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 method: POST response: @@ -2173,7 +2173,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:40:42 GMT + - Mon, 27 Jan 2025 19:29:20 GMT Expires: - "-1" Pragma: @@ -2185,18 +2185,18 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - dc1972e27119d03754458fd6f5b22463 + - eb1957cf972be2975de88c3bafd1ed48 X-Ms-Ratelimit-Remaining-Tenant-Writes: - "799" X-Ms-Request-Id: - - febb35a2-1eb1-496a-813e-b400ddeb70af + - 78aa426a-d2c1-4c54-b0b6-606eaa326c50 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T184042Z:febb35a2-1eb1-496a-813e-b400ddeb70af + - WESTUS2:20250127T192920Z:78aa426a-d2c1-4c54-b0b6-606eaa326c50 X-Msedge-Ref: - - 'Ref A: 74BE0BB13AFA4EDCBDF9540049E7C38D Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:40:42Z' + - 'Ref A: BA23AEBDE5D747B398DD36A6E39FB37E Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:20Z' status: 200 OK code: 200 - duration: 48.539955ms + duration: 44.827617ms - id: 32 request: proto: HTTP/1.1 @@ -2208,7 +2208,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-l5607e1"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE NEW SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.33.13.18514","templateHash":"7230513710032888086"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-l5607e1","azd-provision-param-hash":"c7e80e82d0b04afa2ad043ea9881284ac2f24e1082c297bce212466a45065298"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-lb61973"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE NEW SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.33.13.18514","templateHash":"7230513710032888086"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-lb61973","azd-provision-param-hash":"dcb046da7228608b8bad51c9fb85894e24b485e87c4f73c88dd93aa3259235f6"}}' form: {} headers: Accept: @@ -2224,8 +2224,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - dc1972e27119d03754458fd6f5b22463 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143?api-version=2021-04-01 + - eb1957cf972be2975de88c3bafd1ed48 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -2235,10 +2235,10 @@ interactions: trailer: {} content_length: 893 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143","name":"azdtest-l5607e1-1738003143","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l5607e1","azd-provision-param-hash":"c7e80e82d0b04afa2ad043ea9881284ac2f24e1082c297bce212466a45065298"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l5607e1"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-27T18:40:45.4915642Z","duration":"PT0.0007956S","correlationId":"dc1972e27119d03754458fd6f5b22463","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065","name":"azdtest-lb61973-1738006065","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lb61973","azd-provision-param-hash":"dcb046da7228608b8bad51c9fb85894e24b485e87c4f73c88dd93aa3259235f6"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-lb61973"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-27T19:29:24.3091459Z","duration":"PT0.0002208S","correlationId":"eb1957cf972be2975de88c3bafd1ed48","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143/operationStatuses/08584636036421594978?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065/operationStatuses/08584636007245562031?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: @@ -2246,7 +2246,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:40:45 GMT + - Mon, 27 Jan 2025 19:29:24 GMT Expires: - "-1" Pragma: @@ -2258,7 +2258,7 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - dc1972e27119d03754458fd6f5b22463 + - eb1957cf972be2975de88c3bafd1ed48 X-Ms-Deployment-Engine-Version: - 1.224.0 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: @@ -2266,14 +2266,14 @@ interactions: X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - de3935be-184f-4cfc-b522-924e077adb74 + - 2f22d53e-3e63-4ad4-9d1b-6e926865387c X-Ms-Routing-Request-Id: - - WESTUS2:20250127T184046Z:de3935be-184f-4cfc-b522-924e077adb74 + - WESTUS2:20250127T192924Z:2f22d53e-3e63-4ad4-9d1b-6e926865387c X-Msedge-Ref: - - 'Ref A: AB530A6117834F6BAAE50C5BDC569677 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:40:42Z' + - 'Ref A: CAC37AB0E57E4B2189C0F998907E293C Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:20Z' status: 200 OK code: 200 - duration: 3.304477862s + duration: 4.3444333s - id: 33 request: proto: HTTP/1.1 @@ -2295,8 +2295,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - dc1972e27119d03754458fd6f5b22463 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143/operationStatuses/08584636036421594978?api-version=2021-04-01 + - eb1957cf972be2975de88c3bafd1ed48 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065/operationStatuses/08584636007245562031?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2315,7 +2315,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:41:16 GMT + - Mon, 27 Jan 2025 19:29:55 GMT Expires: - "-1" Pragma: @@ -2327,20 +2327,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - dc1972e27119d03754458fd6f5b22463 + - eb1957cf972be2975de88c3bafd1ed48 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - de370a7f-6e53-4db3-8ead-bb5569f76870 + - 0d228f8c-8e81-48d2-9d26-d3123e1a7703 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T184116Z:de370a7f-6e53-4db3-8ead-bb5569f76870 + - WESTUS2:20250127T192955Z:0d228f8c-8e81-48d2-9d26-d3123e1a7703 X-Msedge-Ref: - - 'Ref A: 6DC1449687DE4DA9884247597D4C4760 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:41:16Z' + - 'Ref A: 2C9471653ECE4954828E1D5FBD53EBD5 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:55Z' status: 200 OK code: 200 - duration: 200.19163ms + duration: 218.6147ms - id: 34 request: proto: HTTP/1.1 @@ -2362,8 +2362,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - dc1972e27119d03754458fd6f5b22463 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143?api-version=2021-04-01 + - eb1957cf972be2975de88c3bafd1ed48 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2373,7 +2373,7 @@ interactions: trailer: {} content_length: 1105 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143","name":"azdtest-l5607e1-1738003143","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l5607e1","azd-provision-param-hash":"c7e80e82d0b04afa2ad043ea9881284ac2f24e1082c297bce212466a45065298"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l5607e1"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-27T18:40:49.1778099Z","duration":"PT3.6870413S","correlationId":"dc1972e27119d03754458fd6f5b22463","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE NEW SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l5607e1"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065","name":"azdtest-lb61973-1738006065","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lb61973","azd-provision-param-hash":"dcb046da7228608b8bad51c9fb85894e24b485e87c4f73c88dd93aa3259235f6"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-lb61973"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-27T19:29:29.6778689Z","duration":"PT5.3689438S","correlationId":"eb1957cf972be2975de88c3bafd1ed48","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE NEW SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lb61973"}]}}' headers: Cache-Control: - no-cache @@ -2382,7 +2382,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:41:16 GMT + - Mon, 27 Jan 2025 19:29:55 GMT Expires: - "-1" Pragma: @@ -2394,20 +2394,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - dc1972e27119d03754458fd6f5b22463 + - eb1957cf972be2975de88c3bafd1ed48 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - dfd167f1-23ce-4414-988d-866b6e7827cd + - e483783d-45d0-4190-ba9b-48871abeeb1b X-Ms-Routing-Request-Id: - - WESTUS2:20250127T184116Z:dfd167f1-23ce-4414-988d-866b6e7827cd + - WESTUS2:20250127T192955Z:e483783d-45d0-4190-ba9b-48871abeeb1b X-Msedge-Ref: - - 'Ref A: 64F355CCA0394287B8D75586CFCB7519 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:41:16Z' + - 'Ref A: 3593EAA96FDF473E81B464A86AA138D9 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:55Z' status: 200 OK code: 200 - duration: 217.31475ms + duration: 188.895874ms - id: 35 request: proto: HTTP/1.1 @@ -2431,8 +2431,8 @@ interactions: User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - dc1972e27119d03754458fd6f5b22463 - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l5607e1%27&api-version=2021-04-01 + - eb1957cf972be2975de88c3bafd1ed48 + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lb61973%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -2442,7 +2442,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l5607e1","name":"rg-azdtest-l5607e1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l5607e1"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lb61973","name":"rg-azdtest-lb61973","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lb61973"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -2451,7 +2451,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:41:16 GMT + - Mon, 27 Jan 2025 19:29:55 GMT Expires: - "-1" Pragma: @@ -2463,20 +2463,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - dc1972e27119d03754458fd6f5b22463 + - eb1957cf972be2975de88c3bafd1ed48 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - - "16499" + - "16498" X-Ms-Ratelimit-Remaining-Subscription-Reads: - - "1099" + - "1098" X-Ms-Request-Id: - - 1c5a8c3b-5511-4a0e-b088-ec3e18a44b6c + - e0fd0a41-a27e-4bcd-8e50-97b6655b02a2 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T184116Z:1c5a8c3b-5511-4a0e-b088-ec3e18a44b6c + - WESTUS2:20250127T192955Z:e0fd0a41-a27e-4bcd-8e50-97b6655b02a2 X-Msedge-Ref: - - 'Ref A: AA7CD940D6334C4B93BD2340D4AD5DE2 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:41:16Z' + - 'Ref A: 9F2A46DBD881470487B930779A3D3D2C Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:55Z' status: 200 OK code: 200 - duration: 54.917963ms + duration: 40.436744ms - id: 36 request: proto: HTTP/1.1 @@ -2485,7 +2485,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2500,8 +2500,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - dc1972e27119d03754458fd6f5b22463 - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs2/?api-version=7.4 + - eb1957cf972be2975de88c3bafd1ed48 + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs2/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -2520,7 +2520,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:41:16 GMT + - Mon, 27 Jan 2025 19:29:55 GMT Expires: - "-1" Pragma: @@ -2532,16 +2532,16 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 041c3c59-13dd-40cc-b468-0272b83f4bb1 + - 530455ca-84c8-4dfd-ac56-46711230be45 status: 401 Unauthorized code: 401 - duration: 74.165886ms + duration: 77.271648ms - id: 37 request: proto: HTTP/1.1 @@ -2550,7 +2550,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2565,8 +2565,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - dc1972e27119d03754458fd6f5b22463 - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs2/?api-version=7.4 + - eb1957cf972be2975de88c3bafd1ed48 + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs2/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -2576,7 +2576,7 @@ interactions: trailer: {} content_length: 286 uncompressed: false - body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs2/48f17e06794943b691978cda2c3576cb","attributes":{"enabled":true,"created":1738003235,"updated":1738003235,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE NEW SECRET VALUE","id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs2/19bcc292ac7447509ea49b76eb6ce024","attributes":{"enabled":true,"created":1738006152,"updated":1738006152,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -2585,7 +2585,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:41:16 GMT + - Mon, 27 Jan 2025 19:29:55 GMT Expires: - "-1" Pragma: @@ -2595,18 +2595,18 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 817da24c131b4b3ea1a794d96f73a639 + - 98408f8e073040719f917ca966ecd37c X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - a31b6fb2-cc48-49cc-b464-065d03f01508 + - 5c715b68-91e0-4e67-89cc-78d041f6b3f1 status: 200 OK code: 200 - duration: 78.082689ms + duration: 86.756253ms - id: 38 request: proto: HTTP/1.1 @@ -2630,7 +2630,7 @@ interactions: User-Agent: - azsdk-go-armkeyvault/v1.4.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - fa75c061d908ebea3c119030186807ee + - 1284bc61b177d93c0e4f9736819050a3 url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resources?%24filter=resourceType+eq+%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 method: GET response: @@ -2641,7 +2641,7 @@ interactions: trailer: {} content_length: 4008 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-l5607e1-rg/providers/Microsoft.KeyVault/vaults/azdtest-l5607e1-kva","name":"azdtest-l5607e1-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai/providers/Microsoft.KeyVault/vaults/kv-rajeshka371125419172","name":"kv-rajeshka371125419172","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-eventhub.namespaces-ehnkv-rg/providers/Microsoft.KeyVault/vaults/dep-uni-kv-ehnkv","name":"dep-uni-kv-ehnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-servicebus.namespaces-sbnkv-rg/providers/Microsoft.KeyVault/vaults/dep-uni-kv-sbnkv","name":"dep-uni-kv-sbnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/cm0ddf918b146443b/providers/Microsoft.KeyVault/vaults/kv-chriss23910047646422","name":"kv-chriss23910047646422","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-vivazqu-with-secrets/providers/Microsoft.KeyVault/vaults/eeeff33eed","name":"eeeff33eed","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/azdtest-lb61973-rg/providers/Microsoft.KeyVault/vaults/azdtest-lb61973-kva","name":"azdtest-lb61973-kva","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mario-typespec-e2e-demo/providers/Microsoft.KeyVault/vaults/tsp-e2edemo-keyvault","name":"tsp-e2edemo-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{" Owners":"marioguerra","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jeffreychen/providers/Microsoft.KeyVault/vaults/jcakvtest","name":"jcakvtest","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-rajeshkamal-6661_ai/providers/Microsoft.KeyVault/vaults/kv-rajeshka371125419172","name":"kv-rajeshka371125419172","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-shrejaappconfiguration/providers/Microsoft.KeyVault/vaults/t02f6e87f544544f3","name":"t02f6e87f544544f3","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/jiale-service-test/providers/Microsoft.KeyVault/vaults/jialekv1","name":"jialekv1","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/gh-issue-labeler/providers/Microsoft.KeyVault/vaults/gh-issue-labeler","name":"gh-issue-labeler","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/sameal-rg-0119/providers/Microsoft.KeyVault/vaults/samealai01196834836146","name":"samealai01196834836146","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-secrets-pg/providers/Microsoft.KeyVault/vaults/stress-secrets-pg","name":"stress-secrets-pg","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-stress-cluster-pg/providers/Microsoft.KeyVault/vaults/stress-kv-s7b6dif73rup6","name":"stress-kv-s7b6dif73rup6","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{"environment":"pg","owners":"bebroder, albertcheng","DoNotDelete":""}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-weilim-env-kv/providers/Microsoft.KeyVault/vaults/weilim-kv-test","name":"weilim-kv-test","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/mcpatino-rg/providers/Microsoft.KeyVault/vaults/mcpatinokv","name":"mcpatinokv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-eventhub.namespaces-ehnkv-rg/providers/Microsoft.KeyVault/vaults/dep-uni-kv-ehnkv","name":"dep-uni-kv-ehnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}},{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/dep-uni-servicebus.namespaces-sbnkv-rg/providers/Microsoft.KeyVault/vaults/dep-uni-kv-sbnkv","name":"dep-uni-kv-sbnkv","type":"Microsoft.KeyVault/vaults","location":"westus3","tags":{}}]}' headers: Cache-Control: - no-cache @@ -2650,7 +2650,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:41:17 GMT + - Mon, 27 Jan 2025 19:29:56 GMT Expires: - "-1" Pragma: @@ -2662,20 +2662,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - fa75c061d908ebea3c119030186807ee + - 1284bc61b177d93c0e4f9736819050a3 X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 19bd7516-aecf-441a-b135-7d93e54a9f51 + - 99e3d878-6781-4d32-abaa-0277790226de X-Ms-Routing-Request-Id: - - WESTUS2:20250127T184117Z:19bd7516-aecf-441a-b135-7d93e54a9f51 + - WESTUS:20250127T192956Z:99e3d878-6781-4d32-abaa-0277790226de X-Msedge-Ref: - - 'Ref A: 36E7603D63FA4990977648AE6EB6BF8D Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:41:17Z' + - 'Ref A: E1744297F7BD4DA7BDBA57BF6A5F52A4 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:56Z' status: 200 OK code: 200 - duration: 224.529458ms + duration: 263.565089ms - id: 39 request: proto: HTTP/1.1 @@ -2684,7 +2684,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2699,8 +2699,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - fa75c061d908ebea3c119030186807ee - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets?api-version=7.4 + - 1284bc61b177d93c0e4f9736819050a3 + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -2719,7 +2719,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:41:16 GMT + - Mon, 27 Jan 2025 19:29:56 GMT Expires: - "-1" Pragma: @@ -2731,16 +2731,16 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 1486f641-59be-4b44-bca8-aa54511b785b + - 827c84c5-a15b-4751-851f-6eead41bae23 status: 401 Unauthorized code: 401 - duration: 81.108093ms + duration: 77.324448ms - id: 40 request: proto: HTTP/1.1 @@ -2749,7 +2749,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2764,8 +2764,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - fa75c061d908ebea3c119030186807ee - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets?api-version=7.4 + - 1284bc61b177d93c0e4f9736819050a3 + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -2775,7 +2775,7 @@ interactions: trailer: {} content_length: 456 uncompressed: false - body: '{"value":[{"id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs","attributes":{"enabled":true,"created":1738003192,"updated":1738003192,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}},{"id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs2","attributes":{"enabled":true,"created":1738003235,"updated":1738003235,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}],"nextLink":null}' + body: '{"value":[{"id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs","attributes":{"enabled":true,"created":1738006110,"updated":1738006110,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}},{"id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs2","attributes":{"enabled":true,"created":1738006152,"updated":1738006152,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}],"nextLink":null}' headers: Cache-Control: - no-cache @@ -2784,7 +2784,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:41:16 GMT + - Mon, 27 Jan 2025 19:29:56 GMT Expires: - "-1" Pragma: @@ -2794,18 +2794,18 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 817da24c131b4b3ea1a794d96f73a639 + - 98408f8e073040719f917ca966ecd37c X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 95388371-0103-4fff-9c91-589d89ec6978 + - d1ac21d5-ac7e-4906-b9fd-587035de17e9 status: 200 OK code: 200 - duration: 113.731931ms + duration: 163.074588ms - id: 41 request: proto: HTTP/1.1 @@ -2814,7 +2814,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2829,8 +2829,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - e1fd0013e7e6e0b1900dfa7a67a5232b - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 + - 754d0bd12d84228d6f107e123406cd7d + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -2849,7 +2849,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:41:20 GMT + - Mon, 27 Jan 2025 19:29:59 GMT Expires: - "-1" Pragma: @@ -2861,16 +2861,16 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 19ff8f8b-2f47-44c5-a4e7-f01335892ff6 + - fe71c46c-6d18-4683-a138-b98ac8730070 status: 401 Unauthorized code: 401 - duration: 74.011185ms + duration: 71.032575ms - id: 42 request: proto: HTTP/1.1 @@ -2879,7 +2879,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -2894,8 +2894,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - e1fd0013e7e6e0b1900dfa7a67a5232b - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 + - 754d0bd12d84228d6f107e123406cd7d + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -2905,7 +2905,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs/c2e90ce56e2c4e2dae951dcdc7bc5566","attributes":{"enabled":true,"created":1738003192,"updated":1738003192,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs/3f7d2a6d26f94b3b8100b2750cd9d705","attributes":{"enabled":true,"created":1738006110,"updated":1738006110,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -2914,7 +2914,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:41:20 GMT + - Mon, 27 Jan 2025 19:29:59 GMT Expires: - "-1" Pragma: @@ -2924,18 +2924,18 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 817da24c131b4b3ea1a794d96f73a639 + - 98408f8e073040719f917ca966ecd37c X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 56d9f296-0099-40a3-88fd-cee4247d7b00 + - 89b6840f-2354-429c-88bf-625379c4db65 status: 200 OK code: 200 - duration: 123.326242ms + duration: 88.933471ms - id: 43 request: proto: HTTP/1.1 @@ -2959,7 +2959,7 @@ interactions: User-Agent: - azsdk-go-armsubscriptions/v1.0.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - e1fd0013e7e6e0b1900dfa7a67a5232b + - 754d0bd12d84228d6f107e123406cd7d url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/locations?api-version=2021-01-01 method: GET response: @@ -2979,7 +2979,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:41:23 GMT + - Mon, 27 Jan 2025 19:30:02 GMT Expires: - "-1" Pragma: @@ -2991,20 +2991,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e1fd0013e7e6e0b1900dfa7a67a5232b + - 754d0bd12d84228d6f107e123406cd7d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 99431896-2986-4319-9c70-13fcb4d6e4e6 + - e820a508-8307-46cb-9fae-81ccb37625f8 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T184123Z:99431896-2986-4319-9c70-13fcb4d6e4e6 + - WESTUS2:20250127T193002Z:e820a508-8307-46cb-9fae-81ccb37625f8 X-Msedge-Ref: - - 'Ref A: 8CB717390E9342A38B0884D256137448 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:41:21Z' + - 'Ref A: FDA1A32D5EF94E86B15A4C4911ACE231 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:29:59Z' status: 200 OK code: 200 - duration: 2.770018686s + duration: 2.837714303s - id: 44 request: proto: HTTP/1.1 @@ -3013,7 +3013,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -3028,8 +3028,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - e1fd0013e7e6e0b1900dfa7a67a5232b - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 + - 754d0bd12d84228d6f107e123406cd7d + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -3048,7 +3048,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:41:23 GMT + - Mon, 27 Jan 2025 19:30:02 GMT Expires: - "-1" Pragma: @@ -3060,16 +3060,16 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - de0d3de5-4b2b-47fb-94ca-21a893d9b162 + - cf3a1bb6-8b9b-4c0e-b64b-85f3d0525ce0 status: 401 Unauthorized code: 401 - duration: 74.035385ms + duration: 74.652211ms - id: 45 request: proto: HTTP/1.1 @@ -3078,7 +3078,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -3093,8 +3093,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - e1fd0013e7e6e0b1900dfa7a67a5232b - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 + - 754d0bd12d84228d6f107e123406cd7d + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -3104,7 +3104,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs/c2e90ce56e2c4e2dae951dcdc7bc5566","attributes":{"enabled":true,"created":1738003192,"updated":1738003192,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs/3f7d2a6d26f94b3b8100b2750cd9d705","attributes":{"enabled":true,"created":1738006110,"updated":1738006110,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -3113,7 +3113,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:41:23 GMT + - Mon, 27 Jan 2025 19:30:02 GMT Expires: - "-1" Pragma: @@ -3123,18 +3123,18 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 817da24c131b4b3ea1a794d96f73a639 + - 98408f8e073040719f917ca966ecd37c X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 89346b6c-f12f-4cb3-b944-c80f2ad78469 + - 7d1e74b1-eb16-42d0-b89e-ce762d1da49d status: 200 OK code: 200 - duration: 92.284206ms + duration: 84.182414ms - id: 46 request: proto: HTTP/1.1 @@ -3158,7 +3158,7 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - e1fd0013e7e6e0b1900dfa7a67a5232b + - 754d0bd12d84228d6f107e123406cd7d url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/?api-version=2021-04-01 method: GET response: @@ -3167,18 +3167,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 7647 + content_length: 9137 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143","location":"eastus2","name":"azdtest-l5607e1-1738003143","properties":{"correlationId":"dc1972e27119d03754458fd6f5b22463","dependencies":[],"duration":"PT3.6870413S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l5607e1"}],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE NEW SECRET VALUE"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-l5607e1"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"}]}],"provisioningState":"Succeeded","templateHash":"7230513710032888086","timestamp":"2025-01-27T18:40:49.1778099Z"},"tags":{"azd-env-name":"azdtest-l5607e1","azd-provision-param-hash":"c7e80e82d0b04afa2ad043ea9881284ac2f24e1082c297bce212466a45065298"},"type":"Microsoft.Resources/deployments"}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065","location":"eastus2","name":"azdtest-lb61973-1738006065","properties":{"correlationId":"eb1957cf972be2975de88c3bafd1ed48","dependencies":[],"duration":"PT5.3689438S","mode":"Incremental","outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lb61973"}],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE NEW SECRET VALUE"}},"parameters":{"environmentName":{"type":"String","value":"azdtest-lb61973"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"locations":["eastus2"],"resourceType":"resourceGroups"}]}],"provisioningState":"Succeeded","templateHash":"7230513710032888086","timestamp":"2025-01-27T19:29:29.6778689Z"},"tags":{"azd-env-name":"azdtest-lb61973","azd-provision-param-hash":"dcb046da7228608b8bad51c9fb85894e24b485e87c4f73c88dd93aa3259235f6"},"type":"Microsoft.Resources/deployments"}]}' headers: Cache-Control: - no-cache Content-Length: - - "7647" + - "9137" Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:41:24 GMT + - Mon, 27 Jan 2025 19:30:03 GMT Expires: - "-1" Pragma: @@ -3190,20 +3190,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e1fd0013e7e6e0b1900dfa7a67a5232b + - 754d0bd12d84228d6f107e123406cd7d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 7c9bfcc7-5932-4717-8dc5-593351b9b458 + - 4f96f064-4e0a-404b-9886-09f753656c7e X-Ms-Routing-Request-Id: - - WESTUS2:20250127T184124Z:7c9bfcc7-5932-4717-8dc5-593351b9b458 + - WESTUS2:20250127T193003Z:4f96f064-4e0a-404b-9886-09f753656c7e X-Msedge-Ref: - - 'Ref A: 81F5ACD421204789ABF73418D2505254 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:41:24Z' + - 'Ref A: 3DC04AEB4F844461B63F5ACD32909AEF Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:30:03Z' status: 200 OK code: 200 - duration: 499.713975ms + duration: 771.775781ms - id: 47 request: proto: HTTP/1.1 @@ -3231,7 +3231,7 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - e1fd0013e7e6e0b1900dfa7a67a5232b + - 754d0bd12d84228d6f107e123406cd7d url: https://management.azure.com:443/providers/Microsoft.Resources/calculateTemplateHash?api-version=2021-04-01 method: POST response: @@ -3251,7 +3251,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:41:24 GMT + - Mon, 27 Jan 2025 19:30:03 GMT Expires: - "-1" Pragma: @@ -3263,18 +3263,18 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e1fd0013e7e6e0b1900dfa7a67a5232b + - 754d0bd12d84228d6f107e123406cd7d X-Ms-Ratelimit-Remaining-Tenant-Writes: - "799" X-Ms-Request-Id: - - f4c0af8b-41fa-4a1a-8433-7c01a6127fea + - 7bf54825-c670-4f0a-993d-a78a1dcc7459 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T184124Z:f4c0af8b-41fa-4a1a-8433-7c01a6127fea + - WESTUS2:20250127T193003Z:7bf54825-c670-4f0a-993d-a78a1dcc7459 X-Msedge-Ref: - - 'Ref A: 996ABA15728045D18947081B5F9FAEDC Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:41:24Z' + - 'Ref A: 2613EB0EF73A44E7B3E25306B28B91F3 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:30:03Z' status: 200 OK code: 200 - duration: 48.676056ms + duration: 39.113925ms - id: 48 request: proto: HTTP/1.1 @@ -3286,7 +3286,7 @@ interactions: host: management.azure.com remote_addr: "" request_uri: "" - body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-l5607e1"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.33.13.18514","templateHash":"7230513710032888086"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-l5607e1","azd-provision-param-hash":"c74f447dbeb881a1873a4cb623bf79db7f0d21f4179eee995d0b9b172855ca42"}}' + body: '{"location":"eastus2","properties":{"mode":"Incremental","parameters":{"environmentName":{"value":"azdtest-lb61973"},"location":{"value":"eastus2"},"secretParam":{"value":"THIS IS THE SECRET VALUE"}},"template":{"$schema":"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#","contentVersion":"1.0.0.0","metadata":{"_generator":{"name":"bicep","version":"0.33.13.18514","templateHash":"7230513710032888086"}},"parameters":{"environmentName":{"type":"string","minLength":1,"maxLength":64,"metadata":{"description":"Name of the the environment which is used to generate a short unique hash used in all resources."}},"location":{"type":"string","metadata":{"description":"Primary location for all resources"}},"secretParam":{"type":"securestring"}},"variables":{"tags":{"azd-env-name":"[parameters(''environmentName'')]"},"outputParam":"[format(''SecretParam:{0}'', parameters(''secretParam''))]"},"resources":[{"type":"Microsoft.Resources/resourceGroups","apiVersion":"2021-04-01","name":"[format(''rg-{0}'', parameters(''environmentName''))]","location":"[parameters(''location'')]","tags":"[variables(''tags'')]"}],"outputs":{"BICEP_OUTPUT":{"type":"string","value":"[variables(''outputParam'')]"}}}},"tags":{"azd-env-name":"azdtest-lb61973","azd-provision-param-hash":"f760fb0c68001175b3cc381daac42104c84a3e2870e53062432822d2c1b38bf0"}}' form: {} headers: Accept: @@ -3302,8 +3302,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - e1fd0013e7e6e0b1900dfa7a67a5232b - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143?api-version=2021-04-01 + - 754d0bd12d84228d6f107e123406cd7d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065?api-version=2021-04-01 method: PUT response: proto: HTTP/2.0 @@ -3313,10 +3313,10 @@ interactions: trailer: {} content_length: 893 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143","name":"azdtest-l5607e1-1738003143","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l5607e1","azd-provision-param-hash":"c74f447dbeb881a1873a4cb623bf79db7f0d21f4179eee995d0b9b172855ca42"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l5607e1"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-27T18:41:28.1669692Z","duration":"PT0.0000985S","correlationId":"e1fd0013e7e6e0b1900dfa7a67a5232b","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065","name":"azdtest-lb61973-1738006065","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lb61973","azd-provision-param-hash":"f760fb0c68001175b3cc381daac42104c84a3e2870e53062432822d2c1b38bf0"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-lb61973"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2025-01-27T19:30:07.5841888Z","duration":"PT0.0008561S","correlationId":"754d0bd12d84228d6f107e123406cd7d","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[]}}' headers: Azure-Asyncoperation: - - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143/operationStatuses/08584636036000927649?api-version=2021-04-01 + - https://management.azure.com/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065/operationStatuses/08584636006809963603?api-version=2021-04-01 Cache-Control: - no-cache Content-Length: @@ -3324,7 +3324,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:41:28 GMT + - Mon, 27 Jan 2025 19:30:07 GMT Expires: - "-1" Pragma: @@ -3336,7 +3336,7 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e1fd0013e7e6e0b1900dfa7a67a5232b + - 754d0bd12d84228d6f107e123406cd7d X-Ms-Deployment-Engine-Version: - 1.224.0 X-Ms-Ratelimit-Remaining-Subscription-Global-Writes: @@ -3344,14 +3344,14 @@ interactions: X-Ms-Ratelimit-Remaining-Subscription-Writes: - "799" X-Ms-Request-Id: - - 2089733f-7ad5-413a-bf8c-3459dfe12777 + - cd1f683a-a15f-4805-9376-eea251586df5 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T184128Z:2089733f-7ad5-413a-bf8c-3459dfe12777 + - WESTUS2:20250127T193008Z:cd1f683a-a15f-4805-9376-eea251586df5 X-Msedge-Ref: - - 'Ref A: F60BB728772E461DA21967F502583A8B Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:41:24Z' + - 'Ref A: 6AC3B960A9FD498A99BAC33ABAF2EFB1 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:30:03Z' status: 200 OK code: 200 - duration: 3.788332461s + duration: 4.134949745s - id: 49 request: proto: HTTP/1.1 @@ -3373,8 +3373,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - e1fd0013e7e6e0b1900dfa7a67a5232b - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143/operationStatuses/08584636036000927649?api-version=2021-04-01 + - 754d0bd12d84228d6f107e123406cd7d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065/operationStatuses/08584636006809963603?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3393,7 +3393,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:41:58 GMT + - Mon, 27 Jan 2025 19:30:38 GMT Expires: - "-1" Pragma: @@ -3405,20 +3405,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e1fd0013e7e6e0b1900dfa7a67a5232b + - 754d0bd12d84228d6f107e123406cd7d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 2e4efd7b-aedc-4374-af51-382dcbae5f87 + - 8d43f0ac-18fd-486f-bf5a-8417ac1184da X-Ms-Routing-Request-Id: - - WESTUS2:20250127T184159Z:2e4efd7b-aedc-4374-af51-382dcbae5f87 + - WESTUS2:20250127T193038Z:8d43f0ac-18fd-486f-bf5a-8417ac1184da X-Msedge-Ref: - - 'Ref A: 0F3B2FB614E147AC96D6E418BEBE4D93 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:41:58Z' + - 'Ref A: AD7CE6D7511A4200B66D3EB691D8EFCF Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:30:38Z' status: 200 OK code: 200 - duration: 278.925424ms + duration: 197.647648ms - id: 50 request: proto: HTTP/1.1 @@ -3440,8 +3440,8 @@ interactions: User-Agent: - azsdk-go-armresources.DeploymentsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - e1fd0013e7e6e0b1900dfa7a67a5232b - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143?api-version=2021-04-01 + - 754d0bd12d84228d6f107e123406cd7d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065?api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3451,7 +3451,7 @@ interactions: trailer: {} content_length: 1101 uncompressed: false - body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-l5607e1-1738003143","name":"azdtest-l5607e1-1738003143","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-l5607e1","azd-provision-param-hash":"c74f447dbeb881a1873a4cb623bf79db7f0d21f4179eee995d0b9b172855ca42"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-l5607e1"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-27T18:41:31.2930132Z","duration":"PT3.1261425S","correlationId":"e1fd0013e7e6e0b1900dfa7a67a5232b","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l5607e1"}]}}' + body: '{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/providers/Microsoft.Resources/deployments/azdtest-lb61973-1738006065","name":"azdtest-lb61973-1738006065","type":"Microsoft.Resources/deployments","location":"eastus2","tags":{"azd-env-name":"azdtest-lb61973","azd-provision-param-hash":"f760fb0c68001175b3cc381daac42104c84a3e2870e53062432822d2c1b38bf0"},"properties":{"templateHash":"7230513710032888086","parameters":{"environmentName":{"type":"String","value":"azdtest-lb61973"},"location":{"type":"String","value":"eastus2"},"secretParam":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2025-01-27T19:30:12.4689293Z","duration":"PT4.8855966S","correlationId":"754d0bd12d84228d6f107e123406cd7d","providers":[{"namespace":"Microsoft.Resources","resourceTypes":[{"resourceType":"resourceGroups","locations":["eastus2"]}]}],"dependencies":[],"outputs":{"biceP_OUTPUT":{"type":"String","value":"SecretParam:THIS IS THE SECRET VALUE"}},"outputResources":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lb61973"}]}}' headers: Cache-Control: - no-cache @@ -3460,7 +3460,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:41:59 GMT + - Mon, 27 Jan 2025 19:30:38 GMT Expires: - "-1" Pragma: @@ -3472,20 +3472,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e1fd0013e7e6e0b1900dfa7a67a5232b + - 754d0bd12d84228d6f107e123406cd7d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - bcd4ac84-a4f2-4a56-9ac5-23f1bba9c8ba + - 30a07357-b392-4582-9619-a4bd1fb7aefe X-Ms-Routing-Request-Id: - - WESTUS2:20250127T184159Z:bcd4ac84-a4f2-4a56-9ac5-23f1bba9c8ba + - WESTUS2:20250127T193038Z:30a07357-b392-4582-9619-a4bd1fb7aefe X-Msedge-Ref: - - 'Ref A: 3D59B910E3AD4DFB9E2187BFDB9A8F93 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:41:59Z' + - 'Ref A: FB05BDD3A2E841D887653B65AA7ABAA5 Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:30:38Z' status: 200 OK code: 200 - duration: 226.461563ms + duration: 210.199978ms - id: 51 request: proto: HTTP/1.1 @@ -3509,8 +3509,8 @@ interactions: User-Agent: - azsdk-go-armresources.ResourceGroupsClient/v1.1.1 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - e1fd0013e7e6e0b1900dfa7a67a5232b - url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-l5607e1%27&api-version=2021-04-01 + - 754d0bd12d84228d6f107e123406cd7d + url: https://management.azure.com:443/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourcegroups?%24filter=tagName+eq+%27azd-env-name%27+and+tagValue+eq+%27azdtest-lb61973%27&api-version=2021-04-01 method: GET response: proto: HTTP/2.0 @@ -3520,7 +3520,7 @@ interactions: trailer: {} content_length: 288 uncompressed: false - body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-l5607e1","name":"rg-azdtest-l5607e1","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-l5607e1"},"properties":{"provisioningState":"Succeeded"}}]}' + body: '{"value":[{"id":"/subscriptions/faa080af-c1d8-40ad-9cce-e1a450ca5b57/resourceGroups/rg-azdtest-lb61973","name":"rg-azdtest-lb61973","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"azd-env-name":"azdtest-lb61973"},"properties":{"provisioningState":"Succeeded"}}]}' headers: Cache-Control: - no-cache @@ -3529,7 +3529,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:41:59 GMT + - Mon, 27 Jan 2025 19:30:39 GMT Expires: - "-1" Pragma: @@ -3541,20 +3541,20 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Correlation-Request-Id: - - e1fd0013e7e6e0b1900dfa7a67a5232b + - 754d0bd12d84228d6f107e123406cd7d X-Ms-Ratelimit-Remaining-Subscription-Global-Reads: - "16499" X-Ms-Ratelimit-Remaining-Subscription-Reads: - "1099" X-Ms-Request-Id: - - 3eacce7d-fde5-4d3d-b948-c6cfeeb61128 + - 337616e8-db7c-4511-9152-26d5bf458466 X-Ms-Routing-Request-Id: - - WESTUS2:20250127T184159Z:3eacce7d-fde5-4d3d-b948-c6cfeeb61128 + - WESTUS2:20250127T193039Z:337616e8-db7c-4511-9152-26d5bf458466 X-Msedge-Ref: - - 'Ref A: BB2E4D0FF3244903836892872EC77E48 Ref B: CO6AA3150218053 Ref C: 2025-01-27T18:41:59Z' + - 'Ref A: A1588B369C874F3FA53ED4F2299FE21C Ref B: CO6AA3150220009 Ref C: 2025-01-27T19:30:38Z' status: 200 OK code: 200 - duration: 56.922466ms + duration: 439.288747ms - id: 52 request: proto: HTTP/1.1 @@ -3563,7 +3563,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -3578,8 +3578,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - e1fd0013e7e6e0b1900dfa7a67a5232b - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 + - 754d0bd12d84228d6f107e123406cd7d + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -3598,7 +3598,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:41:59 GMT + - Mon, 27 Jan 2025 19:30:39 GMT Expires: - "-1" Pragma: @@ -3610,16 +3610,16 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 746410c7-1861-4b80-afee-9025bc65f759 + - c67ca237-6882-4d93-acf4-095aa74e973b status: 401 Unauthorized code: 401 - duration: 83.430697ms + duration: 77.214399ms - id: 53 request: proto: HTTP/1.1 @@ -3628,7 +3628,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: azdtest-l5607e1-kva.vault.azure.net + host: azdtest-lb61973-kva.vault.azure.net remote_addr: "" request_uri: "" body: "" @@ -3643,8 +3643,8 @@ interactions: User-Agent: - azsdk-go-azsecrets.Client/v0.13.0 (go1.23.0; linux),azdev/0.0.0-dev.0 (Go go1.23.0; linux/amd64) X-Ms-Correlation-Request-Id: - - e1fd0013e7e6e0b1900dfa7a67a5232b - url: https://azdtest-l5607e1-kva.vault.azure.net:443/secrets/azdtest-l5607e1-kvs/?api-version=7.4 + - 754d0bd12d84228d6f107e123406cd7d + url: https://azdtest-lb61973-kva.vault.azure.net:443/secrets/azdtest-lb61973-kvs/?api-version=7.4 method: GET response: proto: HTTP/1.1 @@ -3654,7 +3654,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-l5607e1-kva.vault.azure.net/secrets/azdtest-l5607e1-kvs/c2e90ce56e2c4e2dae951dcdc7bc5566","attributes":{"enabled":true,"created":1738003192,"updated":1738003192,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + body: '{"value":"THIS IS THE SECRET VALUE","id":"https://azdtest-lb61973-kva.vault.azure.net/secrets/azdtest-lb61973-kvs/3f7d2a6d26f94b3b8100b2750cd9d705","attributes":{"enabled":true,"created":1738006110,"updated":1738006110,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: Cache-Control: - no-cache @@ -3663,7 +3663,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 27 Jan 2025 18:41:59 GMT + - Mon, 27 Jan 2025 19:30:39 GMT Expires: - "-1" Pragma: @@ -3673,18 +3673,19 @@ interactions: X-Content-Type-Options: - nosniff X-Ms-Keyvault-Network-Info: - - conn_type=Ipv4;addr=4.155.25.64;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=4.155.25.72;act_addr_fam=InterNetwork; X-Ms-Keyvault-Rbac-Assignment-Id: - - 817da24c131b4b3ea1a794d96f73a639 + - 98408f8e073040719f917ca966ecd37c X-Ms-Keyvault-Region: - eastus2 X-Ms-Keyvault-Service-Version: - 1.9.2064.1 X-Ms-Request-Id: - - 882b82e5-b928-4a34-939b-26911821317b + - 35797bf1-8e2c-42a6-8f49-1eba98a5234b status: 200 OK code: 200 - duration: 86.2204ms + duration: 74.791474ms --- -env_name: azdtest-l5607e1 -time: "1738003143" +env_name: azdtest-lb61973 +subscription_id: faa080af-c1d8-40ad-9cce-e1a450ca5b57 +time: "1738006065" From 9d80cbd6b0639dc573fdb29c4ee068139823bfb3 Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Mon, 27 Jan 2025 21:26:48 -0800 Subject: [PATCH 20/22] Apply suggestions from code review Co-authored-by: Wei Lim --- cli/azd/cmd/env.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/azd/cmd/env.go b/cli/azd/cmd/env.go index db27fdbdd8e..110a37c0f6f 100644 --- a/cli/azd/cmd/env.go +++ b/cli/azd/cmd/env.go @@ -230,7 +230,7 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er willCreateNewSecret := setSecretStrategies[selectedStrategyIndex] == createNewStrategy - subscriptionNote := "\nYou can set the Key Vault secret from any Azure Subscription where you have access to." + subscriptionNote := "\nYou can set the Key Vault secret from any Azure subscription where you have access to." e.console.Message(ctx, subscriptionNote) // default messages based on willCreateNewSecret == true @@ -339,7 +339,7 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er vault, err := e.kvService.CreateVault(ctx, tenantId, subId, rg, location, kvAccountName) e.console.StopSpinner(ctx, "", input.Step) if err != nil { - return nil, fmt.Errorf("Error creating Key Vault: %w", err) + return nil, fmt.Errorf("error creating Key Vault: %w", err) } kvAccount = vault From 4a8b377bfddfeee83e02a5fe3b3a7153c0ff1899 Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Tue, 28 Jan 2025 06:22:31 +0000 Subject: [PATCH 21/22] remove env var for avoid numbers and use the console isInteractive --- cli/azd/cmd/env.go | 7 ++++--- cli/azd/pkg/prompt/prompter.go | 8 ++++++-- cli/azd/test/functional/cli_test.go | 1 - 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/cli/azd/cmd/env.go b/cli/azd/cmd/env.go index db27fdbdd8e..bf1e99eb21a 100644 --- a/cli/azd/cmd/env.go +++ b/cli/azd/cmd/env.go @@ -207,10 +207,10 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er } secretName := e.args[0] - // When AZD_ENV_SET_SECRET_LIST_WITHOUT_NUMBERS is defined in azd env, azd will not add numbers to the list when + // When no interactive is supported in the terminal azd will not add numbers to the list when // asking to select options. For example, instead of showing "1. Option 1", it will show "Option 1". This is useful // when the user wants to prefill the selection in stdin before calling azd env set-secret (e.g. in a script). - _, listWithoutNumbers := e.env.LookupEnv("AZD_ENV_SET_SECRET_LIST_WITHOUT_NUMBERS") + listWithoutNumbers := e.console.IsSpinnerInteractive() createNewStrategy := "Create a new Key Vault secret" selectExistingStrategy := "Select an existing Key Vault secret" @@ -312,7 +312,8 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er return nil, fmt.Errorf("prompting for Key Vault location: %w", err) } rg, err := e.prompter.PromptResourceGroupFrom(ctx, subId, location, prompt.PromptResourceGroupFromOptions{ - DefaultName: "rg-for-my-kv-account", + DefaultName: "rg-for-my-key-vault", + NewResourceGroupHelp: "The name of the new resource group where the Key Vault will be created.", }) if err != nil { return nil, fmt.Errorf("prompting for resource group: %w", err) diff --git a/cli/azd/pkg/prompt/prompter.go b/cli/azd/pkg/prompt/prompter.go index a911f3bb93a..f78d554eba9 100644 --- a/cli/azd/pkg/prompt/prompter.go +++ b/cli/azd/pkg/prompt/prompter.go @@ -130,8 +130,10 @@ func (p *DefaultPrompter) PromptResourceGroup(ctx context.Context) (string, erro } type PromptResourceGroupFromOptions struct { - Tags map[string]string - DefaultName string + Tags map[string]string + DefaultName string + NewResourceGroupHelp string + PickResourceGroupHelp string } func (p *DefaultPrompter) PromptResourceGroupFrom( @@ -155,6 +157,7 @@ func (p *DefaultPrompter) PromptResourceGroupFrom( choice, err := p.console.Select(ctx, input.ConsoleOptions{ Message: "Pick a resource group to use:", Options: choices, + Help: options.PickResourceGroupHelp, }) if err != nil { return "", fmt.Errorf("selecting resource group: %w", err) @@ -167,6 +170,7 @@ func (p *DefaultPrompter) PromptResourceGroupFrom( name, err := p.console.Prompt(ctx, input.ConsoleOptions{ Message: "Enter a name for the new resource group:", DefaultValue: options.DefaultName, + Help: options.NewResourceGroupHelp, }) if err != nil { return "", fmt.Errorf("prompting for resource group name: %w", err) diff --git a/cli/azd/test/functional/cli_test.go b/cli/azd/test/functional/cli_test.go index 69e359c1fbd..1c38c35dbf4 100644 --- a/cli/azd/test/functional/cli_test.go +++ b/cli/azd/test/functional/cli_test.go @@ -378,7 +378,6 @@ func Test_CLI_EnvironmentSecrets(t *testing.T) { cli.WorkingDirectory = dir cli.Env = append(cli.Env, os.Environ()...) cli.Env = append(cli.Env, "AZURE_LOCATION=eastus2") - cli.Env = append(cli.Env, `AZD_ENV_SET_SECRET_LIST_WITHOUT_NUMBERS=""`) err := copySample(dir, "environment-secrets") require.NoError(t, err, "failed expanding sample") From da7ef837a2bf85038a8f9157f75d070419ed7b6c Mon Sep 17 00:00:00 2001 From: Victor Vazquez Date: Tue, 28 Jan 2025 07:48:09 +0000 Subject: [PATCH 22/22] skip in playback --- cli/azd/cmd/env.go | 2 +- cli/azd/test/functional/cli_test.go | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/cli/azd/cmd/env.go b/cli/azd/cmd/env.go index 5770e34fcac..fc108b7d884 100644 --- a/cli/azd/cmd/env.go +++ b/cli/azd/cmd/env.go @@ -210,7 +210,7 @@ func (e *envSetSecretAction) Run(ctx context.Context) (*actions.ActionResult, er // When no interactive is supported in the terminal azd will not add numbers to the list when // asking to select options. For example, instead of showing "1. Option 1", it will show "Option 1". This is useful // when the user wants to prefill the selection in stdin before calling azd env set-secret (e.g. in a script). - listWithoutNumbers := e.console.IsSpinnerInteractive() + listWithoutNumbers := !e.console.IsSpinnerInteractive() createNewStrategy := "Create a new Key Vault secret" selectExistingStrategy := "Select an existing Key Vault secret" diff --git a/cli/azd/test/functional/cli_test.go b/cli/azd/test/functional/cli_test.go index 1c38c35dbf4..c1803ed7fe8 100644 --- a/cli/azd/test/functional/cli_test.go +++ b/cli/azd/test/functional/cli_test.go @@ -371,6 +371,10 @@ func Test_CLI_EnvironmentSecrets(t *testing.T) { session := recording.Start(t) + if session != nil && session.Playback { + t.Skip("Skipping test in playback mode. This test is live only.") + } + envName := randomOrStoredEnvName(session) t.Logf("AZURE_ENV_NAME: %s", envName) @@ -378,6 +382,7 @@ func Test_CLI_EnvironmentSecrets(t *testing.T) { cli.WorkingDirectory = dir cli.Env = append(cli.Env, os.Environ()...) cli.Env = append(cli.Env, "AZURE_LOCATION=eastus2") + cli.Env = append(cli.Env, "AZD_FORCE_TTY=false") err := copySample(dir, "environment-secrets") require.NoError(t, err, "failed expanding sample")