diff --git a/demo/bicep/external_auth.bicep b/demo/bicep/external_auth.bicep new file mode 100644 index 0000000000..5380068b3f --- /dev/null +++ b/demo/bicep/external_auth.bicep @@ -0,0 +1,83 @@ +param name string +param location string = resourceGroup().location +param currentTime string = utcNow() +param consoleCallbackUrl string // e.g., https://console-openshift-console.apps.example.com/auth/callback + +resource script 'Microsoft.Resources/deploymentScripts@2019-10-01-preview' = { + name: name + location: location + kind: 'AzurePowerShell' + identity: { + type: 'UserAssigned' + userAssignedIdentities: { + '${resourceId("app-reg-automation", "Microsoft.ManagedIdentity/userAssignedIdentities", "AppRegCreator")}': {} + } + } + properties: { + azPowerShellVersion: '5.0' + arguments: '-resourceName "${name}" -consoleCallback "${consoleCallbackUrl}"' + scriptContent: ''' + param([string] $resourceName, [string] $consoleCallback) + + $token = (Get-AzAccessToken -ResourceUrl https://graph.microsoft.com).Token + $headers = @{'Content-Type' = 'application/json'; 'Authorization' = 'Bearer ' + $token} + + $template = @{ + displayName = $resourceName + signInAudience = "AzureADMyOrg" + web = @{ + redirectUris = @($consoleCallback) + } + requiredResourceAccess = @( + @{ + resourceAppId = "00000003-0000-0000-c000-000000000000" + resourceAccess = @( + @{ + id = "e1fe6dd8-ba31-4d61-89e7-88639da4683d" + type = "Scope" + } + ) + } + ) + } + + # Upsert App registration + $app = (Invoke-RestMethod -Method Get -Headers $headers -Uri "https://graph.microsoft.com/beta/applications?filter=displayName eq '$($resourceName)'").value + $principal = @{} + if ($app) { + $ignore = Invoke-RestMethod -Method Patch -Headers $headers -Uri "https://graph.microsoft.com/beta/applications/$($app.id)" -Body ($template | ConvertTo-Json -Depth 10) + $principal = (Invoke-RestMethod -Method Get -Headers $headers -Uri "https://graph.microsoft.com/beta/servicePrincipals?filter=appId eq '$($app.appId)'").value + } else { + $app = (Invoke-RestMethod -Method Post -Headers $headers -Uri "https://graph.microsoft.com/beta/applications" -Body ($template | ConvertTo-Json -Depth 10)) + $principal = Invoke-RestMethod -Method POST -Headers $headers -Uri "https://graph.microsoft.com/beta/servicePrincipals" -Body (@{ "appId" = $app.appId } | ConvertTo-Json) + } + + # Regenerate client secret + $app = (Invoke-RestMethod -Method Get -Headers $headers -Uri "https://graph.microsoft.com/beta/applications/$($app.id)") + foreach ($password in $app.passwordCredentials) { + $body = @{ "keyId" = $password.keyId } + $ignore = Invoke-RestMethod -Method POST -Headers $headers -Uri "https://graph.microsoft.com/beta/applications/$($app.id)/removePassword" -Body ($body | ConvertTo-Json) + } + + $body = @{ "passwordCredential" = @{ "displayName"= "Client Secret" } } + $secret = (Invoke-RestMethod -Method POST -Headers $headers -Uri "https://graph.microsoft.com/beta/applications/$($app.id)/addPassword" -Body ($body | ConvertTo-Json)).secretText + + $DeploymentScriptOutputs = @{ + objectId = $app.id + clientId = $app.appId + clientSecret = $secret + principalId = $principal.id + redirectUri = $consoleCallback + } + ''' + cleanupPreference: 'OnSuccess' + retentionInterval: 'P1D' + forceUpdateTag: currentTime + } +} + +output objectId string = script.properties.outputs.objectId +output clientId string = script.properties.outputs.clientId +output clientSecret string = script.properties.outputs.clientSecret +output principalId string = script.properties.outputs.principalId +output redirectUri string = script.properties.outputs.redirectUri diff --git a/demo/external-auth-payload.json b/demo/external-auth-payload.json new file mode 100644 index 0000000000..a7d0fe3cf9 --- /dev/null +++ b/demo/external-auth-payload.json @@ -0,0 +1,6 @@ +{ + "clientId": "00000000-0000-0000-0000-000000000000", + "clientSecret": "your-secret-value", + "issuer": "https://login.microsoftonline.com/your-tenant-id/v2.0", + "callbackUrl": "https://console-openshift.example.com/oauth2callback" +} diff --git a/demo/main.sh b/demo/main.sh new file mode 100755 index 0000000000..76e11eadea --- /dev/null +++ b/demo/main.sh @@ -0,0 +1,261 @@ + +show_info_box() { + gum style --border double --margin "1" --padding "1 2" --border-foreground 99 \ + "πŸ“˜ External Entra Auth Prerequisites:" "" \ + "β€’ A fully created ARO-HCP cluster" \ + "β€’ A Hosted Control Plane (HCP) running" \ + "β€’ A NodePool created and provisioned" \ + "β€’ RP is port-forwarded and reachable on localhost:8443" \ + "β€’ Azure CLI is authenticated and target subscription is selected" + echo "" +} + +#!/usr/bin/env bash +set -euo pipefail + +# Icons +K8S="☸️" +AZ="πŸ”·" +GIT="🌳" +CHECK="βœ…" +PENDING="⏳" + +# Dependencies check +install_if_missing() { + cmd=$1 + pkg=$2 + icon=$3 + if ! command -v "$cmd" &>/dev/null; then + echo "$icon Installing $cmd..." + sudo dnf install -y "$pkg" + fi +} + +check_deps() { + install_if_missing az azure-cli "$AZ" + install_if_missing kubectl kubectl "$K8S" + install_if_missing jq jq "🧩" + install_if_missing gum gum "πŸ’Ž" + install_if_missing git git "$GIT" +} + +# Verify az login +verify_az_login() { + echo "$AZ Verifying Azure login..." + az account show &>/dev/null || az login +} + +# Print step with checkboxes +declare -A STATUS +STATUS=( + [entra]="⏳" + [group]="⏳" + [callback]="⏳" + [update_uri]="⏳" + [apply_rp]="⏳" + [test]="⏳" +) + +print_status() { + clear + echo "πŸ” External Auth Entra Setup Progress:" + echo "${STATUS[entra]} Create Entra App" + echo "${STATUS[group]} Create AD Group & Add User" + echo "${STATUS[callback]} Get Cluster Callback URL" + echo "${STATUS[update_uri]} Update Entra Redirect URI" + echo "${STATUS[apply_rp]} Apply Config via RP" + echo "${STATUS[test]} Test Redirect" + echo "" +} + +create_entra_app() { + print_status + echo "$AZ Creating Entra App..." + app_name="ARO-HCP-Auth-$(date +%s)" + app_info=$(az ad app create --display-name "$app_name" --query '{appId: appId, id: id}' -o json) + client_id=$(echo "$app_info" | jq -r '.appId') + app_obj_id=$(echo "$app_info" | jq -r '.id') + secret_info=$(az ad app credential reset --id "$client_id" --append --display-name "AROSecret" -o json) + client_secret=$(echo "$secret_info" | jq -r '.password') + echo "client_id=$client_id" > demo_env.sh + echo "client_secret=$client_secret" >> demo_env.sh + echo "app_obj_id=$app_obj_id" >> demo_env.sh + echo "app_name=$app_name" >> demo_env.sh + STATUS[entra]="βœ…" +} + +create_ad_group() { + print_status + echo "πŸ‘₯ Creating AD Group..." + source demo_env.sh + group_name="ARO-HCP-Admins" + az ad group create --display-name "$group_name" --mail-nickname "$group_name" &>/dev/null || true + read -p "Enter user email to add: " user_email + user_id=$(az ad user show --id "$user_email" --query id -o tsv) + az ad group member add --group "$group_name" --member-id "$user_id" + STATUS[group]="βœ…" +} + +get_callback_url() { + print_status + echo "$K8S Fetching callback URL..." + echo "" + echo "πŸ” Ensure you're authenticated to the correct cluster (management or hosted control plane)." + echo "If you encounter x509 certificate errors:" + echo " - Run ./request-admin-credential.sh to create break-glass credentials" + echo " - export KUBECONFIG=./kubeconfig" + echo " - Use --insecure-skip-tls-verify for kubectl commands" + echo "" + + hcp_ns=$(gum input --placeholder "Enter Hypershift namespace:") + hcp_name=$(gum input --placeholder "Enter Hypershift cluster name:") + + echo "" + echo "πŸ” Attempting to retrieve callback URL from HostedCluster..." + callback_url=$(kubectl get hostedcluster "$hcp_name" -n "$hcp_ns" -o jsonpath="{.status.oauthCallbackURL}" 2>/dev/null || echo "") + + if [[ -z "$callback_url" ]]; then + echo "HostedCluster callback URL not available. Attempting to get OpenShift console route..." + callback_url=$(kubectl get route console -n openshift-console --insecure-skip-tls-verify -o jsonpath="{.spec.host}" 2>/dev/null || echo "") + + if [[ -z "$callback_url" ]]; then + echo "⚠️ Failed to retrieve callback URL from both HostedCluster and OpenShift console route." + echo "↩️ Returning to menu without setting callback URL." + return + else + echo "βœ… Found fallback callback URL from OpenShift console route: https://$callback_url" + callback_url="https://$callback_url" + fi + else + echo "βœ… Callback URL from HostedCluster: $callback_url" + fi + + echo "callback_url=$callback_url" >> demo_env.sh + STATUS[callback]="βœ…" +} + + +update_app_redirect_uri() { + print_status + echo "$AZ Updating redirect URI..." + source demo_env.sh + + # Ensure the callback URL is present + if [[ -z "${callback_url:-}" ]]; then + echo "❌ callback_url is not set. Please run 'Get Callback URL' step first." + return + fi + + # Ensure it ends with /oauth/callback + redirect_uri="${callback_url%/}/oauth/callback" + echo "πŸ”— Setting redirect URI to: $redirect_uri" + + az ad app update --id "$client_id" --web-redirect-uris "$redirect_uri" + + STATUS[update_uri]="βœ…" +} + +apply_idp_config_via_rp() { + print_status + echo "πŸ“‘ Preparing to send external auth config to RP frontend..." + + echo "" + echo "πŸ’‘ Ensure RP is forwarded:" + echo " kubectl port-forward svc/aro-hcp-frontend -n aro-hcp 8443:8443" + echo "" + + source demo_env.sh + + # Check if IDP is already configured + echo "πŸ” Checking existing IDPs in the HostedCluster..." + if kubectl get authentication cluster --insecure-skip-tls-verify -o json | jq -e '.spec.identityProviders | length > 0' >/dev/null; then + echo "⚠️ Identity Provider already configured in the cluster." + gum confirm "Return to menu?" && return + else + echo "βœ… No existing IDP found." + fi + + # Get Entra app name or ID + read -p "Enter the external auth ID (e.g., entra): " external_auth_id + + # Get access token + ACCESS_TOKEN=$(az account get-access-token --query accessToken -o tsv 2>/dev/null || true) + if [[ -z "$ACCESS_TOKEN" ]]; then + read -p "Could not auto-acquire access token. Please enter it manually: " ACCESS_TOKEN + else + echo "πŸ”‘ Azure access token acquired." + fi + + # Get subscription/RG/cluster name + default_sub=$(az account show --query id -o tsv 2>/dev/null || echo "") + read -p "Enter your subscription ID [default: $default_sub]: " subscription_id + subscription_id=${subscription_id:-$default_sub} + read -p "Enter your resource group name: " resource_group + read -p "Enter your cluster name: " cluster_name + + # Build RP URL + rp_url="http://localhost:8443/subscriptions/$subscription_id/resourceGroups/$resource_group/providers/Microsoft.RedHatOpenShift/hcpOpenShiftClusters/$cluster_name/externalAuths/$external_auth_id?api-version=2024-06-10-preview" + created_at=$(date -u +%Y-%m-%dT%H:%M:%SZ) + + echo "" + echo "πŸ”— RP Endpoint: $rp_url" + echo "πŸš€ Sending PUT request with payload..." + + # Execute request + curl -s -w "%{http_code}" --fail-with-body -o rp_response.log -X PUT "$rp_url" \ + -H "Authorization: Bearer $ACCESS_TOKEN" \ + -H "Content-Type: application/json" \ + -H "X-Ms-Identity-Url: https://dummy.identity.azure.net" \ + -H "X-Ms-Arm-Resource-System-Data: {\"createdBy\": \"dev-user\", \"createdByType\": \"User\", \"createdAt\": \"$created_at\"}" \ + --data-binary @external-auth-payload.json || echo "error" >> rp_response.log + + echo "" + echo "Logging RP pod logs (top 30 lines)..." + + echo "Switching to Service Cluster for logs..." + export KUBECONFIG=$(make infra.svc.aks.kubeconfigfile 2>/dev/null) + + if [[ -z "$KUBECONFIG" ]]; then + echo "Could not switch to service cluster. Skipping pod log capture." >> rp_response.log + else + echo "Capturing logs from RP frontend pod..." + { + echo "" + echo "================ RP FRONTEND POD LOGS (top 30) ================" + kubectl logs deployment/aro-hcp-frontend -c aro-hcp-frontend -n aro-hcp --tail=30 2>&1 || echo "Failed to get logs" + } >> rp_response.log + fi + + echo "" + if grep -q '"status": *"Succeeded"' rp_response.log; then + echo "βœ… Successfully applied external auth config to RP." + STATUS[apply_rp]="βœ…" + else + echo "❌ Failed to apply config or confirm success." + echo "πŸ“„ See full logs in rp_response.log" + gum confirm "Retry apply to RP?" && apply_idp_config_via_rp || echo "↩️ Returning to main menu." + fi +} + + +test_login_redirect() { + print_status + source demo_env.sh + gum confirm "Open callback URL in browser?" && xdg-open "$callback_url" + STATUS[test]="βœ…" +} + +run_flow() { + check_deps + verify_az_login + create_entra_app + create_ad_group + get_callback_url + update_app_redirect_uri + apply_idp_config_via_rp + test_login_redirect + print_status + echo "πŸŽ‰ All tasks completed." +} + +run_flow diff --git a/demo/rp_response.log b/demo/rp_response.log new file mode 100644 index 0000000000..9628121aa8 --- /dev/null +++ b/demo/rp_response.log @@ -0,0 +1,6 @@ +{ + "error": { + "code": "InternalServerError", + "message": "Internal server error." + } +} \ No newline at end of file diff --git a/frontend/pkg/frontend/external_auth_test.go b/frontend/pkg/frontend/external_auth_test.go index d3a6cb65ab..bd0839b14d 100644 --- a/frontend/pkg/frontend/external_auth_test.go +++ b/frontend/pkg/frontend/external_auth_test.go @@ -49,6 +49,7 @@ var dummyExternalAuthHREF = ocm.GenerateExternalAuthHREF(dummyClusterHREF, api.T var dummyURL = "Spain" var dummyAudiences = []string{"audience1"} +var dummyClaim = "openshift-v4.18.0" var dummyClaim = "4.18.0" func TestCreateExternalAuth(t *testing.T) { diff --git a/test/e2e/external_auth_api_test.go b/test/e2e/external_auth_api_test.go new file mode 100644 index 0000000000..8c7615f0b9 --- /dev/null +++ b/test/e2e/external_auth_api_test.go @@ -0,0 +1,113 @@ +// Copyright 2025 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package e2e + +import ( + "context" + "encoding/json" + "fmt" + "io" + "net/http" + "os" + "strings" + "time" + . "github.com/onsi/ginkgo/v2" + . "github.com/onsi/gomega" + + "github.com/Azure/ARO-HCP/test/util/labels" +) + +var labelsCombined = append(labels.Integration, labels.ExternalAuth...) + +var _ = Describe("External Auth API Access", Labels(labelsCombined), func() { + var ( + ctx context.Context + cancel context.CancelFunc + clientID string + clientSecret string + tenantID string + scope string + apiURL string + ) + + BeforeEach(func() { + ctx, cancel = context.WithTimeout(context.Background(), 2*time.Minute) + + clientID = os.Getenv("AZURE_CLIENT_ID") + clientSecret = os.Getenv("AZURE_CLIENT_SECRET") + tenantID = os.Getenv("AZURE_TENANT_ID") + scope = os.Getenv("AZURE_SCOPE") // typically "api:///.default" + apiURL = os.Getenv("EXTERNAL_AUTH_TEST_ENDPOINT") // e.g., https:///api/ping + + Expect(clientID).ToNot(BeEmpty()) + Expect(clientSecret).ToNot(BeEmpty()) + Expect(tenantID).ToNot(BeEmpty()) + Expect(scope).ToNot(BeEmpty()) + Expect(apiURL).ToNot(BeEmpty()) + }) + + AfterEach(func() { + cancel() + }) + + It("should acquire token and call protected cluster API", func() { + authURL := fmt.Sprintf("https://login.microsoftonline.com/%s/oauth2/v2.0/token", tenantID) + + By("Fetching a token from Microsoft Entra ID") + body := fmt.Sprintf( + "grant_type=client_credentials&client_id=%s&client_secret=%s&scope=%s", + clientID, clientSecret, scope, + ) + + req, err := http.NewRequestWithContext(ctx, "POST", authURL, strings.NewReader(body)) + Expect(err).ToNot(HaveOccurred()) + req.Header.Set("Content-Type", "application/x-www-form-urlencoded") + + resp, err := http.DefaultClient.Do(req) + Expect(err).ToNot(HaveOccurred()) + defer resp.Body.Close() + + Expect(resp.StatusCode).To(Equal(200)) + + var tokenResp struct { + AccessToken string `json:"access_token"` + } + err = json.NewDecoder(resp.Body).Decode(&tokenResp) + Expect(err).ToNot(HaveOccurred()) + Expect(tokenResp.AccessToken).ToNot(BeEmpty()) + + By("Calling the protected API with bearer token") + req2, err := http.NewRequestWithContext(ctx, "GET", apiURL, nil) + Expect(err).ToNot(HaveOccurred()) + req2.Header.Set("Authorization", "Bearer "+tokenResp.AccessToken) + + resp2, err := http.DefaultClient.Do(req2) + Expect(err).ToNot(HaveOccurred()) + defer resp2.Body.Close() + + Expect(resp2.StatusCode).To(Equal(200)) + + bodyBytes, err := io.ReadAll(resp2.Body) + Expect(err).ToNot(HaveOccurred()) + + var parsed map[string]interface{} + err = json.Unmarshal(bodyBytes, &parsed) + Expect(err).ToNot(HaveOccurred()) + + // Validate a sample field (adjust depending on your endpoint) + Expect(parsed).To(HaveKey("cluster_status")) + Expect(parsed["cluster_status"]).To(Equal("healthy")) + }) +}) diff --git a/test/e2e/external_auth_complete_cluster.go b/test/e2e/external_auth_complete_cluster.go new file mode 100644 index 0000000000..ba7e2b431c --- /dev/null +++ b/test/e2e/external_auth_complete_cluster.go @@ -0,0 +1,150 @@ +// Copyright 2025 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package e2e + +import ( + "bytes" + "context" + "encoding/json" + "fmt" + "io" + "net/http" + "time" + + . "github.com/onsi/ginkgo/v2" + . "github.com/onsi/gomega" + + "github.com/Azure/ARO-HCP/test/util/framework" + "github.com/Azure/ARO-HCP/test/util/labels" +) + +var _ = Describe("ExternalAuth Full E2E", func() { + It("creates a full HCP cluster and applies ExternalAuth config", + labels.RequireNothing, labels.Critical, labels.Positive, + func(ctx context.Context) { + tc := framework.NewTestContext() + + const ( + region = "uksouth" + customerNSGName = "customer-nsg-name" + customerVnetName = "customer-vnet-name" + customerVnetSubnetName = "customer-vnet-subnet1" + customerClusterName = "external-auth-cluster" + customerNodePoolName = "np-1" + externalAuthID = "backplane-api" + issuerURL = "https://login.microsoftonline.com/034d47fe-1dfa-4892-a2f7-c168f15d156c/v2.0" + cliAudience = "034d47fe-1dfa-4892-a2f7-c168f15d156c" + usernameClaim = "email" + groupsClaim = "groups" + externalAuthComponentName = "console" + externalAuthComponentNS = "openshift-console" + externalAuthClientSecret = "" + externalAuthClientID = "" + ) + + By("creating resource group") + resourceGroup, err := tc.NewResourceGroup(ctx, "external-auth", region) + Expect(err).NotTo(HaveOccurred()) + + By("provisioning infra") + _, err = framework.CreateBicepTemplateAndWait(ctx, + tc.GetARMResourcesClientFactoryOrDie(ctx).NewDeploymentsClient(), + *resourceGroup.Name, "infra", + framework.Must(TestArtifactsFS.ReadFile("test-artifacts/generated-test-artifacts/standard-cluster-create/customer-infra.json")), + map[string]interface{}{ + "customerNsgName": customerNSGName, + "customerVnetName": customerVnetName, + "customerVnetSubnetName": customerVnetSubnetName, + }, 45*time.Minute) + Expect(err).NotTo(HaveOccurred()) + + By("creating HCP cluster") + managedRG := framework.SuffixName(*resourceGroup.Name, "-managed", 64) + _, err = framework.CreateBicepTemplateAndWait(ctx, + tc.GetARMResourcesClientFactoryOrDie(ctx).NewDeploymentsClient(), + *resourceGroup.Name, "hcp-cluster", + framework.Must(TestArtifactsFS.ReadFile("test-artifacts/generated-test-artifacts/standard-cluster-create/cluster.json")), + map[string]interface{}{ + "nsgName": customerNSGName, + "vnetName": customerVnetName, + "subnetName": customerVnetSubnetName, + "clusterName": customerClusterName, + "managedResourceGroupName": managedRG, + }, 45*time.Minute) + Expect(err).NotTo(HaveOccurred()) + + By("creating node pool") + _, err = framework.CreateBicepTemplateAndWait(ctx, + tc.GetARMResourcesClientFactoryOrDie(ctx).NewDeploymentsClient(), + *resourceGroup.Name, "node-pool", + framework.Must(TestArtifactsFS.ReadFile("test-artifacts/generated-test-artifacts/standard-cluster-create/nodepool.json")), + map[string]interface{}{ + "clusterName": customerClusterName, + "nodePoolName": customerNodePoolName, + }, 45*time.Minute) + Expect(err).NotTo(HaveOccurred()) + + By("applying ExternalAuth config via RP") + authPayload := map[string]interface{}{ + "id": externalAuthID, + "issuer": map[string]interface{}{ + "url": issuerURL, + "audiences": []string{cliAudience}, + }, + "claim": map[string]interface{}{ + "mappings": map[string]interface{}{ + "userName": map[string]interface{}{"claim": usernameClaim}, + "groups": map[string]interface{}{"claim": groupsClaim}, + }, + }, + "clients": []map[string]interface{}{ + { + "component": map[string]interface{}{ + "name": externalAuthComponentName, + "namespace": externalAuthComponentNS, + }, + "id": externalAuthClientID, + "secret": externalAuthClientSecret, + }, + }, + } + + body, err := json.Marshal(authPayload) + Expect(err).NotTo(HaveOccurred()) + + rpEndpoint := fmt.Sprintf("https://localhost:8443/api/aro_hcp/v1alpha1/clusters/%s/external_auth_config/external_auths", customerClusterName) + req, err := http.NewRequestWithContext(ctx, "POST", rpEndpoint, bytes.NewReader(body)) + Expect(err).NotTo(HaveOccurred()) + req.Header.Set("Content-Type", "application/json") + + client := &http.Client{Timeout: 30 * time.Second} + resp, err := client.Do(req) + Expect(err).NotTo(HaveOccurred()) + defer resp.Body.Close() + Expect(resp.StatusCode).To(Equal(http.StatusCreated)) + + By("verifying ExternalAuth config was applied") + verifyReq, err := http.NewRequestWithContext(ctx, "GET", rpEndpoint, nil) + Expect(err).NotTo(HaveOccurred()) + verifyResp, err := client.Do(verifyReq) + Expect(err).NotTo(HaveOccurred()) + defer verifyResp.Body.Close() + Expect(verifyResp.StatusCode).To(Equal(http.StatusOK)) + + respData, err := io.ReadAll(verifyResp.Body) + Expect(err).NotTo(HaveOccurred()) + Expect(string(respData)).To(ContainSubstring(externalAuthID)) + }) +}) diff --git a/test/e2e/external_auth_create_test.go b/test/e2e/external_auth_create_test.go new file mode 100644 index 0000000000..2fcd8cd41b --- /dev/null +++ b/test/e2e/external_auth_create_test.go @@ -0,0 +1,55 @@ +// Copyright 2025 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package e2e + +import ( + "context" + + . "github.com/onsi/ginkgo/v2" + . "github.com/onsi/gomega" + + api "github.com/Azure/ARO-HCP/internal/api/v20240610preview/generated" + "github.com/Azure/ARO-HCP/test/util/integration" + "github.com/Azure/ARO-HCP/test/util/labels" +) + +var _ = Describe("Put HCPOpenShiftCluster ExternalAuth", func() { + var ( + ExternalAuthsClient *api.ExternalAuthsClient + customerEnv *integration.CustomerEnv + ) + + BeforeEach(func() { + By("Preparing HCP externalAuths client") + ExternalAuthsClient = clients.NewExternalAuthsClient() + By("Preparing customer environment values") + customerEnv = &e2eSetup.CustomerEnv + }) + + It("Attempts to create a external auth for a non-existant HCPOpenshiftCluster", labels.RequireHappyPathInfra, labels.Medium, labels.Negative, func(ctx context.Context) { + var ( + nodePoolName = "my-cool-external-auth" + clusterName = "non-existing_cluster" + nodePoolResource api.ExternalAuth + nodePoolOptions *api.ExternalAuthsClientBeginCreateOrUpdateOptions + ) + + By("Sending a put request to create external auth for non-existing HCPOpenshiftCluster") + _, err := ExternalAuthsClient.BeginCreateOrUpdate(ctx, customerEnv.CustomerRGName, clusterName, nodePoolName, nodePoolResource, nodePoolOptions) + Expect(err).ToNot(BeNil()) + errMessage := "RESPONSE 500: 500 Internal Server Error" + Expect(err.Error()).To(ContainSubstring(errMessage)) + }) +}) diff --git a/test/e2e/external_auth_get_test.go b/test/e2e/external_auth_get_test.go new file mode 100644 index 0000000000..ad6eb0e0a0 --- /dev/null +++ b/test/e2e/external_auth_get_test.go @@ -0,0 +1,62 @@ +// Copyright 2025 Microsoft Corporation +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +package e2e + +import ( + "context" + + . "github.com/onsi/ginkgo/v2" + . "github.com/onsi/gomega" + + api "github.com/Azure/ARO-HCP/internal/api/v20240610preview/generated" + "github.com/Azure/ARO-HCP/test/util/integration" + "github.com/Azure/ARO-HCP/test/util/labels" +) + +var _ = Describe("Get HCPOpenShiftCluster ExternalAuth", func() { + var ( + NodePoolsClient *api.NodePoolsClient + clusterEnv *integration.Cluster + nodePoolOptions *api.NodePoolsClientGetOptions + customerEnv *integration.CustomerEnv + nodePools *[]integration.Nodepool + ) + + BeforeEach(func() { + By("Prepare HCPOpenshiftCluster nodepool client") + NodePoolsClient = clients.NewNodePoolsClient() + By("Prepare customer environment values") + customerEnv = &e2eSetup.CustomerEnv + nodePools = &e2eSetup.Nodepools + clusterEnv = &e2eSetup.Cluster + }) + + Context("Positive", func() { + It("Get each nodepool from HCPOpenShiftCluster", labels.RequireHappyPathInfra, labels.Medium, labels.Positive, labels.SetupValidation, func(ctx context.Context) { + if nodePools != nil { + nps := *nodePools + for np := range nps { + By("Send get request for nodepool") + clusterNodePool, err := NodePoolsClient.Get(ctx, customerEnv.CustomerRGName, clusterEnv.Name, nps[np].Name, nodePoolOptions) + Expect(err).To(BeNil()) + Expect(clusterNodePool).ToNot(BeNil()) + By("Check to see nodepool exists and is successfully provisioned") + Expect(string(*clusterNodePool.Name)).To(Equal(nps[np].Name)) + Expect(string(*clusterNodePool.Properties.ProvisioningState)).To(Equal("Succeeded")) + } + } + }) + }) +}) diff --git a/test/e2e/test-artifacts/external-auth/external-auth-cluster.bicep b/test/e2e/test-artifacts/external-auth/external-auth-cluster.bicep new file mode 100644 index 0000000000..aac1eccdd4 --- /dev/null +++ b/test/e2e/test-artifacts/external-auth/external-auth-cluster.bicep @@ -0,0 +1,578 @@ +// TODO +// * KMS identity + role assignments need to be created +// * pass the KMS identity to the cluster + +@description('Name of the hypershift cluster') +param clusterName string + +@description('The Hypershift cluster managed resource group name') +param managedResourceGroupName string + +@description('The Network security group name for the hcp cluster resources') +param nsgName string + +@description('The virtual network name for the hcp cluster resources') +param vnetName string + +@description('The subnet name for deploying hcp cluster resources.') +param subnetName string + +@description('The Microsoft Entra client ID for external authentication') +param entraClientId string + +@description('The Microsoft Entra tenant ID for external authentication') +param entraTenantId string + +var randomSuffix = toLower(uniqueString(clusterName)) + +// +// E X I S T I N G R E S O U R C E S +// + +resource vnet 'Microsoft.Network/virtualNetworks@2022-07-01' existing = { + name: vnetName +} + +resource subnet 'Microsoft.Network/virtualNetworks/subnets@2022-07-01' existing = { + name: subnetName + parent: vnet +} + +resource nsg 'Microsoft.Network/networkSecurityGroups@2022-07-01' existing = { + name: nsgName +} + +// +// C O N T R O L P L A N E I D E N T I T I E S +// + +// Reader +var readerRoleId = subscriptionResourceId( + 'Microsoft.Authorization/roleDefinitions', + 'acdd72a7-3385-48ef-bd42-f606fba81ae7' +) + +// +// C L U S T E R A P I A Z U R E M I +// + +resource clusterApiAzureMi 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' = { + name: '${clusterName}-cp-cluster-api-azure-${randomSuffix}' + location: resourceGroup().location +} + +// Azure Red Hat OpenShift Hosted Control Planes Cluster API Provider +var hcpClusterApiProviderRoleId = subscriptionResourceId( + 'Microsoft.Authorization/roleDefinitions', + '88366f10-ed47-4cc0-9fab-c8a06148393e' +) + +resource hcpClusterApiProviderRoleSubnetAssignment 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, clusterApiAzureMi.id, hcpClusterApiProviderRoleId, subnet.id) + scope: subnet + properties: { + principalId: clusterApiAzureMi.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: hcpClusterApiProviderRoleId + } +} + +resource serviceManagedIdentityReaderOnClusterApiAzureMi 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, serviceManagedIdentity.id, readerRoleId, clusterApiAzureMi.id) + scope: clusterApiAzureMi + properties: { + principalId: serviceManagedIdentity.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: readerRoleId + } +} + +// +// C O N T R O L P L A N E O P E R A T O R M A N A G E D I D E N T I T Y +// + +resource controlPlaneMi 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' = { + name: '${clusterName}-cp-control-plane-${randomSuffix}' + location: resourceGroup().location +} + +// Azure Red Hat OpenShift Hosted Control Planes Control Plane Operator +var hcpControlPlaneOperatorRoleId = subscriptionResourceId( + 'Microsoft.Authorization/roleDefinitions', + 'fc0c873f-45e9-4d0d-a7d1-585aab30c6ed' +) + +resource hcpControlPlaneOperatorVnetRoleAssignment 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, controlPlaneMi.id, hcpControlPlaneOperatorRoleId, vnet.id) + scope: vnet + properties: { + principalId: controlPlaneMi.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: hcpControlPlaneOperatorRoleId + } +} + +resource hcpControlPlaneOperatorNsgRoleAssignment 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, controlPlaneMi.id, hcpControlPlaneOperatorRoleId, nsg.id) + scope: nsg + properties: { + principalId: controlPlaneMi.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: hcpControlPlaneOperatorRoleId + } +} + +resource serviceManagedIdentityReaderOnControlPlaneMi 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, serviceManagedIdentity.id, readerRoleId, controlPlaneMi.id) + scope: controlPlaneMi + properties: { + principalId: serviceManagedIdentity.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: readerRoleId + } +} + +// +// C L O U D C O N T R O L L E R M A N A G E R M A N A G E D I D E N T I T Y +// + +resource cloudControllerManagerMi 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' = { + name: '${clusterName}-cp-cloud-controller-manager-${randomSuffix}' + location: resourceGroup().location +} + +// Azure Red Hat OpenShift Cloud Controller Manager +var cloudControllerManagerRoleId = subscriptionResourceId( + 'Microsoft.Authorization/roleDefinitions', + 'a1f96423-95ce-4224-ab27-4e3dc72facd4' +) + +resource cloudControllerManagerRoleSubnetAssignment 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, cloudControllerManagerMi.id, cloudControllerManagerRoleId, subnet.id) + scope: subnet + properties: { + principalId: cloudControllerManagerMi.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: cloudControllerManagerRoleId + } +} + +resource cloudControllerManagerRoleNsgAssignment 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, cloudControllerManagerMi.id, cloudControllerManagerRoleId, nsg.id) + scope: nsg + properties: { + principalId: cloudControllerManagerMi.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: cloudControllerManagerRoleId + } +} + +resource serviceManagedIdentityReaderOnCloudControllerManagerMi 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, serviceManagedIdentity.id, readerRoleId, cloudControllerManagerMi.id) + scope: cloudControllerManagerMi + properties: { + principalId: serviceManagedIdentity.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: readerRoleId + } +} + +// +// I N G R E S S M A N A G E D I D E N T I T Y +// + +resource ingressMi 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' = { + name: '${clusterName}-cp-ingress-${randomSuffix}' + location: resourceGroup().location +} + +// Azure Red Hat OpenShift Cluster Ingress Operator +var ingressOperatorRoleId = subscriptionResourceId( + 'Microsoft.Authorization/roleDefinitions', + '0336e1d3-7a87-462b-b6db-342b63f7802c' +) + +resource ingressOperatorRoleSubnetAssignment 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, ingressMi.id, ingressOperatorRoleId, subnet.id) + scope: subnet + properties: { + principalId: ingressMi.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: ingressOperatorRoleId + } +} + +resource serviceManagedIdentityReaderOnIngressMi 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, serviceManagedIdentity.id, readerRoleId, ingressMi.id) + scope: ingressMi + properties: { + principalId: serviceManagedIdentity.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: readerRoleId + } +} + +// +// D I S K C S I D R I V E R M A N A G E D I D E N T I T Y +// + +resource diskCsiDriverMi 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' = { + name: '${clusterName}-cp-disk-csi-driver-${randomSuffix}' + location: resourceGroup().location +} + +resource serviceManagedIdentityReaderOnDiskCsiDriverMi 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, serviceManagedIdentity.id, readerRoleId, diskCsiDriverMi.id) + scope: diskCsiDriverMi + properties: { + principalId: serviceManagedIdentity.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: readerRoleId + } +} + +// +// F I L E C S I D R I V E R M A N A G E D I D E N T I T Y +// + +resource fileCsiDriverMi 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' = { + name: '${clusterName}-cp-file-csi-driver-${randomSuffix}' + location: resourceGroup().location +} + +// Azure Red Hat OpenShift File Storage Operator +var fileStorageOperatorRoleId = subscriptionResourceId( + 'Microsoft.Authorization/roleDefinitions', + '0d7aedc0-15fd-4a67-a412-efad370c947e' +) + +resource fileStorageOperatorRoleSubnetAssignment 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, fileCsiDriverMi.id, fileStorageOperatorRoleId, subnet.id) + scope: subnet + properties: { + principalId: fileCsiDriverMi.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: fileStorageOperatorRoleId + } +} + +resource fileStorageOperatorRoleNsgAssignment 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, fileCsiDriverMi.id, fileStorageOperatorRoleId, nsg.id) + scope: nsg + properties: { + principalId: fileCsiDriverMi.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: fileStorageOperatorRoleId + } +} + +resource serviceManagedIdentityReaderOnFileCsiDriverMi 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, serviceManagedIdentity.id, readerRoleId, fileCsiDriverMi.id) + scope: fileCsiDriverMi + properties: { + principalId: serviceManagedIdentity.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: readerRoleId + } +} + +// +// I M A G E R E G I S T R Y M A N A G E D I D E N T I T Y +// + +resource imageRegistryMi 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' = { + name: '${clusterName}-cp-image-registry-${randomSuffix}' + location: resourceGroup().location +} + +resource serviceManagedIdentityReaderOnImageRegistryMi 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, serviceManagedIdentity.id, readerRoleId, imageRegistryMi.id) + scope: imageRegistryMi + properties: { + principalId: serviceManagedIdentity.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: readerRoleId + } +} + +// +// C L O U D N E T W O R K C O N F I G M A N A G E D I D E N T I T Y +// + +resource cloudNetworkConfigMi 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' = { + name: '${clusterName}-cp-cloud-network-config-${randomSuffix}' + location: resourceGroup().location +} + +// Azure Red Hat OpenShift Network Operator +var networkOperatorRoleId = subscriptionResourceId( + 'Microsoft.Authorization/roleDefinitions', + 'be7a6435-15ae-4171-8f30-4a343eff9e8f' +) + +resource networkOperatorRoleSubnetAssignment 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, cloudNetworkConfigMi.id, networkOperatorRoleId, subnet.id) + scope: subnet + properties: { + principalId: cloudNetworkConfigMi.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: networkOperatorRoleId + } +} + +resource networkOperatorRoleVnetAssignment 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, cloudNetworkConfigMi.id, networkOperatorRoleId, vnet.id) + scope: vnet + properties: { + principalId: cloudNetworkConfigMi.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: networkOperatorRoleId + } +} + +resource serviceManagedIdentityReaderOnCloudNetworkMi 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, serviceManagedIdentity.id, readerRoleId, cloudNetworkConfigMi.id) + scope: cloudNetworkConfigMi + properties: { + principalId: serviceManagedIdentity.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: readerRoleId + } +} + +// +// D A T A P L A N E I D E N T I T I E S +// + +// Azure Red Hat OpenShift Federated Credential +// give the ability to perform OIDC federation to the service managed identity +// over the corresponding dataplane identities +var federatedCredentialsRoleId = subscriptionResourceId( + 'Microsoft.Authorization/roleDefinitions', + 'ef318e2a-8334-4a05-9e4a-295a196c6a6e' +) + +resource dpDiskCsiDriverMi 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' = { + name: '${clusterName}-dp-disk-csi-driver-${randomSuffix}' + location: resourceGroup().location +} + +resource dpDiskCsiDriverMiFederatedCredentialsRoleAssignment 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, dpDiskCsiDriverMi.id, federatedCredentialsRoleId) + scope: dpDiskCsiDriverMi + properties: { + principalId: serviceManagedIdentity.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: federatedCredentialsRoleId + } +} + +resource dpFileCsiDriverMi 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' = { + name: '${clusterName}-dp-file-csi-driver-${randomSuffix}' + location: resourceGroup().location +} + +resource dpFileCsiDriverMiFederatedCredentialsRoleAssignment 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, dpFileCsiDriverMi.id, federatedCredentialsRoleId) + scope: dpFileCsiDriverMi + properties: { + principalId: serviceManagedIdentity.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: federatedCredentialsRoleId + } +} + +resource dpFileCsiDriverFileStorageOperatorRoleSubnetAssignment 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, dpFileCsiDriverMi.id, fileStorageOperatorRoleId, subnet.id) + scope: subnet + properties: { + principalId: dpFileCsiDriverMi.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: fileStorageOperatorRoleId + } +} + +resource dpFileCsiDriverFileStorageOperatorRoleNsgAssignment 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, dpFileCsiDriverMi.id, fileStorageOperatorRoleId, nsg.id) + scope: nsg + properties: { + principalId: dpFileCsiDriverMi.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: fileStorageOperatorRoleId + } +} + +resource dpImageRegistryMi 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' = { + name: '${clusterName}-dp-image-registry-${randomSuffix}' + location: resourceGroup().location +} + +resource dpImageRegistryMiFederatedCredentialsRoleAssignment 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, dpImageRegistryMi.id, federatedCredentialsRoleId) + scope: dpImageRegistryMi + properties: { + principalId: serviceManagedIdentity.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: federatedCredentialsRoleId + } +} + +// +// S E R V I C E M A N A G E D I D E N T I T Y +// + +resource serviceManagedIdentity 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-31' = { + name: '${clusterName}-service-managed-identity-${randomSuffix}' + location: resourceGroup().location +} + +// Azure Red Hat OpenShift Hosted Control Planes Service Managed Identity +var hcpServiceManagedIdentityRoleId = subscriptionResourceId( + 'Microsoft.Authorization/roleDefinitions', + 'c0ff367d-66d8-445e-917c-583feb0ef0d4' +) + +// grant service managed identity role to the service managed identity over the user provided subnet +resource serviceManagedIdentityRoleAssignmentVnet 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, serviceManagedIdentity.id, hcpServiceManagedIdentityRoleId, vnet.id) + scope: vnet + properties: { + principalId: serviceManagedIdentity.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: hcpServiceManagedIdentityRoleId + } +} + +// grant service managed identity role to the service managed identity over the user provided subnet +resource serviceManagedIdentityRoleAssignmentSubnet 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, serviceManagedIdentity.id, hcpServiceManagedIdentityRoleId, subnet.id) + scope: subnet + properties: { + principalId: serviceManagedIdentity.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: hcpServiceManagedIdentityRoleId + } +} + +// grant service managed identity role to the service managed identity over the user provided NSG +resource serviceManagedIdentityRoleAssignmentNSG 'Microsoft.Authorization/roleAssignments@2022-04-01' = { + name: guid(resourceGroup().id, serviceManagedIdentity.id, hcpServiceManagedIdentityRoleId, nsg.id) + scope: nsg + properties: { + principalId: serviceManagedIdentity.properties.principalId + principalType: 'ServicePrincipal' + roleDefinitionId: hcpServiceManagedIdentityRoleId + } +} + +resource hcp 'Microsoft.RedHatOpenShift/hcpOpenShiftClusters@2024-06-10-preview' = { + name: clusterName + location: resourceGroup().location + properties: { + version: { + id: 'v4.19.0' + channelGroup: 'stable' + } + clusterImageRegistry: { + state: 'Enabled' + } + dns: {} + network: { + networkType: 'OVNKubernetes' + podCidr: '10.128.0.0/14' + serviceCidr: '172.30.0.0/16' + machineCidr: '10.0.0.0/16' + hostPrefix: 23 + } + console: {} + etcd: { + dataEncryption: { + keyManagementMode: 'PlatformManaged' + } + } + api: { + visibility: 'Public' + } + platform: { + managedResourceGroup: managedResourceGroupName + subnetId: subnet.id + outboundType: 'LoadBalancer' + networkSecurityGroupId: nsg.id + operatorsAuthentication: { + userAssignedIdentities: { + controlPlaneOperators: { + 'cluster-api-azure': clusterApiAzureMi.id + 'control-plane': controlPlaneMi.id + 'cloud-controller-manager': cloudControllerManagerMi.id + 'ingress': ingressMi.id + 'disk-csi-driver': diskCsiDriverMi.id + 'file-csi-driver': fileCsiDriverMi.id + 'image-registry': imageRegistryMi.id + 'cloud-network-config': cloudNetworkConfigMi.id + } + dataPlaneOperators: { + 'disk-csi-driver': dpDiskCsiDriverMi.id + 'file-csi-driver': dpFileCsiDriverMi.id + 'image-registry': dpImageRegistryMi.id + } + serviceManagedIdentity: serviceManagedIdentity.id + } + } + // External Auth config + externalAuthentication: { + identityProviders: [ + { + name: 'entra-id' + type: 'MicrosoftEntra' + microsoftEntra: { + clientId: entraClientId + tenantId: entraTenantId + } + } + ] + } + } + identity: { + type: 'UserAssigned' + userAssignedIdentities: { + '${serviceManagedIdentity.id}': {} + '${clusterApiAzureMi.id}': {} + '${controlPlaneMi.id}': {} + '${cloudControllerManagerMi.id}': {} + '${ingressMi.id}': {} + '${diskCsiDriverMi.id}': {} + '${fileCsiDriverMi.id}': {} + '${imageRegistryMi.id}': {} + '${cloudNetworkConfigMi.id}': {} + } + } + } + dependsOn: [ + hcpClusterApiProviderRoleSubnetAssignment + hcpControlPlaneOperatorVnetRoleAssignment + hcpControlPlaneOperatorNsgRoleAssignment + cloudControllerManagerRoleSubnetAssignment + cloudControllerManagerRoleNsgAssignment + ingressOperatorRoleSubnetAssignment + fileStorageOperatorRoleSubnetAssignment + fileStorageOperatorRoleNsgAssignment + networkOperatorRoleSubnetAssignment + networkOperatorRoleVnetAssignment + dpDiskCsiDriverMiFederatedCredentialsRoleAssignment + dpFileCsiDriverMiFederatedCredentialsRoleAssignment + dpImageRegistryMiFederatedCredentialsRoleAssignment + serviceManagedIdentityRoleAssignmentVnet + serviceManagedIdentityRoleAssignmentSubnet + serviceManagedIdentityRoleAssignmentNSG + dpFileCsiDriverFileStorageOperatorRoleSubnetAssignment + dpFileCsiDriverFileStorageOperatorRoleNsgAssignment + serviceManagedIdentityReaderOnControlPlaneMi + serviceManagedIdentityReaderOnCloudControllerManagerMi + serviceManagedIdentityReaderOnIngressMi + serviceManagedIdentityReaderOnDiskCsiDriverMi + serviceManagedIdentityReaderOnFileCsiDriverMi + serviceManagedIdentityReaderOnImageRegistryMi + serviceManagedIdentityReaderOnCloudNetworkMi + serviceManagedIdentityReaderOnClusterApiAzureMi + ] +} diff --git a/test/e2e/test-artifacts/external-auth/external-auth-cluster.bicepparm b/test/e2e/test-artifacts/external-auth/external-auth-cluster.bicepparm new file mode 100644 index 0000000000..d5ceaeb465 --- /dev/null +++ b/test/e2e/test-artifacts/external-auth/external-auth-cluster.bicepparm @@ -0,0 +1,10 @@ +{ + "clusterName": "external-auth", + "managedResourceGroupName": "mc-external-auth-cluster", + "nsgName": "external-auth-nsg", + "vnetName": "external-auth-vnet", + "subnetName": "external-auth-subnet", + "entraClientId": "3bc2c42a-4198-42c1-a052-1a505faf8a90", + "entraTenantId": "fa5d3dd8-b8ec-4407-a55c-ced639f1c8c5" +} + diff --git a/test/e2e/test-artifacts/external-auth/external-auth-cluster.json b/test/e2e/test-artifacts/external-auth/external-auth-cluster.json new file mode 100644 index 0000000000..ed008e86df --- /dev/null +++ b/test/e2e/test-artifacts/external-auth/external-auth-cluster.json @@ -0,0 +1,32 @@ +{ + "kind": "ExternalAuth", + "id": "entra", + "claim": { + "mappings": { + "groups": { + "claim": "groups" + }, + "username": { + "claim": "email" + } + }, + "validation_rules": [ + + ] + }, + "clients": [ + { + "id": "3bc2c42a-4198-42c1-a052-1a505faf8a90", + "component": { + "name": "console", + "namespace": "openshift-console" + } + } + ], + "issuer": { + "url": "https://login.microsoftonline.com/fa5d3dd8-b8ec-4407-a55c-ced639f1c8c5/v2.0", + "audiences": [ + "3bc2c42a-4198-42c1-a052-1a505faf8a90" + ] + } +} diff --git a/test/hack/update-bicep-json.sh b/test/hack/update-bicep-json.sh index 8c94769ea7..317beae417 100755 --- a/test/hack/update-bicep-json.sh +++ b/test/hack/update-bicep-json.sh @@ -52,6 +52,8 @@ convert_bicep_to_json "${project_root}/demo/bicep/customer-infra.bicep" "${OUTPU convert_bicep_to_json "${project_root}/demo/bicep/cluster.bicep" "${OUTPUT_DIR}/standard-cluster-create/cluster.json" convert_bicep_to_json "${project_root}/demo/bicep/nodepool.bicep" "${OUTPUT_DIR}/standard-cluster-create/nodepool.json" +convert_bicep_to_json "${project_root}/test/e2e/test-artifacts/external-auth/external-auth-cluster.bicep" "${OUTPUT_DIR}/image-registry/external-auth-cluster.json" + convert_bicep_to_json "${project_root}/test/e2e/test-artifacts/illegal-install-version/cluster.bicep" "${OUTPUT_DIR}/illegal-install-version/cluster.json" convert_bicep_to_json "${project_root}/test/e2e/test-artifacts/image-registry/disabled-image-registry-cluster.bicep" "${OUTPUT_DIR}/image-registry/disabled-image-registry-cluster.json" diff --git a/test/resourcegroups/external-auth-mtrwxv/deployment-operations-hcp-cluster.yaml b/test/resourcegroups/external-auth-mtrwxv/deployment-operations-hcp-cluster.yaml new file mode 100644 index 0000000000..528f02ff26 --- /dev/null +++ b/test/resourcegroups/external-auth-mtrwxv/deployment-operations-hcp-cluster.yaml @@ -0,0 +1,823 @@ +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/D40E88263CD8BFF7 + operationId: D40E88263CD8BFF7 + properties: + duration: PT2.364583S + provisioningOperation: Create + provisioningState: Failed + request: + content: + identity: + type: UserAssigned + userAssignedIdentities: + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + : {} + location: uksouth + properties: + api: + visibility: Public + console: {} + dns: {} + etcd: + dataEncryption: + keyManagementMode: PlatformManaged + network: + hostPrefix: 23 + machineCidr: 10.0.0.0/16 + networkType: OVNKubernetes + podCidr: 10.128.0.0/14 + serviceCidr: 172.30.0.0/16 + platform: + managedResourceGroup: external-auth-mtrwxv--managed + networkSecurityGroupId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + operatorsAuthentication: + userAssignedIdentities: + controlPlaneOperators: + cloud-controller-manager: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + cloud-network-config: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + cluster-api-azure: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + control-plane: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + disk-csi-driver: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + file-csi-driver: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + image-registry: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + ingress: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + dataPlaneOperators: + disk-csi-driver: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + file-csi-driver: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + image-registry: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + serviceManagedIdentity: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + outboundType: LoadBalancer + subnetId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1 + version: + channelGroup: stable + id: openshift-v4.19.0 + statusCode: BadRequest + statusMessage: + error: + code: InvalidRequestContent + message: Image Registry state '' is not valid, valid values are ['enabled','disabled'] + status: Failed + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.RedHatOpenShift/hcpOpenShiftClusters/external-auth-cluster + resourceName: external-auth-cluster + resourceType: Microsoft.RedHatOpenShift/hcpOpenShiftClusters + timestamp: "2025-08-07T08:55:44.1251725Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/3D6F7B2D9F3FBA6F + operationId: 3D6F7B2D9F3FBA6F + properties: + duration: PT3.9568327S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: efc36040-ae9c-400d-acd5-c69014d35ec8 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/a1f96423-95ce-4224-ab27-4e3dc72facd4 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/7a7e08b1-a4d9-54e4-9d50-622409c099b9 + resourceName: 7a7e08b1-a4d9-54e4-9d50-622409c099b9 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:40.1266331Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/85E2ACDA4F53F344 + operationId: 85E2ACDA4F53F344 + properties: + duration: PT4.5595109S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 4557113e-4c1c-4888-ba74-5f74c557be4f + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/be7a6435-15ae-4171-8f30-4a343eff9e8f + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/5d4c32d6-9973-53b0-b477-72702c03ce7a + resourceName: 5d4c32d6-9973-53b0-b477-72702c03ce7a + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.4927032Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/22B9DBA41197F3B5 + operationId: 22B9DBA41197F3B5 + properties: + duration: PT4.0161741S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 2a8ac3a8-16fe-4aff-b48a-ddc649357905 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/ef318e2a-8334-4a05-9e4a-295a196c6a6e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/d1e79187-5c59-5e31-96f1-871772820694 + resourceName: d1e79187-5c59-5e31-96f1-871772820694 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:40.03604Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/54F429F052919452 + operationId: 54F429F052919452 + properties: + duration: PT4.4326024S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 2a8ac3a8-16fe-4aff-b48a-ddc649357905 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/ef318e2a-8334-4a05-9e4a-295a196c6a6e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/b8ec57da-0ece-5f0c-855c-92b1caf89d96 + resourceName: b8ec57da-0ece-5f0c-855c-92b1caf89d96 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.6039892Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/5815BD21BBC2E90F + operationId: 5815BD21BBC2E90F + properties: + duration: PT4.3314681S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 44a33971-42d1-4879-8d54-db3ead3cfb7a + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/0d7aedc0-15fd-4a67-a412-efad370c947e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/5448d8b3-b615-5c92-b662-86cb5ab59a02 + resourceName: 5448d8b3-b615-5c92-b662-86cb5ab59a02 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.6113691Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/8605470BFAC23FAD + operationId: 8605470BFAC23FAD + properties: + duration: PT4.0083249S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 4557113e-4c1c-4888-ba74-5f74c557be4f + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/be7a6435-15ae-4171-8f30-4a343eff9e8f + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/a4343c1b-20bf-59cc-8153-ef1985edec7b + resourceName: a4343c1b-20bf-59cc-8153-ef1985edec7b + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.9188894Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/865EF13C913910FC + operationId: 865EF13C913910FC + properties: + duration: PT2.4997245S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 2a8ac3a8-16fe-4aff-b48a-ddc649357905 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/0404846f-f523-580c-87b2-b74a7ff17c78 + resourceName: 0404846f-f523-580c-87b2-b74a7ff17c78 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.9743371Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/862812B707CC60F9 + operationId: 862812B707CC60F9 + properties: + duration: PT2.3032632S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: fb8eb1a6-e42a-4583-980c-2ebdc9663987 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/0d7aedc0-15fd-4a67-a412-efad370c947e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/8d3a7505-1492-5988-b9a9-7097d5dc6ff9 + resourceName: 8d3a7505-1492-5988-b9a9-7097d5dc6ff9 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:40.1551734Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/0E14B6A1C16834A0 + operationId: 0E14B6A1C16834A0 + properties: + duration: PT2.4010455S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 2a8ac3a8-16fe-4aff-b48a-ddc649357905 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/b6748098-7550-5be9-ba0e-8c0fe71709dc + resourceName: b6748098-7550-5be9-ba0e-8c0fe71709dc + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.9792681Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/0C28B1E5C213505B + operationId: 0C28B1E5C213505B + properties: + duration: PT2.3999854S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: efc36040-ae9c-400d-acd5-c69014d35ec8 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/a1f96423-95ce-4224-ab27-4e3dc72facd4 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/18d93948-6c2e-5735-9e9f-32ab8ddcd1ee + resourceName: 18d93948-6c2e-5735-9e9f-32ab8ddcd1ee + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.9647006Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/CD1190D73AE7A84F + operationId: CD1190D73AE7A84F + properties: + duration: PT2.448618S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: d15c38e6-9efe-46b7-bf01-908c61b6a789 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/88366f10-ed47-4cc0-9fab-c8a06148393e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/ba6a3956-1cf5-5514-8199-4e8bbff866ec + resourceName: ba6a3956-1cf5-5514-8199-4e8bbff866ec + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.8691944Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/75DA20D971A79B02 + operationId: 75DA20D971A79B02 + properties: + duration: PT2.327848S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: fb8eb1a6-e42a-4583-980c-2ebdc9663987 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/0d7aedc0-15fd-4a67-a412-efad370c947e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/5b133b7e-e511-53f6-8de2-334bbcfebf43 + resourceName: 5b133b7e-e511-53f6-8de2-334bbcfebf43 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.9743371Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/3A609AAA59E5A41E + operationId: 3A609AAA59E5A41E + properties: + duration: PT2.4173648S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 2a8ac3a8-16fe-4aff-b48a-ddc649357905 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/96259168-94b5-5cae-87b8-9bee0ee1b1c8 + resourceName: 96259168-94b5-5cae-87b8-9bee0ee1b1c8 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.8691944Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/9C4B3F67EB478F51 + operationId: 9C4B3F67EB478F51 + properties: + duration: PT2.2749833S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 2a8ac3a8-16fe-4aff-b48a-ddc649357905 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/d88d41d4-766b-504d-8964-5319674be692 + resourceName: d88d41d4-766b-504d-8964-5319674be692 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.9647006Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/57EEC069A4E7AF1D + operationId: 57EEC069A4E7AF1D + properties: + duration: PT2.5734419S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: c5c46efa-69d4-4c17-ad30-5553aff32509 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/fc0c873f-45e9-4d0d-a7d1-585aab30c6ed + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/f1ef7a38-90a6-530d-9fe9-72d100840263 + resourceName: f1ef7a38-90a6-530d-9fe9-72d100840263 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.6037438Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/57D2CB61A4EB9FCF + operationId: 57D2CB61A4EB9FCF + properties: + duration: PT2.557568S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 2a8ac3a8-16fe-4aff-b48a-ddc649357905 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/c0ff367d-66d8-445e-917c-583feb0ef0d4 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/a5d4e9c7-60b6-5ca9-a3eb-463690a01bec + resourceName: a5d4e9c7-60b6-5ca9-a3eb-463690a01bec + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.6039892Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/592873030602D365 + operationId: 592873030602D365 + properties: + duration: PT2.3971426S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 44a33971-42d1-4879-8d54-db3ead3cfb7a + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/0d7aedc0-15fd-4a67-a412-efad370c947e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/1388143b-bfab-5290-87f9-0f57434b565b + resourceName: 1388143b-bfab-5290-87f9-0f57434b565b + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.7487897Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/B81D1BB7924729E5 + operationId: B81D1BB7924729E5 + properties: + duration: PT2.5106917S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 2a8ac3a8-16fe-4aff-b48a-ddc649357905 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/c0ff367d-66d8-445e-917c-583feb0ef0d4 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/996e891b-4d18-5080-a776-cd97099a12f8 + resourceName: 996e891b-4d18-5080-a776-cd97099a12f8 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.6039892Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/3004BE058DD463D5 + operationId: 3004BE058DD463D5 + properties: + duration: PT2.5106917S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 2a8ac3a8-16fe-4aff-b48a-ddc649357905 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/ddae33ee-30d2-58b8-b05d-04fd14036657 + resourceName: ddae33ee-30d2-58b8-b05d-04fd14036657 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.6039892Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/3038B62A8E5FA169 + operationId: 3038B62A8E5FA169 + properties: + duration: PT2.4950737S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 2a8ac3a8-16fe-4aff-b48a-ddc649357905 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/ef318e2a-8334-4a05-9e4a-295a196c6a6e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/c55a39b9-d899-5574-a604-577890cf53ad + resourceName: c55a39b9-d899-5574-a604-577890cf53ad + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.6039892Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/43A2BB3BC1E05BAF + operationId: 43A2BB3BC1E05BAF + properties: + duration: PT2.624618S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: c5c46efa-69d4-4c17-ad30-5553aff32509 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/fc0c873f-45e9-4d0d-a7d1-585aab30c6ed + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/c36914c4-0952-5a8a-9917-6a3dfccf6af3 + resourceName: c36914c4-0952-5a8a-9917-6a3dfccf6af3 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.4275652Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/94DBA5843E6A22E5 + operationId: 94DBA5843E6A22E5 + properties: + duration: PT2.432566S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 2a8ac3a8-16fe-4aff-b48a-ddc649357905 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/563538b6-e5e6-5f6e-acf4-583194f7f9c8 + resourceName: 563538b6-e5e6-5f6e-acf4-583194f7f9c8 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.6039892Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/AE6CEECE2C140F7B + operationId: AE6CEECE2C140F7B + properties: + duration: PT2.4169406S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 2a8ac3a8-16fe-4aff-b48a-ddc649357905 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/d39fd60f-3388-58d6-9fb8-f2e41b07a2f3 + resourceName: d39fd60f-3388-58d6-9fb8-f2e41b07a2f3 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.6039892Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/E8B822CE530CCA85 + operationId: E8B822CE530CCA85 + properties: + duration: PT2.3700673S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 2a8ac3a8-16fe-4aff-b48a-ddc649357905 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/c0ff367d-66d8-445e-917c-583feb0ef0d4 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/391ac112-1d0a-52f5-86df-17428279416a + resourceName: 391ac112-1d0a-52f5-86df-17428279416a + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.6039892Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/D2CEAF7400DE6EE7 + operationId: D2CEAF7400DE6EE7 + properties: + duration: PT1.9999224S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: e5911163-605f-4721-be01-c793ef28eb77 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/0336e1d3-7a87-462b-b6db-342b63f7802c + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/2ba2ea77-438d-5b8d-8ccc-cd035a7e01be + resourceName: 2ba2ea77-438d-5b8d-8ccc-cd035a7e01be + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.4741236Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/A159EF8225B4AD5D + operationId: A159EF8225B4AD5D + properties: + duration: PT1.5575506S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 2a8ac3a8-16fe-4aff-b48a-ddc649357905 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/6d296ac9-fc2d-562d-939c-bceac2992639 + resourceName: 6d296ac9-fc2d-562d-939c-bceac2992639 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:55:39.6039892Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/F71860C573F0C739 + operationId: F71860C573F0C739 + properties: + duration: PT0.0934332S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:55:39.9743371Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/B104ED41D916256D + operationId: B104ED41D916256D + properties: + duration: PT0.1030697S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:55:39.9647006Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/1611B3DA606B8BD1 + operationId: 1611B3DA606B8BD1 + properties: + duration: PT2.053295S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:55:37.936356Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/1B9ADE73830EB530 + operationId: 1B9ADE73830EB530 + properties: + duration: PT0.1048281S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:55:39.8691944Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/CD9BDB87323702A8 + operationId: CD9BDB87323702A8 + properties: + duration: PT1.9907881S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:55:37.936356Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/1CE1E9ED51D7FF99 + operationId: 1CE1E9ED51D7FF99 + properties: + duration: PT1.9907881S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:55:37.936356Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/8E1E8A5E2C39E6DE + operationId: 8E1E8A5E2C39E6DE + properties: + duration: PT1.9751631S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:55:37.936356Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/E9D463287A7D6869 + operationId: E9D463287A7D6869 + properties: + duration: PT0.3875666S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:55:39.4927032Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/7341AF3D3A3F0EF0 + operationId: 7341AF3D3A3F0EF0 + properties: + duration: PT1.8814161S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:55:37.936356Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/192563EA38B59796 + operationId: 192563EA38B59796 + properties: + duration: PT0.0970233S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:55:39.6113691Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/052D8F610E266DA5 + operationId: 052D8F610E266DA5 + properties: + duration: PT0.0936401S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:55:39.4741236Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/3F2434E7EB1D4D30 + operationId: 3F2434E7EB1D4D30 + properties: + duration: PT0.1401985S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:55:39.4275652Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/CD539F7E5F12BEF4 + operationId: CD539F7E5F12BEF4 + properties: + duration: PT1.6157853S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:55:37.936356Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/4BFE4EA323B06EF3 + operationId: 4BFE4EA323B06EF3 + properties: + duration: PT1.6157853S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:55:37.936356Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/A548607A4F3F95D2 + operationId: A548607A4F3F95D2 + properties: + duration: PT1.5054016S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:55:37.936356Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/45688A5434B23D00 + operationId: 45688A5434B23D00 + properties: + duration: PT1.4897705S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:55:37.936356Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/C6A77999C2238D7B + operationId: C6A77999C2238D7B + properties: + duration: PT1.4741453S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:55:37.936356Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/F8CC5C1686A9C8C1 + operationId: F8CC5C1686A9C8C1 + properties: + duration: PT1.4585257S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:55:37.936356Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/EBBCD635C672AD36 + operationId: EBBCD635C672AD36 + properties: + duration: PT1.4428925S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:55:37.936356Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster/operations/DBF2A389C018E5A5 + operationId: DBF2A389C018E5A5 + properties: + duration: PT1.4428925S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:55:37.936356Z" diff --git a/test/resourcegroups/external-auth-mtrwxv/deployment-operations-infra.yaml b/test/resourcegroups/external-auth-mtrwxv/deployment-operations-infra.yaml new file mode 100644 index 0000000000..a791a2aac1 --- /dev/null +++ b/test/resourcegroups/external-auth-mtrwxv/deployment-operations-infra.yaml @@ -0,0 +1,64 @@ +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/infra/operations/22C002E58CF150AC + operationId: 22C002E58CF150AC + properties: + duration: PT5.6252064S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name + resourceName: customer-vnet-name + resourceType: Microsoft.Network/virtualNetworks + timestamp: "2025-08-07T08:55:23.2170724Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/infra/operations/4DECAC7AA4DEB7AC + operationId: 4DECAC7AA4DEB7AC + properties: + duration: PT5.5158282S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + properties: + addressSpace: + addressPrefixes: + - 10.0.0.0/16 + subnets: + - name: customer-vnet-subnet1 + properties: + addressPrefix: 10.0.0.0/24 + networkSecurityGroup: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + tags: + persist: "true" + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name + resourceName: customer-vnet-name + resourceType: Microsoft.Network/virtualNetworks + timestamp: "2025-08-07T08:55:23.2170724Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/infra/operations/9939D0047AE6BE4B + operationId: 9939D0047AE6BE4B + properties: + duration: PT2.1694109S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + tags: + persist: "true" + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + resourceName: customer-nsg-name + resourceType: Microsoft.Network/networkSecurityGroups + timestamp: "2025-08-07T08:55:23.2170724Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/infra/operations/08584470499634405126 + operationId: "08584470499634405126" + properties: + duration: PT5.7502091S + provisioningOperation: EvaluateDeploymentOutput + provisioningState: Succeeded + statusCode: OK + timestamp: "2025-08-07T08:55:23.2170724Z" diff --git a/test/resourcegroups/external-auth-mtrwxv/deployments.yaml b/test/resourcegroups/external-auth-mtrwxv/deployments.yaml new file mode 100644 index 0000000000..74bf8ef106 --- /dev/null +++ b/test/resourcegroups/external-auth-mtrwxv/deployments.yaml @@ -0,0 +1,513 @@ +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/hcp-cluster + name: hcp-cluster + properties: + correlationId: 34ffd394-1568-4a06-820a-5b3be7e4f522 + debugSetting: + detailLevel: RequestContent + dependencies: + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/ba6a3956-1cf5-5514-8199-4e8bbff866ec + resourceName: ba6a3956-1cf5-5514-8199-4e8bbff866ec + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/96259168-94b5-5cae-87b8-9bee0ee1b1c8 + resourceName: 96259168-94b5-5cae-87b8-9bee0ee1b1c8 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/f1ef7a38-90a6-530d-9fe9-72d100840263 + resourceName: f1ef7a38-90a6-530d-9fe9-72d100840263 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/c36914c4-0952-5a8a-9917-6a3dfccf6af3 + resourceName: c36914c4-0952-5a8a-9917-6a3dfccf6af3 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/d39fd60f-3388-58d6-9fb8-f2e41b07a2f3 + resourceName: d39fd60f-3388-58d6-9fb8-f2e41b07a2f3 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/18d93948-6c2e-5735-9e9f-32ab8ddcd1ee + resourceName: 18d93948-6c2e-5735-9e9f-32ab8ddcd1ee + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/7a7e08b1-a4d9-54e4-9d50-622409c099b9 + resourceName: 7a7e08b1-a4d9-54e4-9d50-622409c099b9 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/d88d41d4-766b-504d-8964-5319674be692 + resourceName: d88d41d4-766b-504d-8964-5319674be692 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/2ba2ea77-438d-5b8d-8ccc-cd035a7e01be + resourceName: 2ba2ea77-438d-5b8d-8ccc-cd035a7e01be + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/6d296ac9-fc2d-562d-939c-bceac2992639 + resourceName: 6d296ac9-fc2d-562d-939c-bceac2992639 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/ddae33ee-30d2-58b8-b05d-04fd14036657 + resourceName: ddae33ee-30d2-58b8-b05d-04fd14036657 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/8d3a7505-1492-5988-b9a9-7097d5dc6ff9 + resourceName: 8d3a7505-1492-5988-b9a9-7097d5dc6ff9 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/5b133b7e-e511-53f6-8de2-334bbcfebf43 + resourceName: 5b133b7e-e511-53f6-8de2-334bbcfebf43 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/0404846f-f523-580c-87b2-b74a7ff17c78 + resourceName: 0404846f-f523-580c-87b2-b74a7ff17c78 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/b6748098-7550-5be9-ba0e-8c0fe71709dc + resourceName: b6748098-7550-5be9-ba0e-8c0fe71709dc + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/a4343c1b-20bf-59cc-8153-ef1985edec7b + resourceName: a4343c1b-20bf-59cc-8153-ef1985edec7b + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/5d4c32d6-9973-53b0-b477-72702c03ce7a + resourceName: 5d4c32d6-9973-53b0-b477-72702c03ce7a + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/563538b6-e5e6-5f6e-acf4-583194f7f9c8 + resourceName: 563538b6-e5e6-5f6e-acf4-583194f7f9c8 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/c55a39b9-d899-5574-a604-577890cf53ad + resourceName: c55a39b9-d899-5574-a604-577890cf53ad + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/b8ec57da-0ece-5f0c-855c-92b1caf89d96 + resourceName: b8ec57da-0ece-5f0c-855c-92b1caf89d96 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/5448d8b3-b615-5c92-b662-86cb5ab59a02 + resourceName: 5448d8b3-b615-5c92-b662-86cb5ab59a02 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/1388143b-bfab-5290-87f9-0f57434b565b + resourceName: 1388143b-bfab-5290-87f9-0f57434b565b + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/d1e79187-5c59-5e31-96f1-871772820694 + resourceName: d1e79187-5c59-5e31-96f1-871772820694 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/391ac112-1d0a-52f5-86df-17428279416a + resourceName: 391ac112-1d0a-52f5-86df-17428279416a + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/a5d4e9c7-60b6-5ca9-a3eb-463690a01bec + resourceName: a5d4e9c7-60b6-5ca9-a3eb-463690a01bec + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/996e891b-4d18-5080-a776-cd97099a12f8 + resourceName: 996e891b-4d18-5080-a776-cd97099a12f8 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/7a7e08b1-a4d9-54e4-9d50-622409c099b9 + resourceName: 7a7e08b1-a4d9-54e4-9d50-622409c099b9 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/18d93948-6c2e-5735-9e9f-32ab8ddcd1ee + resourceName: 18d93948-6c2e-5735-9e9f-32ab8ddcd1ee + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/c55a39b9-d899-5574-a604-577890cf53ad + resourceName: c55a39b9-d899-5574-a604-577890cf53ad + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/1388143b-bfab-5290-87f9-0f57434b565b + resourceName: 1388143b-bfab-5290-87f9-0f57434b565b + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/5448d8b3-b615-5c92-b662-86cb5ab59a02 + resourceName: 5448d8b3-b615-5c92-b662-86cb5ab59a02 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/b8ec57da-0ece-5f0c-855c-92b1caf89d96 + resourceName: b8ec57da-0ece-5f0c-855c-92b1caf89d96 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/d1e79187-5c59-5e31-96f1-871772820694 + resourceName: d1e79187-5c59-5e31-96f1-871772820694 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/5b133b7e-e511-53f6-8de2-334bbcfebf43 + resourceName: 5b133b7e-e511-53f6-8de2-334bbcfebf43 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/8d3a7505-1492-5988-b9a9-7097d5dc6ff9 + resourceName: 8d3a7505-1492-5988-b9a9-7097d5dc6ff9 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/ba6a3956-1cf5-5514-8199-4e8bbff866ec + resourceName: ba6a3956-1cf5-5514-8199-4e8bbff866ec + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/c36914c4-0952-5a8a-9917-6a3dfccf6af3 + resourceName: c36914c4-0952-5a8a-9917-6a3dfccf6af3 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/f1ef7a38-90a6-530d-9fe9-72d100840263 + resourceName: f1ef7a38-90a6-530d-9fe9-72d100840263 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/2ba2ea77-438d-5b8d-8ccc-cd035a7e01be + resourceName: 2ba2ea77-438d-5b8d-8ccc-cd035a7e01be + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/a4343c1b-20bf-59cc-8153-ef1985edec7b + resourceName: a4343c1b-20bf-59cc-8153-ef1985edec7b + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/5d4c32d6-9973-53b0-b477-72702c03ce7a + resourceName: 5d4c32d6-9973-53b0-b477-72702c03ce7a + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/d88d41d4-766b-504d-8964-5319674be692 + resourceName: d88d41d4-766b-504d-8964-5319674be692 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/563538b6-e5e6-5f6e-acf4-583194f7f9c8 + resourceName: 563538b6-e5e6-5f6e-acf4-583194f7f9c8 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/96259168-94b5-5cae-87b8-9bee0ee1b1c8 + resourceName: 96259168-94b5-5cae-87b8-9bee0ee1b1c8 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/d39fd60f-3388-58d6-9fb8-f2e41b07a2f3 + resourceName: d39fd60f-3388-58d6-9fb8-f2e41b07a2f3 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/ddae33ee-30d2-58b8-b05d-04fd14036657 + resourceName: ddae33ee-30d2-58b8-b05d-04fd14036657 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/0404846f-f523-580c-87b2-b74a7ff17c78 + resourceName: 0404846f-f523-580c-87b2-b74a7ff17c78 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/b6748098-7550-5be9-ba0e-8c0fe71709dc + resourceName: b6748098-7550-5be9-ba0e-8c0fe71709dc + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/6d296ac9-fc2d-562d-939c-bceac2992639 + resourceName: 6d296ac9-fc2d-562d-939c-bceac2992639 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/996e891b-4d18-5080-a776-cd97099a12f8 + resourceName: 996e891b-4d18-5080-a776-cd97099a12f8 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/a5d4e9c7-60b6-5ca9-a3eb-463690a01bec + resourceName: a5d4e9c7-60b6-5ca9-a3eb-463690a01bec + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/391ac112-1d0a-52f5-86df-17428279416a + resourceName: 391ac112-1d0a-52f5-86df-17428279416a + resourceType: Microsoft.Authorization/roleAssignments + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.RedHatOpenShift/hcpOpenShiftClusters/external-auth-cluster + resourceName: external-auth-cluster + resourceType: Microsoft.RedHatOpenShift/hcpOpenShiftClusters + duration: PT10.5757342S + error: + code: DeploymentFailed + details: + - code: InvalidRequestContent + message: Image Registry state '' is not valid, valid values are ['enabled','disabled'] + message: At least one resource deployment operation failed. Please list deployment + operations for details. Please see https://aka.ms/arm-deployment-operations + for usage details. + mode: Incremental + parameters: + clusterName: + type: String + value: external-auth-cluster + managedResourceGroupName: + type: String + value: external-auth-mtrwxv--managed + nsgName: + type: String + value: customer-nsg-name + subnetName: + type: String + value: customer-vnet-subnet1 + vnetName: + type: String + value: customer-vnet-name + providers: + - namespace: Microsoft.ManagedIdentity + resourceTypes: + - locations: + - uksouth + resourceType: userAssignedIdentities + - namespace: Microsoft.Authorization + resourceTypes: + - locations: + - null + resourceType: roleAssignments + - namespace: Microsoft.RedHatOpenShift + resourceTypes: + - locations: + - uksouth + resourceType: hcpOpenShiftClusters + provisioningState: Failed + templateHash: "7176892101941509152" + timestamp: "2025-08-07T08:55:46.6772591Z" + type: Microsoft.Resources/deployments +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Resources/deployments/infra + name: infra + properties: + correlationId: 80f18498-064b-4fe4-a262-694cf14a8dce + debugSetting: + detailLevel: RequestContent + dependencies: + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + resourceName: customer-nsg-name + resourceType: Microsoft.Network/networkSecurityGroups + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name + resourceName: customer-vnet-name + resourceType: Microsoft.Network/virtualNetworks + duration: PT6.952421S + mode: Incremental + outputResources: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name + outputs: + networkSecurityGroupId: + type: String + value: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + subnetId: + type: String + value: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-mtrwxv/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1 + parameters: + customerNsgName: + type: String + value: customer-nsg-name + customerVnetName: + type: String + value: customer-vnet-name + customerVnetSubnetName: + type: String + value: customer-vnet-subnet1 + providers: + - namespace: Microsoft.Network + resourceTypes: + - locations: + - uksouth + resourceType: networkSecurityGroups + - locations: + - uksouth + resourceType: virtualNetworks + provisioningState: Succeeded + templateHash: "5901671209430640079" + timestamp: "2025-08-07T08:55:28.9829168Z" + type: Microsoft.Resources/deployments diff --git a/test/resourcegroups/external-auth-pvnl7c/deployment-operations-hcp-cluster.yaml b/test/resourcegroups/external-auth-pvnl7c/deployment-operations-hcp-cluster.yaml new file mode 100644 index 0000000000..78fb4bc01f --- /dev/null +++ b/test/resourcegroups/external-auth-pvnl7c/deployment-operations-hcp-cluster.yaml @@ -0,0 +1,823 @@ +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/330AA38ED8D398D7 + operationId: 330AA38ED8D398D7 + properties: + duration: PT0.7372996S + provisioningOperation: Create + provisioningState: Failed + request: + content: + identity: + type: UserAssigned + userAssignedIdentities: + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + : {} + location: uksouth + properties: + api: + visibility: Public + console: {} + dns: {} + etcd: + dataEncryption: + keyManagementMode: PlatformManaged + network: + hostPrefix: 23 + machineCidr: 10.0.0.0/16 + networkType: OVNKubernetes + podCidr: 10.128.0.0/14 + serviceCidr: 172.30.0.0/16 + platform: + managedResourceGroup: external-auth-pvnl7c--managed + networkSecurityGroupId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + operatorsAuthentication: + userAssignedIdentities: + controlPlaneOperators: + cloud-controller-manager: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + cloud-network-config: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + cluster-api-azure: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + control-plane: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + disk-csi-driver: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + file-csi-driver: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + image-registry: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + ingress: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + dataPlaneOperators: + disk-csi-driver: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + file-csi-driver: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + image-registry: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + serviceManagedIdentity: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + outboundType: LoadBalancer + subnetId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1 + version: + channelGroup: stable + id: openshift-v4.19.0 + statusCode: BadRequest + statusMessage: + error: + code: InvalidRequestContent + message: Image Registry state '' is not valid, valid values are ['enabled','disabled'] + status: Failed + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.RedHatOpenShift/hcpOpenShiftClusters/external-auth-cluster + resourceName: external-auth-cluster + resourceType: Microsoft.RedHatOpenShift/hcpOpenShiftClusters + timestamp: "2025-08-07T08:17:15.9107355Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/5B92315A11059346 + operationId: 5B92315A11059346 + properties: + duration: PT6.5982197S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 3e487fb0-5543-42b2-8616-3cf389df43d1 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/fc0c873f-45e9-4d0d-a7d1-585aab30c6ed + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/9cf648a0-0391-573e-a010-581bcf0d249a + resourceName: 9cf648a0-0391-573e-a010-581bcf0d249a + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:09.1748161Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/A93C9A9FB8F4C970 + operationId: A93C9A9FB8F4C970 + properties: + duration: PT6.3908837S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 3e487fb0-5543-42b2-8616-3cf389df43d1 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/fc0c873f-45e9-4d0d-a7d1-585aab30c6ed + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/cd1256ec-e374-543e-97ec-4275bc9e0bf9 + resourceName: cd1256ec-e374-543e-97ec-4275bc9e0bf9 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:09.3821521Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/4B2D433EC365679D + operationId: 4B2D433EC365679D + properties: + duration: PT6.8942135S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 98006fe0-6d00-4c6e-8e79-6f0710d987a5 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/6015adb6-3f7b-52a2-a852-316ebd66fed8 + resourceName: 6015adb6-3f7b-52a2-a852-316ebd66fed8 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:08.785078Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/99A9992A2CEFE472 + operationId: 99A9992A2CEFE472 + properties: + duration: PT6.6568191S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 98006fe0-6d00-4c6e-8e79-6f0710d987a5 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/1beb5864-9379-5879-9097-fbd120420881 + resourceName: 1beb5864-9379-5879-9097-fbd120420881 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:09.0224724Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/AC7C6FD8C91C6C5E + operationId: AC7C6FD8C91C6C5E + properties: + duration: PT6.8942135S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 98006fe0-6d00-4c6e-8e79-6f0710d987a5 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/ef318e2a-8334-4a05-9e4a-295a196c6a6e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/f11a6cae-94dd-5cc3-a8fd-499651fa3159 + resourceName: f11a6cae-94dd-5cc3-a8fd-499651fa3159 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:08.785078Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/957ABD5A1681EC4F + operationId: 957ABD5A1681EC4F + properties: + duration: PT6.9294881S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: e2b04918-2ed3-40ed-9a64-2d276380fe82 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/a1f96423-95ce-4224-ab27-4e3dc72facd4 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/5520314f-e9ba-5616-9b9e-5dbe76cbfd7e + resourceName: 5520314f-e9ba-5616-9b9e-5dbe76cbfd7e + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:08.7498034Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/D92D2400BCBAD045 + operationId: D92D2400BCBAD045 + properties: + duration: PT6.0750924S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 26ca1880-03df-4498-8cba-09894b513760 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/0d7aedc0-15fd-4a67-a412-efad370c947e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/fdbce54c-3be6-5933-a2c4-f5c215e714d0 + resourceName: fdbce54c-3be6-5933-a2c4-f5c215e714d0 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:09.4635693Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/DD2FDE62BDFF6635 + operationId: DD2FDE62BDFF6635 + properties: + duration: PT2.4379529S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 9ee68fe2-1b37-4e5d-bfab-229ae36c78af + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/0336e1d3-7a87-462b-b6db-342b63f7802c + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/b985672d-2c2e-5d70-9a95-b424133a22a5 + resourceName: b985672d-2c2e-5d70-9a95-b424133a22a5 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:09.3975776Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/FB1FACD927134F33 + operationId: FB1FACD927134F33 + properties: + duration: PT2.428446S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 98006fe0-6d00-4c6e-8e79-6f0710d987a5 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/384d8781-31e0-5a65-8fe4-fe35b84a25b8 + resourceName: 384d8781-31e0-5a65-8fe4-fe35b84a25b8 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:09.4070845Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/BF0E0565602E21D4 + operationId: BF0E0565602E21D4 + properties: + duration: PT2.5499314S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 26ca1880-03df-4498-8cba-09894b513760 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/0d7aedc0-15fd-4a67-a412-efad370c947e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/63f2bd80-d380-5fca-84b5-5ed262f1692c + resourceName: 63f2bd80-d380-5fca-84b5-5ed262f1692c + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:09.2387221Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/11C17E8874BE0EE3 + operationId: 11C17E8874BE0EE3 + properties: + duration: PT2.3754514S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 98006fe0-6d00-4c6e-8e79-6f0710d987a5 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/63b63d06-47af-585d-a380-b19776b282f9 + resourceName: 63b63d06-47af-585d-a380-b19776b282f9 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:09.3975776Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/CFEB9DA41BA3142A + operationId: CFEB9DA41BA3142A + properties: + duration: PT2.4561818S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 98006fe0-6d00-4c6e-8e79-6f0710d987a5 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/e7f55306-7787-55c8-8e57-e14ef96c7a3a + resourceName: e7f55306-7787-55c8-8e57-e14ef96c7a3a + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:09.2387221Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/AA53B003AD3E0BF9 + operationId: AA53B003AD3E0BF9 + properties: + duration: PT2.5044631S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 98006fe0-6d00-4c6e-8e79-6f0710d987a5 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/c80cd9c5-4a30-5fc4-937e-44687c0854e3 + resourceName: c80cd9c5-4a30-5fc4-937e-44687c0854e3 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:09.1748161Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/0AA88D90B20CA985 + operationId: 0AA88D90B20CA985 + properties: + duration: PT2.8703516S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: a53f484a-720b-44f6-bb4d-36f241a6d53d + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/0d7aedc0-15fd-4a67-a412-efad370c947e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/bd38158d-d35c-5e4d-b533-dea8671e8930 + resourceName: bd38158d-d35c-5e4d-b533-dea8671e8930 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:08.699551Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/5042BC86314C62F9 + operationId: 5042BC86314C62F9 + properties: + duration: PT2.4726569S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: a53f484a-720b-44f6-bb4d-36f241a6d53d + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/0d7aedc0-15fd-4a67-a412-efad370c947e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/0ad97955-d181-503a-ae6a-09bb7bfc5e1d + resourceName: 0ad97955-d181-503a-ae6a-09bb7bfc5e1d + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:09.065996Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/0271246CAFEC8BD0 + operationId: 0271246CAFEC8BD0 + properties: + duration: PT2.7223253S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 98006fe0-6d00-4c6e-8e79-6f0710d987a5 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/c0ff367d-66d8-445e-917c-583feb0ef0d4 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/90fda8f2-4936-5f65-9b35-d06a1f958bcc + resourceName: 90fda8f2-4936-5f65-9b35-d06a1f958bcc + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:08.785078Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/4717BE10C7938389 + operationId: 4717BE10C7938389 + properties: + duration: PT2.6754498S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 98006fe0-6d00-4c6e-8e79-6f0710d987a5 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/ef318e2a-8334-4a05-9e4a-295a196c6a6e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/0382f693-e0a8-55e9-a34a-7a80b0ba01ae + resourceName: 0382f693-e0a8-55e9-a34a-7a80b0ba01ae + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:08.785078Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/E5C830FD882C3E82 + operationId: E5C830FD882C3E82 + properties: + duration: PT2.6598265S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 98006fe0-6d00-4c6e-8e79-6f0710d987a5 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/b03c4c73-dfde-5674-97e8-a5003839cb6d + resourceName: b03c4c73-dfde-5674-97e8-a5003839cb6d + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:08.785078Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/0B051008189BAF45 + operationId: 0B051008189BAF45 + properties: + duration: PT2.9101937S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 374d6055-480f-40ff-8a28-47a3a1c3600a + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/88366f10-ed47-4cc0-9fab-c8a06148393e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/067d0c10-229a-57c3-bbec-80505ef9769f + resourceName: 067d0c10-229a-57c3-bbec-80505ef9769f + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:08.519083Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/F3DC130C9F3B186D + operationId: F3DC130C9F3B186D + properties: + duration: PT2.6758483S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 1d007d7d-f70e-4f15-bf22-67b08c98c58f + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/be7a6435-15ae-4171-8f30-4a343eff9e8f + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/85310fda-ce1d-58d0-85b8-90edb45119d4 + resourceName: 85310fda-ce1d-58d0-85b8-90edb45119d4 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:08.7534284Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/D88FBE0974A4CF39 + operationId: D88FBE0974A4CF39 + properties: + duration: PT2.2673104S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 98006fe0-6d00-4c6e-8e79-6f0710d987a5 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/ef318e2a-8334-4a05-9e4a-295a196c6a6e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/f89f136e-e6ca-5bc6-abbd-f3b9d57b0eb0 + resourceName: f89f136e-e6ca-5bc6-abbd-f3b9d57b0eb0 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:09.1619663Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/0D9F78C22F71567B + operationId: 0D9F78C22F71567B + properties: + duration: PT2.8894079S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 1d007d7d-f70e-4f15-bf22-67b08c98c58f + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/be7a6435-15ae-4171-8f30-4a343eff9e8f + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/b7383bc2-55e9-586c-885e-02bcdf0a896e + resourceName: b7383bc2-55e9-586c-885e-02bcdf0a896e + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:08.5242461Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/C380DBDFCA0A585C + operationId: C380DBDFCA0A585C + properties: + duration: PT2.628576S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 98006fe0-6d00-4c6e-8e79-6f0710d987a5 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/c0ff367d-66d8-445e-917c-583feb0ef0d4 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/7d4655ea-ab1f-5aa5-a3cd-0e2aa69b2b24 + resourceName: 7d4655ea-ab1f-5aa5-a3cd-0e2aa69b2b24 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:08.785078Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/19DBC3A0F65BDCF7 + operationId: 19DBC3A0F65BDCF7 + properties: + duration: PT2.597331S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 98006fe0-6d00-4c6e-8e79-6f0710d987a5 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/c0ff367d-66d8-445e-917c-583feb0ef0d4 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/b44d90b2-6ca7-57e2-ab03-a8a61a59fb3f + resourceName: b44d90b2-6ca7-57e2-ab03-a8a61a59fb3f + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:08.785078Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/31E9F0FC573ECF52 + operationId: 31E9F0FC573ECF52 + properties: + duration: PT2.0660747S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 98006fe0-6d00-4c6e-8e79-6f0710d987a5 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/3f6cb634-6e63-5a44-b838-6096b56fb594 + resourceName: 3f6cb634-6e63-5a44-b838-6096b56fb594 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:08.785078Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/65B36E65A16157B8 + operationId: 65B36E65A16157B8 + properties: + duration: PT1.7474961S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: e2b04918-2ed3-40ed-9a64-2d276380fe82 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/a1f96423-95ce-4224-ab27-4e3dc72facd4 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/83bc49a5-a3a0-5506-976e-48db02f6b0f4 + resourceName: 83bc49a5-a3a0-5506-976e-48db02f6b0f4 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:17:08.541157Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/FACEDCCE74D78C3C + operationId: FACEDCCE74D78C3C + properties: + duration: PT0.1254484S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:17:09.3975776Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/044CC0855D1F40FC + operationId: 044CC0855D1F40FC + properties: + duration: PT0.1593041S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:17:09.2387221Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/748709DC6CA29F3C + operationId: 748709DC6CA29F3C + properties: + duration: PT2.5427355S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:17:06.7927927Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/AC92BC63CB7278B6 + operationId: AC92BC63CB7278B6 + properties: + duration: PT2.5271102S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:17:06.7927927Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/DE3CAFA0DFE70A83 + operationId: DE3CAFA0DFE70A83 + properties: + duration: PT0.1294608S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:17:09.1748161Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/9F90193B543E2CF0 + operationId: 9F90193B543E2CF0 + properties: + duration: PT2.3708581S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:17:06.7927927Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/653CCC1ABA335D2E + operationId: 653CCC1ABA335D2E + properties: + duration: PT2.3083648S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:17:06.7927927Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/6731332F5CB9BEE2 + operationId: 6731332F5CB9BEE2 + properties: + duration: PT2.2771181S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:17:06.7927927Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/605750A3F39D57FE + operationId: 605750A3F39D57FE + properties: + duration: PT2.1521095S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:17:06.7927927Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/D2B93D5BA23E9E33 + operationId: D2B93D5BA23E9E33 + properties: + duration: PT0.1672253S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:17:08.699551Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/4A35089FF00EF609 + operationId: 4A35089FF00EF609 + properties: + duration: PT1.8864823S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:17:06.7927927Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/BDB7F20F4B93AAA7 + operationId: BDB7F20F4B93AAA7 + properties: + duration: PT0.1550289S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:17:08.5242461Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/09972E4AD6B9EA87 + operationId: 09972E4AD6B9EA87 + properties: + duration: PT0.1225041S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:17:08.541157Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/4B81759E87C73AEA + operationId: 4B81759E87C73AEA + properties: + duration: PT0.1289435S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:17:08.519083Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/47CB76771A002673 + operationId: 47CB76771A002673 + properties: + duration: PT1.8396128S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:17:06.7927927Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/E00C5FA1559A82B9 + operationId: E00C5FA1559A82B9 + properties: + duration: PT1.6677424S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:17:06.7927927Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/414FF5C2EF242E6C + operationId: 414FF5C2EF242E6C + properties: + duration: PT1.6677424S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:17:06.7927927Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/E19DE7127CBFE540 + operationId: E19DE7127CBFE540 + properties: + duration: PT1.6521064S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:17:06.7927927Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/F5967C7B992B1DB6 + operationId: F5967C7B992B1DB6 + properties: + duration: PT1.6521064S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:17:06.7927927Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster/operations/027E612C0FDA182A + operationId: 027E612C0FDA182A + properties: + duration: PT1.6521064S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:17:06.7927927Z" diff --git a/test/resourcegroups/external-auth-pvnl7c/deployment-operations-infra.yaml b/test/resourcegroups/external-auth-pvnl7c/deployment-operations-infra.yaml new file mode 100644 index 0000000000..4bd599c5a5 --- /dev/null +++ b/test/resourcegroups/external-auth-pvnl7c/deployment-operations-infra.yaml @@ -0,0 +1,64 @@ +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/infra/operations/E20A93B512F5286A + operationId: E20A93B512F5286A + properties: + duration: PT5.1450759S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name + resourceName: customer-vnet-name + resourceType: Microsoft.Network/virtualNetworks + timestamp: "2025-08-07T08:16:52.9810723Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/infra/operations/303832C3DBCD391E + operationId: 303832C3DBCD391E + properties: + duration: PT4.9732126S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + properties: + addressSpace: + addressPrefixes: + - 10.0.0.0/16 + subnets: + - name: customer-vnet-subnet1 + properties: + addressPrefix: 10.0.0.0/24 + networkSecurityGroup: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + tags: + persist: "true" + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name + resourceName: customer-vnet-name + resourceType: Microsoft.Network/virtualNetworks + timestamp: "2025-08-07T08:16:52.9810723Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/infra/operations/9DA09BAA3E9C6FFF + operationId: 9DA09BAA3E9C6FFF + properties: + duration: PT1.3151838S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + tags: + persist: "true" + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + resourceName: customer-nsg-name + resourceType: Microsoft.Network/networkSecurityGroups + timestamp: "2025-08-07T08:16:52.9810723Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/infra/operations/08584470522734511462 + operationId: "08584470522734511462" + properties: + duration: PT5.3169632S + provisioningOperation: EvaluateDeploymentOutput + provisioningState: Succeeded + statusCode: OK + timestamp: "2025-08-07T08:16:52.9810723Z" diff --git a/test/resourcegroups/external-auth-pvnl7c/deployments.yaml b/test/resourcegroups/external-auth-pvnl7c/deployments.yaml new file mode 100644 index 0000000000..56c0a20b69 --- /dev/null +++ b/test/resourcegroups/external-auth-pvnl7c/deployments.yaml @@ -0,0 +1,513 @@ +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/hcp-cluster + name: hcp-cluster + properties: + correlationId: b5c47f10-fd75-4d35-8581-0e06c1fd84b5 + debugSetting: + detailLevel: RequestContent + dependencies: + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/067d0c10-229a-57c3-bbec-80505ef9769f + resourceName: 067d0c10-229a-57c3-bbec-80505ef9769f + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/b03c4c73-dfde-5674-97e8-a5003839cb6d + resourceName: b03c4c73-dfde-5674-97e8-a5003839cb6d + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/9cf648a0-0391-573e-a010-581bcf0d249a + resourceName: 9cf648a0-0391-573e-a010-581bcf0d249a + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/cd1256ec-e374-543e-97ec-4275bc9e0bf9 + resourceName: cd1256ec-e374-543e-97ec-4275bc9e0bf9 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/c80cd9c5-4a30-5fc4-937e-44687c0854e3 + resourceName: c80cd9c5-4a30-5fc4-937e-44687c0854e3 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/83bc49a5-a3a0-5506-976e-48db02f6b0f4 + resourceName: 83bc49a5-a3a0-5506-976e-48db02f6b0f4 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/5520314f-e9ba-5616-9b9e-5dbe76cbfd7e + resourceName: 5520314f-e9ba-5616-9b9e-5dbe76cbfd7e + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/3f6cb634-6e63-5a44-b838-6096b56fb594 + resourceName: 3f6cb634-6e63-5a44-b838-6096b56fb594 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/b985672d-2c2e-5d70-9a95-b424133a22a5 + resourceName: b985672d-2c2e-5d70-9a95-b424133a22a5 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/63b63d06-47af-585d-a380-b19776b282f9 + resourceName: 63b63d06-47af-585d-a380-b19776b282f9 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/384d8781-31e0-5a65-8fe4-fe35b84a25b8 + resourceName: 384d8781-31e0-5a65-8fe4-fe35b84a25b8 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/fdbce54c-3be6-5933-a2c4-f5c215e714d0 + resourceName: fdbce54c-3be6-5933-a2c4-f5c215e714d0 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/63f2bd80-d380-5fca-84b5-5ed262f1692c + resourceName: 63f2bd80-d380-5fca-84b5-5ed262f1692c + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/e7f55306-7787-55c8-8e57-e14ef96c7a3a + resourceName: e7f55306-7787-55c8-8e57-e14ef96c7a3a + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/1beb5864-9379-5879-9097-fbd120420881 + resourceName: 1beb5864-9379-5879-9097-fbd120420881 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/85310fda-ce1d-58d0-85b8-90edb45119d4 + resourceName: 85310fda-ce1d-58d0-85b8-90edb45119d4 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/b7383bc2-55e9-586c-885e-02bcdf0a896e + resourceName: b7383bc2-55e9-586c-885e-02bcdf0a896e + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/6015adb6-3f7b-52a2-a852-316ebd66fed8 + resourceName: 6015adb6-3f7b-52a2-a852-316ebd66fed8 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/0382f693-e0a8-55e9-a34a-7a80b0ba01ae + resourceName: 0382f693-e0a8-55e9-a34a-7a80b0ba01ae + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/f11a6cae-94dd-5cc3-a8fd-499651fa3159 + resourceName: f11a6cae-94dd-5cc3-a8fd-499651fa3159 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/bd38158d-d35c-5e4d-b533-dea8671e8930 + resourceName: bd38158d-d35c-5e4d-b533-dea8671e8930 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/0ad97955-d181-503a-ae6a-09bb7bfc5e1d + resourceName: 0ad97955-d181-503a-ae6a-09bb7bfc5e1d + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/f89f136e-e6ca-5bc6-abbd-f3b9d57b0eb0 + resourceName: f89f136e-e6ca-5bc6-abbd-f3b9d57b0eb0 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/90fda8f2-4936-5f65-9b35-d06a1f958bcc + resourceName: 90fda8f2-4936-5f65-9b35-d06a1f958bcc + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/b44d90b2-6ca7-57e2-ab03-a8a61a59fb3f + resourceName: b44d90b2-6ca7-57e2-ab03-a8a61a59fb3f + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/7d4655ea-ab1f-5aa5-a3cd-0e2aa69b2b24 + resourceName: 7d4655ea-ab1f-5aa5-a3cd-0e2aa69b2b24 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/5520314f-e9ba-5616-9b9e-5dbe76cbfd7e + resourceName: 5520314f-e9ba-5616-9b9e-5dbe76cbfd7e + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/83bc49a5-a3a0-5506-976e-48db02f6b0f4 + resourceName: 83bc49a5-a3a0-5506-976e-48db02f6b0f4 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/0382f693-e0a8-55e9-a34a-7a80b0ba01ae + resourceName: 0382f693-e0a8-55e9-a34a-7a80b0ba01ae + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/0ad97955-d181-503a-ae6a-09bb7bfc5e1d + resourceName: 0ad97955-d181-503a-ae6a-09bb7bfc5e1d + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/bd38158d-d35c-5e4d-b533-dea8671e8930 + resourceName: bd38158d-d35c-5e4d-b533-dea8671e8930 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/f11a6cae-94dd-5cc3-a8fd-499651fa3159 + resourceName: f11a6cae-94dd-5cc3-a8fd-499651fa3159 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/f89f136e-e6ca-5bc6-abbd-f3b9d57b0eb0 + resourceName: f89f136e-e6ca-5bc6-abbd-f3b9d57b0eb0 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/63f2bd80-d380-5fca-84b5-5ed262f1692c + resourceName: 63f2bd80-d380-5fca-84b5-5ed262f1692c + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/fdbce54c-3be6-5933-a2c4-f5c215e714d0 + resourceName: fdbce54c-3be6-5933-a2c4-f5c215e714d0 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/067d0c10-229a-57c3-bbec-80505ef9769f + resourceName: 067d0c10-229a-57c3-bbec-80505ef9769f + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/cd1256ec-e374-543e-97ec-4275bc9e0bf9 + resourceName: cd1256ec-e374-543e-97ec-4275bc9e0bf9 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/9cf648a0-0391-573e-a010-581bcf0d249a + resourceName: 9cf648a0-0391-573e-a010-581bcf0d249a + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/b985672d-2c2e-5d70-9a95-b424133a22a5 + resourceName: b985672d-2c2e-5d70-9a95-b424133a22a5 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/85310fda-ce1d-58d0-85b8-90edb45119d4 + resourceName: 85310fda-ce1d-58d0-85b8-90edb45119d4 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/b7383bc2-55e9-586c-885e-02bcdf0a896e + resourceName: b7383bc2-55e9-586c-885e-02bcdf0a896e + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/3f6cb634-6e63-5a44-b838-6096b56fb594 + resourceName: 3f6cb634-6e63-5a44-b838-6096b56fb594 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/6015adb6-3f7b-52a2-a852-316ebd66fed8 + resourceName: 6015adb6-3f7b-52a2-a852-316ebd66fed8 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/b03c4c73-dfde-5674-97e8-a5003839cb6d + resourceName: b03c4c73-dfde-5674-97e8-a5003839cb6d + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/c80cd9c5-4a30-5fc4-937e-44687c0854e3 + resourceName: c80cd9c5-4a30-5fc4-937e-44687c0854e3 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/384d8781-31e0-5a65-8fe4-fe35b84a25b8 + resourceName: 384d8781-31e0-5a65-8fe4-fe35b84a25b8 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/e7f55306-7787-55c8-8e57-e14ef96c7a3a + resourceName: e7f55306-7787-55c8-8e57-e14ef96c7a3a + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/1beb5864-9379-5879-9097-fbd120420881 + resourceName: 1beb5864-9379-5879-9097-fbd120420881 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/63b63d06-47af-585d-a380-b19776b282f9 + resourceName: 63b63d06-47af-585d-a380-b19776b282f9 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/7d4655ea-ab1f-5aa5-a3cd-0e2aa69b2b24 + resourceName: 7d4655ea-ab1f-5aa5-a3cd-0e2aa69b2b24 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/b44d90b2-6ca7-57e2-ab03-a8a61a59fb3f + resourceName: b44d90b2-6ca7-57e2-ab03-a8a61a59fb3f + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/90fda8f2-4936-5f65-9b35-d06a1f958bcc + resourceName: 90fda8f2-4936-5f65-9b35-d06a1f958bcc + resourceType: Microsoft.Authorization/roleAssignments + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.RedHatOpenShift/hcpOpenShiftClusters/external-auth-cluster + resourceName: external-auth-cluster + resourceType: Microsoft.RedHatOpenShift/hcpOpenShiftClusters + duration: PT12.2414088S + error: + code: DeploymentFailed + details: + - code: InvalidRequestContent + message: Image Registry state '' is not valid, valid values are ['enabled','disabled'] + message: At least one resource deployment operation failed. Please list deployment + operations for details. Please see https://aka.ms/arm-deployment-operations + for usage details. + mode: Incremental + parameters: + clusterName: + type: String + value: external-auth-cluster + managedResourceGroupName: + type: String + value: external-auth-pvnl7c--managed + nsgName: + type: String + value: customer-nsg-name + subnetName: + type: String + value: customer-vnet-subnet1 + vnetName: + type: String + value: customer-vnet-name + providers: + - namespace: Microsoft.ManagedIdentity + resourceTypes: + - locations: + - uksouth + resourceType: userAssignedIdentities + - namespace: Microsoft.Authorization + resourceTypes: + - locations: + - null + resourceType: roleAssignments + - namespace: Microsoft.RedHatOpenShift + resourceTypes: + - locations: + - uksouth + resourceType: hcpOpenShiftClusters + provisioningState: Failed + templateHash: "7176892101941509152" + timestamp: "2025-08-07T08:17:16.8824103Z" + type: Microsoft.Resources/deployments +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Resources/deployments/infra + name: infra + properties: + correlationId: 978eb4b6-6294-466e-9fb4-aaef295dd5f4 + debugSetting: + detailLevel: RequestContent + dependencies: + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + resourceName: customer-nsg-name + resourceType: Microsoft.Network/networkSecurityGroups + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name + resourceName: customer-vnet-name + resourceType: Microsoft.Network/virtualNetworks + duration: PT6.3337874S + mode: Incremental + outputResources: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name + outputs: + networkSecurityGroupId: + type: String + value: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + subnetId: + type: String + value: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pvnl7c/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1 + parameters: + customerNsgName: + type: String + value: customer-nsg-name + customerVnetName: + type: String + value: customer-vnet-name + customerVnetSubnetName: + type: String + value: customer-vnet-subnet1 + providers: + - namespace: Microsoft.Network + resourceTypes: + - locations: + - uksouth + resourceType: networkSecurityGroups + - locations: + - uksouth + resourceType: virtualNetworks + provisioningState: Succeeded + templateHash: "5901671209430640079" + timestamp: "2025-08-07T08:16:58.3449184Z" + type: Microsoft.Resources/deployments diff --git a/test/resourcegroups/external-auth-pxpjtw/deployment-operations-hcp-cluster.yaml b/test/resourcegroups/external-auth-pxpjtw/deployment-operations-hcp-cluster.yaml new file mode 100644 index 0000000000..151fa2e1e5 --- /dev/null +++ b/test/resourcegroups/external-auth-pxpjtw/deployment-operations-hcp-cluster.yaml @@ -0,0 +1,823 @@ +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/D4FB02726602AB86 + operationId: D4FB02726602AB86 + properties: + duration: PT0.8796515S + provisioningOperation: Create + provisioningState: Failed + request: + content: + identity: + type: UserAssigned + userAssignedIdentities: + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + : {} + location: uksouth + properties: + api: + visibility: Public + console: {} + dns: {} + etcd: + dataEncryption: + keyManagementMode: PlatformManaged + network: + hostPrefix: 23 + machineCidr: 10.0.0.0/16 + networkType: OVNKubernetes + podCidr: 10.128.0.0/14 + serviceCidr: 172.30.0.0/16 + platform: + managedResourceGroup: external-auth-pxpjtw--managed + networkSecurityGroupId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + operatorsAuthentication: + userAssignedIdentities: + controlPlaneOperators: + cloud-controller-manager: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + cloud-network-config: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + cluster-api-azure: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + control-plane: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + disk-csi-driver: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + file-csi-driver: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + image-registry: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + ingress: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + dataPlaneOperators: + disk-csi-driver: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + file-csi-driver: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + image-registry: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + serviceManagedIdentity: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + outboundType: LoadBalancer + subnetId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1 + version: + channelGroup: stable + id: openshift-v4.19.0 + statusCode: BadRequest + statusMessage: + error: + code: InvalidRequestContent + message: Image Registry state '' is not valid, valid values are ['enabled','disabled'] + status: Failed + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.RedHatOpenShift/hcpOpenShiftClusters/external-auth-cluster + resourceName: external-auth-cluster + resourceType: Microsoft.RedHatOpenShift/hcpOpenShiftClusters + timestamp: "2025-08-07T08:48:00.6942796Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/4282295D7953E67D + operationId: 4282295D7953E67D + properties: + duration: PT3.0760986S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 2de327fa-b597-4b0a-96f9-db2da2bd1776 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/88366f10-ed47-4cc0-9fab-c8a06148393e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/c2b5d175-4416-5cf0-90c6-bfb40fd1fd3f + resourceName: c2b5d175-4416-5cf0-90c6-bfb40fd1fd3f + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:57.5446935Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/3A0A66C537B941BD + operationId: 3A0A66C537B941BD + properties: + duration: PT2.8141564S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: dbde8c9c-477d-4d3d-a0db-adbaef401934 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/ef318e2a-8334-4a05-9e4a-295a196c6a6e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/ba835be7-fcc3-518b-a65f-a9e8794df3a8 + resourceName: ba835be7-fcc3-518b-a65f-a9e8794df3a8 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:57.6035132Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/7BD59A2839E05986 + operationId: 7BD59A2839E05986 + properties: + duration: PT2.6334028S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 250c16df-2caf-45ef-93ec-ff2f675cc97d + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/0d7aedc0-15fd-4a67-a412-efad370c947e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/64b2af51-2c7b-5102-96d9-d6f17ed12200 + resourceName: 64b2af51-2c7b-5102-96d9-d6f17ed12200 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:57.7686322Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/6BF313E40F990B1B + operationId: 6BF313E40F990B1B + properties: + duration: PT2.764842S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 8b6b6845-24e5-45ff-892d-a865e33296d5 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/be7a6435-15ae-4171-8f30-4a343eff9e8f + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/442dd276-7e0b-5583-9ce1-5dfe8ec4a4e9 + resourceName: 442dd276-7e0b-5583-9ce1-5dfe8ec4a4e9 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:57.6059431Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/A9CAC4CC7759BCFC + operationId: A9CAC4CC7759BCFC + properties: + duration: PT2.9616866S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: dbde8c9c-477d-4d3d-a0db-adbaef401934 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/ef318e2a-8334-4a05-9e4a-295a196c6a6e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/a4346609-7e31-56ce-bcfd-260823317e35 + resourceName: a4346609-7e31-56ce-bcfd-260823317e35 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:57.4090985Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/64DF88EB58143E8B + operationId: 64DF88EB58143E8B + properties: + duration: PT2.8421747S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 250c16df-2caf-45ef-93ec-ff2f675cc97d + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/0d7aedc0-15fd-4a67-a412-efad370c947e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/46202ac5-9dd3-5213-aea3-fae50c2649e9 + resourceName: 46202ac5-9dd3-5213-aea3-fae50c2649e9 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:57.5286104Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/6F79DDB2BBC38BEA + operationId: 6F79DDB2BBC38BEA + properties: + duration: PT2.9304326S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: dbde8c9c-477d-4d3d-a0db-adbaef401934 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/734a0bb9-dd1d-5a91-ac1c-425b9c3aa791 + resourceName: 734a0bb9-dd1d-5a91-ac1c-425b9c3aa791 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:57.4090985Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/E901B7EB64018755 + operationId: E901B7EB64018755 + properties: + duration: PT2.2278051S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: dbde8c9c-477d-4d3d-a0db-adbaef401934 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/11a1da80-6f1b-5683-ae66-70a56750ae82 + resourceName: 11a1da80-6f1b-5683-ae66-70a56750ae82 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:58.0804847Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/04ADBA82ACE778F4 + operationId: 04ADBA82ACE778F4 + properties: + duration: PT2.7635963S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: dbde8c9c-477d-4d3d-a0db-adbaef401934 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/ddb18c25-6b55-5420-ab75-24b66a07e639 + resourceName: ddb18c25-6b55-5420-ab75-24b66a07e639 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:57.5446935Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/E52EA4D8B33159E1 + operationId: E52EA4D8B33159E1 + properties: + duration: PT2.7171815S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: dbde8c9c-477d-4d3d-a0db-adbaef401934 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/3329192c-44c1-5d02-91bb-e37c54d86acf + resourceName: 3329192c-44c1-5d02-91bb-e37c54d86acf + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:57.5286104Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/35E72D8C264FD5BE + operationId: 35E72D8C264FD5BE + properties: + duration: PT2.7898603S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: dbde8c9c-477d-4d3d-a0db-adbaef401934 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/c0ff367d-66d8-445e-917c-583feb0ef0d4 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/ddd39adb-ff84-52d3-b41b-44481c0536dd + resourceName: ddd39adb-ff84-52d3-b41b-44481c0536dd + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:57.4090985Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/509725674B9B74AF + operationId: 509725674B9B74AF + properties: + duration: PT2.7586151S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: dbde8c9c-477d-4d3d-a0db-adbaef401934 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/95dc9e55-faa0-56af-8f57-448bade6973a + resourceName: 95dc9e55-faa0-56af-8f57-448bade6973a + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:57.4090985Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/B71B39CB0F5ADE2C + operationId: B71B39CB0F5ADE2C + properties: + duration: PT2.7430748S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: dbde8c9c-477d-4d3d-a0db-adbaef401934 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/c0ff367d-66d8-445e-917c-583feb0ef0d4 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/7e48c1a1-0970-512b-85ca-cd87bb91f9e4 + resourceName: 7e48c1a1-0970-512b-85ca-cd87bb91f9e4 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:57.4090985Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/6A0AC6E8FE88717D + operationId: 6A0AC6E8FE88717D + properties: + duration: PT2.7441632S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 8b6b6845-24e5-45ff-892d-a865e33296d5 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/be7a6435-15ae-4171-8f30-4a343eff9e8f + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/cf06bdc9-a1ad-556c-b3e5-12de4b81bb14 + resourceName: cf06bdc9-a1ad-556c-b3e5-12de4b81bb14 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:57.3922427Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/6CA999E32FAA9A7A + operationId: 6CA999E32FAA9A7A + properties: + duration: PT3.0383575S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 98a9f3c4-28ac-4d17-8037-256e435f29ff + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/a1f96423-95ce-4224-ab27-4e3dc72facd4 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/e54ae701-add6-53f1-8ee2-a4ef3a46cdb8 + resourceName: e54ae701-add6-53f1-8ee2-a4ef3a46cdb8 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:57.0668047Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/FBF663C4852B1B4B + operationId: FBF663C4852B1B4B + properties: + duration: PT2.6336524S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: dbde8c9c-477d-4d3d-a0db-adbaef401934 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/fe5a2d88-d16c-5359-8e7e-c05f05c1609d + resourceName: fe5a2d88-d16c-5359-8e7e-c05f05c1609d + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:57.4090985Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/C901BC722DB14BE2 + operationId: C901BC722DB14BE2 + properties: + duration: PT2.6023058S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: dbde8c9c-477d-4d3d-a0db-adbaef401934 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/ee9ce038-a475-504b-b7d7-ab2758c2798a + resourceName: ee9ce038-a475-504b-b7d7-ab2758c2798a + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:57.4090985Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/B2512B00ED53E925 + operationId: B2512B00ED53E925 + properties: + duration: PT2.5867313S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: dbde8c9c-477d-4d3d-a0db-adbaef401934 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/8abc9312-1842-5c08-928c-617224eef277 + resourceName: 8abc9312-1842-5c08-928c-617224eef277 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:57.4090985Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/BED10BA48CD7F0BE + operationId: BED10BA48CD7F0BE + properties: + duration: PT2.5867313S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: dbde8c9c-477d-4d3d-a0db-adbaef401934 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/c0ff367d-66d8-445e-917c-583feb0ef0d4 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/e15fe783-76bf-58ee-a184-593204f2d455 + resourceName: e15fe783-76bf-58ee-a184-593204f2d455 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:57.4090985Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/F0CB0A2820817D9C + operationId: F0CB0A2820817D9C + properties: + duration: PT2.5398026S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: dbde8c9c-477d-4d3d-a0db-adbaef401934 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/ef318e2a-8334-4a05-9e4a-295a196c6a6e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/08ea67f5-e281-525b-91ce-adf8049824cc + resourceName: 08ea67f5-e281-525b-91ce-adf8049824cc + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:57.4090985Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/F7C543D53B63176B + operationId: F7C543D53B63176B + properties: + duration: PT2.7442855S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: b25201d0-54b7-4876-b64f-895668921cce + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/fc0c873f-45e9-4d0d-a7d1-585aab30c6ed + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/c5d7188f-834e-53cc-b313-da75f2ecfb62 + resourceName: c5d7188f-834e-53cc-b313-da75f2ecfb62 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:57.1889904Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/FD9450354594FED6 + operationId: FD9450354594FED6 + properties: + duration: PT2.6392509S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 98a9f3c4-28ac-4d17-8037-256e435f29ff + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/a1f96423-95ce-4224-ab27-4e3dc72facd4 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/d207336c-e08e-5e2e-a114-405175a4f3a8 + resourceName: d207336c-e08e-5e2e-a114-405175a4f3a8 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:57.294025Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/A3EBD6D4444086E2 + operationId: A3EBD6D4444086E2 + properties: + duration: PT2.9461344S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: bafecf73-58d5-4761-b4ff-5f568418d605 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/0d7aedc0-15fd-4a67-a412-efad370c947e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/673801df-8396-5960-bd7f-a73809428825 + resourceName: 673801df-8396-5960-bd7f-a73809428825 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:56.9246987Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/EA6D97AE2639BEE8 + operationId: EA6D97AE2639BEE8 + properties: + duration: PT2.9327343S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: b25201d0-54b7-4876-b64f-895668921cce + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/fc0c873f-45e9-4d0d-a7d1-585aab30c6ed + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/c7490f71-0df3-5eeb-8b35-3a5a00419230 + resourceName: c7490f71-0df3-5eeb-8b35-3a5a00419230 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:56.9380988Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/E15B2738855E1C55 + operationId: E15B2738855E1C55 + properties: + duration: PT2.6420403S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: bafecf73-58d5-4761-b4ff-5f568418d605 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/0d7aedc0-15fd-4a67-a412-efad370c947e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/90e04d1f-650b-5d80-9ee4-8690821691d9 + resourceName: 90e04d1f-650b-5d80-9ee4-8690821691d9 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:57.1975338Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/8FB5A543311C2F55 + operationId: 8FB5A543311C2F55 + properties: + duration: PT2.9054156S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: e9f8d6bb-89f8-4c95-9edc-e32fe919bfc0 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/0336e1d3-7a87-462b-b6db-342b63f7802c + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/0d5524cf-589b-5234-aaa3-fb0a5f9bfc4b + resourceName: 0d5524cf-589b-5234-aaa3-fb0a5f9bfc4b + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:47:56.9185339Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/5126557EB6BCC4E0 + operationId: 5126557EB6BCC4E0 + properties: + duration: PT0.951055S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:47:57.5446935Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/D84A8F461B64CCC6 + operationId: D84A8F461B64CCC6 + properties: + duration: PT3.2285812S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:47:54.7671618Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/536F5AF00C8CF12E + operationId: 536F5AF00C8CF12E + properties: + duration: PT0.1233724S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:47:57.5286104Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/6E2A47139B2902B4 + operationId: 6E2A47139B2902B4 + properties: + duration: PT2.7598155S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:47:54.7671618Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/87D8A4536B948603 + operationId: 87D8A4536B948603 + properties: + duration: PT0.1347346S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:47:57.3922427Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/C1525BB1F1BE7DB9 + operationId: C1525BB1F1BE7DB9 + properties: + duration: PT2.6973143S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:47:54.7671618Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/A2DE7F543B3FEDC1 + operationId: A2DE7F543B3FEDC1 + properties: + duration: PT2.6348144S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:47:54.7671618Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/F92D68878E7045CD + operationId: F92D68878E7045CD + properties: + duration: PT2.5879379S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:47:54.7671618Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/6196359DF0B8861C + operationId: 6196359DF0B8861C + properties: + duration: PT2.5566873S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:47:54.7671618Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/F043E57209D413E1 + operationId: F043E57209D413E1 + properties: + duration: PT2.5410611S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:47:54.7671618Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/1CCBB103322E642A + operationId: 1CCBB103322E642A + properties: + duration: PT0.147675S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:47:57.0668047Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/3C1F7263BDC1BDD8 + operationId: 3C1F7263BDC1BDD8 + properties: + duration: PT0.1960183S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:47:56.9246987Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/E5071BFDBC61B2C3 + operationId: E5071BFDBC61B2C3 + properties: + duration: PT0.1826182S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:47:56.9380988Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/C5A07781D97FFD7E + operationId: C5A07781D97FFD7E + properties: + duration: PT2.2910555S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:47:54.7671618Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/47B2F0BF0CACB78A + operationId: 47B2F0BF0CACB78A + properties: + duration: PT0.1396834S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:47:56.9185339Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/C2C089FB2A2F70ED + operationId: C2C089FB2A2F70ED + properties: + duration: PT2.228551S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:47:54.7671618Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/4B3BDB7D0E266763 + operationId: 4B3BDB7D0E266763 + properties: + duration: PT2.0879236S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:47:54.7671618Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/7AE02ADD5FFEE804 + operationId: 7AE02ADD5FFEE804 + properties: + duration: PT2.0879236S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:47:54.7671618Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/3D4756EFD9B8C1D6 + operationId: 3D4756EFD9B8C1D6 + properties: + duration: PT2.0723028S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:47:54.7671618Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster/operations/2BC3DC28DBBCBCA2 + operationId: 2BC3DC28DBBCBCA2 + properties: + duration: PT2.0723028S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:47:54.7671618Z" diff --git a/test/resourcegroups/external-auth-pxpjtw/deployment-operations-infra.yaml b/test/resourcegroups/external-auth-pxpjtw/deployment-operations-infra.yaml new file mode 100644 index 0000000000..0f88d96ee3 --- /dev/null +++ b/test/resourcegroups/external-auth-pxpjtw/deployment-operations-infra.yaml @@ -0,0 +1,64 @@ +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/infra/operations/FA67390DB86FA4A7 + operationId: FA67390DB86FA4A7 + properties: + duration: PT5.3531277S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name + resourceName: customer-vnet-name + resourceType: Microsoft.Network/virtualNetworks + timestamp: "2025-08-07T08:47:40.0449501Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/infra/operations/25544BC4C9A114B1 + operationId: 25544BC4C9A114B1 + properties: + duration: PT5.2593786S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + properties: + addressSpace: + addressPrefixes: + - 10.0.0.0/16 + subnets: + - name: customer-vnet-subnet1 + properties: + addressPrefix: 10.0.0.0/24 + networkSecurityGroup: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + tags: + persist: "true" + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name + resourceName: customer-vnet-name + resourceType: Microsoft.Network/virtualNetworks + timestamp: "2025-08-07T08:47:40.0449501Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/infra/operations/EBEB28B5A9F17744 + operationId: EBEB28B5A9F17744 + properties: + duration: PT2.2188418S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + tags: + persist: "true" + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + resourceName: customer-nsg-name + resourceType: Microsoft.Network/networkSecurityGroups + timestamp: "2025-08-07T08:47:40.0449501Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/infra/operations/08584470504267805025 + operationId: "08584470504267805025" + properties: + duration: PT5.4468815S + provisioningOperation: EvaluateDeploymentOutput + provisioningState: Succeeded + statusCode: OK + timestamp: "2025-08-07T08:47:40.0449501Z" diff --git a/test/resourcegroups/external-auth-pxpjtw/deployments.yaml b/test/resourcegroups/external-auth-pxpjtw/deployments.yaml new file mode 100644 index 0000000000..1b42430092 --- /dev/null +++ b/test/resourcegroups/external-auth-pxpjtw/deployments.yaml @@ -0,0 +1,513 @@ +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/hcp-cluster + name: hcp-cluster + properties: + correlationId: 27ccc736-5e56-445c-8f9d-86356759eacd + debugSetting: + detailLevel: RequestContent + dependencies: + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/c2b5d175-4416-5cf0-90c6-bfb40fd1fd3f + resourceName: c2b5d175-4416-5cf0-90c6-bfb40fd1fd3f + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/ddb18c25-6b55-5420-ab75-24b66a07e639 + resourceName: ddb18c25-6b55-5420-ab75-24b66a07e639 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/c5d7188f-834e-53cc-b313-da75f2ecfb62 + resourceName: c5d7188f-834e-53cc-b313-da75f2ecfb62 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/c7490f71-0df3-5eeb-8b35-3a5a00419230 + resourceName: c7490f71-0df3-5eeb-8b35-3a5a00419230 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/95dc9e55-faa0-56af-8f57-448bade6973a + resourceName: 95dc9e55-faa0-56af-8f57-448bade6973a + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/e54ae701-add6-53f1-8ee2-a4ef3a46cdb8 + resourceName: e54ae701-add6-53f1-8ee2-a4ef3a46cdb8 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/d207336c-e08e-5e2e-a114-405175a4f3a8 + resourceName: d207336c-e08e-5e2e-a114-405175a4f3a8 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/8abc9312-1842-5c08-928c-617224eef277 + resourceName: 8abc9312-1842-5c08-928c-617224eef277 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/0d5524cf-589b-5234-aaa3-fb0a5f9bfc4b + resourceName: 0d5524cf-589b-5234-aaa3-fb0a5f9bfc4b + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/ee9ce038-a475-504b-b7d7-ab2758c2798a + resourceName: ee9ce038-a475-504b-b7d7-ab2758c2798a + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/734a0bb9-dd1d-5a91-ac1c-425b9c3aa791 + resourceName: 734a0bb9-dd1d-5a91-ac1c-425b9c3aa791 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/64b2af51-2c7b-5102-96d9-d6f17ed12200 + resourceName: 64b2af51-2c7b-5102-96d9-d6f17ed12200 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/46202ac5-9dd3-5213-aea3-fae50c2649e9 + resourceName: 46202ac5-9dd3-5213-aea3-fae50c2649e9 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/3329192c-44c1-5d02-91bb-e37c54d86acf + resourceName: 3329192c-44c1-5d02-91bb-e37c54d86acf + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/11a1da80-6f1b-5683-ae66-70a56750ae82 + resourceName: 11a1da80-6f1b-5683-ae66-70a56750ae82 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/442dd276-7e0b-5583-9ce1-5dfe8ec4a4e9 + resourceName: 442dd276-7e0b-5583-9ce1-5dfe8ec4a4e9 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/cf06bdc9-a1ad-556c-b3e5-12de4b81bb14 + resourceName: cf06bdc9-a1ad-556c-b3e5-12de4b81bb14 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/fe5a2d88-d16c-5359-8e7e-c05f05c1609d + resourceName: fe5a2d88-d16c-5359-8e7e-c05f05c1609d + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/a4346609-7e31-56ce-bcfd-260823317e35 + resourceName: a4346609-7e31-56ce-bcfd-260823317e35 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/08ea67f5-e281-525b-91ce-adf8049824cc + resourceName: 08ea67f5-e281-525b-91ce-adf8049824cc + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/673801df-8396-5960-bd7f-a73809428825 + resourceName: 673801df-8396-5960-bd7f-a73809428825 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/90e04d1f-650b-5d80-9ee4-8690821691d9 + resourceName: 90e04d1f-650b-5d80-9ee4-8690821691d9 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/ba835be7-fcc3-518b-a65f-a9e8794df3a8 + resourceName: ba835be7-fcc3-518b-a65f-a9e8794df3a8 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/ddd39adb-ff84-52d3-b41b-44481c0536dd + resourceName: ddd39adb-ff84-52d3-b41b-44481c0536dd + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/7e48c1a1-0970-512b-85ca-cd87bb91f9e4 + resourceName: 7e48c1a1-0970-512b-85ca-cd87bb91f9e4 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/e15fe783-76bf-58ee-a184-593204f2d455 + resourceName: e15fe783-76bf-58ee-a184-593204f2d455 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/d207336c-e08e-5e2e-a114-405175a4f3a8 + resourceName: d207336c-e08e-5e2e-a114-405175a4f3a8 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/e54ae701-add6-53f1-8ee2-a4ef3a46cdb8 + resourceName: e54ae701-add6-53f1-8ee2-a4ef3a46cdb8 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/a4346609-7e31-56ce-bcfd-260823317e35 + resourceName: a4346609-7e31-56ce-bcfd-260823317e35 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/90e04d1f-650b-5d80-9ee4-8690821691d9 + resourceName: 90e04d1f-650b-5d80-9ee4-8690821691d9 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/673801df-8396-5960-bd7f-a73809428825 + resourceName: 673801df-8396-5960-bd7f-a73809428825 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/08ea67f5-e281-525b-91ce-adf8049824cc + resourceName: 08ea67f5-e281-525b-91ce-adf8049824cc + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/ba835be7-fcc3-518b-a65f-a9e8794df3a8 + resourceName: ba835be7-fcc3-518b-a65f-a9e8794df3a8 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/46202ac5-9dd3-5213-aea3-fae50c2649e9 + resourceName: 46202ac5-9dd3-5213-aea3-fae50c2649e9 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/64b2af51-2c7b-5102-96d9-d6f17ed12200 + resourceName: 64b2af51-2c7b-5102-96d9-d6f17ed12200 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/c2b5d175-4416-5cf0-90c6-bfb40fd1fd3f + resourceName: c2b5d175-4416-5cf0-90c6-bfb40fd1fd3f + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/c7490f71-0df3-5eeb-8b35-3a5a00419230 + resourceName: c7490f71-0df3-5eeb-8b35-3a5a00419230 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/c5d7188f-834e-53cc-b313-da75f2ecfb62 + resourceName: c5d7188f-834e-53cc-b313-da75f2ecfb62 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/0d5524cf-589b-5234-aaa3-fb0a5f9bfc4b + resourceName: 0d5524cf-589b-5234-aaa3-fb0a5f9bfc4b + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/442dd276-7e0b-5583-9ce1-5dfe8ec4a4e9 + resourceName: 442dd276-7e0b-5583-9ce1-5dfe8ec4a4e9 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/cf06bdc9-a1ad-556c-b3e5-12de4b81bb14 + resourceName: cf06bdc9-a1ad-556c-b3e5-12de4b81bb14 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/8abc9312-1842-5c08-928c-617224eef277 + resourceName: 8abc9312-1842-5c08-928c-617224eef277 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/fe5a2d88-d16c-5359-8e7e-c05f05c1609d + resourceName: fe5a2d88-d16c-5359-8e7e-c05f05c1609d + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/ddb18c25-6b55-5420-ab75-24b66a07e639 + resourceName: ddb18c25-6b55-5420-ab75-24b66a07e639 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/95dc9e55-faa0-56af-8f57-448bade6973a + resourceName: 95dc9e55-faa0-56af-8f57-448bade6973a + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/734a0bb9-dd1d-5a91-ac1c-425b9c3aa791 + resourceName: 734a0bb9-dd1d-5a91-ac1c-425b9c3aa791 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/3329192c-44c1-5d02-91bb-e37c54d86acf + resourceName: 3329192c-44c1-5d02-91bb-e37c54d86acf + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/11a1da80-6f1b-5683-ae66-70a56750ae82 + resourceName: 11a1da80-6f1b-5683-ae66-70a56750ae82 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/ee9ce038-a475-504b-b7d7-ab2758c2798a + resourceName: ee9ce038-a475-504b-b7d7-ab2758c2798a + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/e15fe783-76bf-58ee-a184-593204f2d455 + resourceName: e15fe783-76bf-58ee-a184-593204f2d455 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/7e48c1a1-0970-512b-85ca-cd87bb91f9e4 + resourceName: 7e48c1a1-0970-512b-85ca-cd87bb91f9e4 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/ddd39adb-ff84-52d3-b41b-44481c0536dd + resourceName: ddd39adb-ff84-52d3-b41b-44481c0536dd + resourceType: Microsoft.Authorization/roleAssignments + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.RedHatOpenShift/hcpOpenShiftClusters/external-auth-cluster + resourceName: external-auth-cluster + resourceType: Microsoft.RedHatOpenShift/hcpOpenShiftClusters + duration: PT9.5640393S + error: + code: DeploymentFailed + details: + - code: InvalidRequestContent + message: Image Registry state '' is not valid, valid values are ['enabled','disabled'] + message: At least one resource deployment operation failed. Please list deployment + operations for details. Please see https://aka.ms/arm-deployment-operations + for usage details. + mode: Incremental + parameters: + clusterName: + type: String + value: external-auth-cluster + managedResourceGroupName: + type: String + value: external-auth-pxpjtw--managed + nsgName: + type: String + value: customer-nsg-name + subnetName: + type: String + value: customer-vnet-subnet1 + vnetName: + type: String + value: customer-vnet-name + providers: + - namespace: Microsoft.ManagedIdentity + resourceTypes: + - locations: + - uksouth + resourceType: userAssignedIdentities + - namespace: Microsoft.Authorization + resourceTypes: + - locations: + - null + resourceType: roleAssignments + - namespace: Microsoft.RedHatOpenShift + resourceTypes: + - locations: + - uksouth + resourceType: hcpOpenShiftClusters + provisioningState: Failed + templateHash: "7176892101941509152" + timestamp: "2025-08-07T08:48:01.8551887Z" + type: Microsoft.Resources/deployments +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Resources/deployments/infra + name: infra + properties: + correlationId: 08e1695c-cc1b-410a-a7e1-bbc539090c41 + debugSetting: + detailLevel: RequestContent + dependencies: + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + resourceName: customer-nsg-name + resourceType: Microsoft.Network/networkSecurityGroups + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name + resourceName: customer-vnet-name + resourceType: Microsoft.Network/virtualNetworks + duration: PT6.821556S + mode: Incremental + outputResources: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name + outputs: + networkSecurityGroupId: + type: String + value: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + subnetId: + type: String + value: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-pxpjtw/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1 + parameters: + customerNsgName: + type: String + value: customer-nsg-name + customerVnetName: + type: String + value: customer-vnet-name + customerVnetSubnetName: + type: String + value: customer-vnet-subnet1 + providers: + - namespace: Microsoft.Network + resourceTypes: + - locations: + - uksouth + resourceType: networkSecurityGroups + - locations: + - uksouth + resourceType: virtualNetworks + provisioningState: Succeeded + templateHash: "5901671209430640079" + timestamp: "2025-08-07T08:47:45.5074541Z" + type: Microsoft.Resources/deployments diff --git a/test/resourcegroups/external-auth-wqwhfs/deployment-operations-hcp-cluster.yaml b/test/resourcegroups/external-auth-wqwhfs/deployment-operations-hcp-cluster.yaml new file mode 100644 index 0000000000..4a9a123c5d --- /dev/null +++ b/test/resourcegroups/external-auth-wqwhfs/deployment-operations-hcp-cluster.yaml @@ -0,0 +1,823 @@ +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/8F043574509EDA49 + operationId: 8F043574509EDA49 + properties: + duration: PT0.8534724S + provisioningOperation: Create + provisioningState: Failed + request: + content: + identity: + type: UserAssigned + userAssignedIdentities: + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + : {} + ? /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + : {} + location: uksouth + properties: + api: + visibility: Public + console: {} + dns: {} + etcd: + dataEncryption: + keyManagementMode: PlatformManaged + network: + hostPrefix: 23 + machineCidr: 10.0.0.0/16 + networkType: OVNKubernetes + podCidr: 10.128.0.0/14 + serviceCidr: 172.30.0.0/16 + platform: + managedResourceGroup: external-auth-wqwhfs--managed + networkSecurityGroupId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + operatorsAuthentication: + userAssignedIdentities: + controlPlaneOperators: + cloud-controller-manager: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + cloud-network-config: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + cluster-api-azure: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + control-plane: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + disk-csi-driver: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + file-csi-driver: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + image-registry: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + ingress: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + dataPlaneOperators: + disk-csi-driver: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + file-csi-driver: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + image-registry: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + serviceManagedIdentity: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + outboundType: LoadBalancer + subnetId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1 + version: + channelGroup: stable + id: openshift-v4.19.0 + statusCode: BadRequest + statusMessage: + error: + code: InvalidSubscriptionState + message: Request is not allowed in unregistered subscription '1d3378d3-5a3f-4712-85a1-2485495dfc4b'. + status: Failed + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.RedHatOpenShift/hcpOpenShiftClusters/external-auth-cluster + resourceName: external-auth-cluster + resourceType: Microsoft.RedHatOpenShift/hcpOpenShiftClusters + timestamp: "2025-08-07T08:12:37.6221001Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/3CAFD6CE9C70A257 + operationId: 3CAFD6CE9C70A257 + properties: + duration: PT2.4794191S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: bf499eae-5107-40ec-be05-67594ce1ccc4 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/ef318e2a-8334-4a05-9e4a-295a196c6a6e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/15d782a7-cc94-5e03-ad84-e2fb7a7e94e7 + resourceName: 15d782a7-cc94-5e03-ad84-e2fb7a7e94e7 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:35.105528Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/E4325745962F7553 + operationId: E4325745962F7553 + properties: + duration: PT2.4637919S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: bf499eae-5107-40ec-be05-67594ce1ccc4 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/6bb2dfd1-8100-5670-8e93-3853af354e34 + resourceName: 6bb2dfd1-8100-5670-8e93-3853af354e34 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:35.105528Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/E0FA9C2706488A5F + operationId: E0FA9C2706488A5F + properties: + duration: PT2.361621S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: bf499eae-5107-40ec-be05-67594ce1ccc4 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/ef318e2a-8334-4a05-9e4a-295a196c6a6e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/43524674-0f12-5cfa-af40-a029ea207cd7 + resourceName: 43524674-0f12-5cfa-af40-a029ea207cd7 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:35.2076989Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/91A552E9B08F7C72 + operationId: 91A552E9B08F7C72 + properties: + duration: PT2.4169186S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: bf499eae-5107-40ec-be05-67594ce1ccc4 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/b02470fe-e4bd-5633-ae9f-fd9ae843bdfa + resourceName: b02470fe-e4bd-5633-ae9f-fd9ae843bdfa + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:35.105528Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/A3A4CE81BCE28D65 + operationId: A3A4CE81BCE28D65 + properties: + duration: PT2.4169186S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: bf499eae-5107-40ec-be05-67594ce1ccc4 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/c0ff367d-66d8-445e-917c-583feb0ef0d4 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/6f4c4ae0-4e62-56cc-ad58-a9c448f1858b + resourceName: 6f4c4ae0-4e62-56cc-ad58-a9c448f1858b + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:35.105528Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/B82F817F4A63CEB9 + operationId: B82F817F4A63CEB9 + properties: + duration: PT2.4169186S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: bf499eae-5107-40ec-be05-67594ce1ccc4 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/ef318e2a-8334-4a05-9e4a-295a196c6a6e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/7fd2eae1-06b7-54c8-a996-105922b52394 + resourceName: 7fd2eae1-06b7-54c8-a996-105922b52394 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:35.105528Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/ACCC375C7E992D41 + operationId: ACCC375C7E992D41 + properties: + duration: PT2.4169186S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: bf499eae-5107-40ec-be05-67594ce1ccc4 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/ac5405ca-059a-554c-b1d7-c86af4b8c724 + resourceName: ac5405ca-059a-554c-b1d7-c86af4b8c724 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:35.105528Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/16FFD3DE840F1D6C + operationId: 16FFD3DE840F1D6C + properties: + duration: PT2.5707471S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: babb2e62-1b07-4839-9e3a-e70c95717e30 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/88366f10-ed47-4cc0-9fab-c8a06148393e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/18b1936c-6e3c-5775-b647-4a40010423db + resourceName: 18b1936c-6e3c-5775-b647-4a40010423db + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:34.9516995Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/E6F7BEE43B025ABB + operationId: E6F7BEE43B025ABB + properties: + duration: PT2.4169186S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: bf499eae-5107-40ec-be05-67594ce1ccc4 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/c0ff367d-66d8-445e-917c-583feb0ef0d4 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/8661c249-0119-5598-9479-7ed4fdd24cbd + resourceName: 8661c249-0119-5598-9479-7ed4fdd24cbd + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:35.105528Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/1D31D9E6D9A24924 + operationId: 1D31D9E6D9A24924 + properties: + duration: PT2.3856679S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: bf499eae-5107-40ec-be05-67594ce1ccc4 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/4d3c2035-7325-56f5-9c44-0333e16cd5f8 + resourceName: 4d3c2035-7325-56f5-9c44-0333e16cd5f8 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:35.105528Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/8B963100FBFA0717 + operationId: 8B963100FBFA0717 + properties: + duration: PT2.3856679S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: bf499eae-5107-40ec-be05-67594ce1ccc4 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/c0ff367d-66d8-445e-917c-583feb0ef0d4 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/93c951d6-035e-59a4-9c10-fc3e9e6305fc + resourceName: 93c951d6-035e-59a4-9c10-fc3e9e6305fc + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:35.105528Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/ECF047B29BC1DBBB + operationId: ECF047B29BC1DBBB + properties: + duration: PT2.3231672S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: bf499eae-5107-40ec-be05-67594ce1ccc4 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/90f18afd-a0eb-5f33-9a0e-0dc12787fda3 + resourceName: 90f18afd-a0eb-5f33-9a0e-0dc12787fda3 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:35.105528Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/7B02E58A8D8DFA50 + operationId: 7B02E58A8D8DFA50 + properties: + duration: PT2.3075426S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: bf499eae-5107-40ec-be05-67594ce1ccc4 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/4b8ef890-a3d2-5010-a2a1-c70861d70c74 + resourceName: 4b8ef890-a3d2-5010-a2a1-c70861d70c74 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:35.105528Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/18E4B37F7808C9A3 + operationId: 18E4B37F7808C9A3 + properties: + duration: PT2.2762944S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: bf499eae-5107-40ec-be05-67594ce1ccc4 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/63973ca5-81b8-58c3-9f71-9ef050885df1 + resourceName: 63973ca5-81b8-58c3-9f71-9ef050885df1 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:35.105528Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/D99B70FA2C735CC4 + operationId: D99B70FA2C735CC4 + properties: + duration: PT2.7336554S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 8d4b3779-226c-4311-b7ca-a087092bf84d + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/fc0c873f-45e9-4d0d-a7d1-585aab30c6ed + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/b5fc3652-8173-5131-b3c8-ba4650044ae7 + resourceName: b5fc3652-8173-5131-b3c8-ba4650044ae7 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:34.6325399Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/F3B5C23B1874C9C1 + operationId: F3B5C23B1874C9C1 + properties: + duration: PT2.337135S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 2bc05ff9-b38b-45b0-867b-ddd9481dda79 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/be7a6435-15ae-4171-8f30-4a343eff9e8f + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/940915a9-6178-5182-9b5e-91add3304880 + resourceName: 940915a9-6178-5182-9b5e-91add3304880 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:34.9978108Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/782C8E33FE704CE7 + operationId: 782C8E33FE704CE7 + properties: + duration: PT2.1669167S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: bf499eae-5107-40ec-be05-67594ce1ccc4 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/02c707cf-94a4-5ba7-baff-48a3a48470fd + resourceName: 02c707cf-94a4-5ba7-baff-48a3a48470fd + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:35.105528Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/724FD0EE355AEC2B + operationId: 724FD0EE355AEC2B + properties: + duration: PT2.4881663S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 3e2a5bd7-7d37-474a-a45a-ef06682beaab + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/0d7aedc0-15fd-4a67-a412-efad370c947e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/b63a41b7-14c2-5003-84bf-46642ea9f9f8 + resourceName: b63a41b7-14c2-5003-84bf-46642ea9f9f8 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:34.7842784Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/790AE7B3407E46EC + operationId: 790AE7B3407E46EC + properties: + duration: PT2.3028349S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 2bc05ff9-b38b-45b0-867b-ddd9481dda79 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/be7a6435-15ae-4171-8f30-4a343eff9e8f + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/65556f88-894f-5915-942a-e2e83ad4323b + resourceName: 65556f88-894f-5915-942a-e2e83ad4323b + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:34.8602365Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/2CD60ACC3CF1523E + operationId: 2CD60ACC3CF1523E + properties: + duration: PT2.5455508S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 3e2a5bd7-7d37-474a-a45a-ef06682beaab + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/0d7aedc0-15fd-4a67-a412-efad370c947e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/b2426898-79be-5468-8339-7e43799b9353 + resourceName: b2426898-79be-5468-8339-7e43799b9353 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:34.6175206Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/93E952434B3DCDDD + operationId: 93E952434B3DCDDD + properties: + duration: PT2.3794978S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: fc8af9fe-a77d-4d0c-bcb9-32e301374cf8 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/0d7aedc0-15fd-4a67-a412-efad370c947e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/d90973f3-bb15-544d-9fb6-3972d028f960 + resourceName: d90973f3-bb15-544d-9fb6-3972d028f960 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:34.7210708Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/67D164ADE9CDB97F + operationId: 67D164ADE9CDB97F + properties: + duration: PT2.708035S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 6cccd0fe-044b-4164-b965-2128f93a1927 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/a1f96423-95ce-4224-ab27-4e3dc72facd4 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/e622172a-f9a6-5c06-b95d-f137bc046490 + resourceName: e622172a-f9a6-5c06-b95d-f137bc046490 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:34.3769131Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/F311A63A1A57BF47 + operationId: F311A63A1A57BF47 + properties: + duration: PT2.5144968S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 6cccd0fe-044b-4164-b965-2128f93a1927 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/a1f96423-95ce-4224-ab27-4e3dc72facd4 + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/d6b81e28-f752-5df7-97f6-eacddd56abbe + resourceName: d6b81e28-f752-5df7-97f6-eacddd56abbe + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:34.5392008Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/AD64FC70272E6A56 + operationId: AD64FC70272E6A56 + properties: + duration: PT2.7179532S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: db156146-6324-4926-8a62-ec6bb086949c + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/0336e1d3-7a87-462b-b6db-342b63f7802c + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/c350d091-29f0-54e5-9aef-df24fbcfa1ab + resourceName: c350d091-29f0-54e5-9aef-df24fbcfa1ab + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:34.2732418Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/F45155D44E1CC481 + operationId: F45155D44E1CC481 + properties: + duration: PT2.1918178S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: 8d4b3779-226c-4311-b7ca-a087092bf84d + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/fc0c873f-45e9-4d0d-a7d1-585aab30c6ed + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/02032dbd-f9c9-5e5f-8f34-6c2b9fe8498f + resourceName: 02032dbd-f9c9-5e5f-8f34-6c2b9fe8498f + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:34.7993772Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/81D4941AB2662A68 + operationId: 81D4941AB2662A68 + properties: + duration: PT2.3413558S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + properties: + principalId: fc8af9fe-a77d-4d0c-bcb9-32e301374cf8 + principalType: ServicePrincipal + roleDefinitionId: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/providers/Microsoft.Authorization/roleDefinitions/0d7aedc0-15fd-4a67-a412-efad370c947e + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/3b27c460-3ec5-56b0-a45e-9e5d4dc005a0 + resourceName: 3b27c460-3ec5-56b0-a45e-9e5d4dc005a0 + resourceType: Microsoft.Authorization/roleAssignments + timestamp: "2025-08-07T08:12:34.5873395Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/B17DD0F7FB4ED14B + operationId: B17DD0F7FB4ED14B + properties: + duration: PT2.4225374S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:12:32.7249076Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/189AE32F0AF00690 + operationId: 189AE32F0AF00690 + properties: + duration: PT0.1332394S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:12:34.9516995Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/2D2FED06D4B1458E + operationId: 2D2FED06D4B1458E + properties: + duration: PT2.313159S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:12:32.7249076Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/BFA02B8FF067694F + operationId: BFA02B8FF067694F + properties: + duration: PT0.0997062S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:12:34.8602365Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/01191E471CEB7ECA + operationId: 01191E471CEB7ECA + properties: + duration: PT2.1881621S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:12:32.7249076Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/722F6DB573087E96 + operationId: 722F6DB573087E96 + properties: + duration: PT2.1569065S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:12:32.7249076Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/B8FD5D1D7A811A39 + operationId: B8FD5D1D7A811A39 + properties: + duration: PT2.0944075S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:12:32.7249076Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/62F7E8416BEF25E2 + operationId: 62F7E8416BEF25E2 + properties: + duration: PT0.1086496S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:12:34.6325399Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/481C36C378E41B55 + operationId: 481C36C378E41B55 + properties: + duration: PT0.108136S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:12:34.6175206Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/EC014F10C8B43643 + operationId: EC014F10C8B43643 + properties: + duration: PT0.0913588S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:12:34.5873395Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/56B8E11649CDA7AF + operationId: 56B8E11649CDA7AF + properties: + duration: PT1.8600406S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:12:32.7249076Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/D85A8F4D8C94072B + operationId: D85A8F4D8C94072B + properties: + duration: PT1.844415S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:12:32.7249076Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/73508DAD3282EBAC + operationId: 73508DAD3282EBAC + properties: + duration: PT1.844415S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:12:32.7249076Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/DDECE8D43F35883F + operationId: DDECE8D43F35883F + properties: + duration: PT1.844415S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:12:32.7249076Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/FF3A038D6F36666B + operationId: FF3A038D6F36666B + properties: + duration: PT1.8131602S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:12:32.7249076Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/4987E4B95D21BEA2 + operationId: 4987E4B95D21BEA2 + properties: + duration: PT0.1142769S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:12:34.3769131Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/DBC90D74148F2E00 + operationId: DBC90D74148F2E00 + properties: + duration: PT0.139822S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:12:34.2732418Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/031E2707636C354C + operationId: 031E2707636C354C + properties: + duration: PT1.594406S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:12:32.7249076Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/47E129CCD15B9A46 + operationId: 47E129CCD15B9A46 + properties: + duration: PT1.5006587S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:12:32.7249076Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster/operations/D87A44340E893653 + operationId: D87A44340E893653 + properties: + duration: PT1.46941S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + statusCode: Created + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + timestamp: "2025-08-07T08:12:32.7249076Z" diff --git a/test/resourcegroups/external-auth-wqwhfs/deployment-operations-infra.yaml b/test/resourcegroups/external-auth-wqwhfs/deployment-operations-infra.yaml new file mode 100644 index 0000000000..c017b7a8ec --- /dev/null +++ b/test/resourcegroups/external-auth-wqwhfs/deployment-operations-infra.yaml @@ -0,0 +1,64 @@ +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/infra/operations/874170F7342DA028 + operationId: 874170F7342DA028 + properties: + duration: PT4.5739682S + provisioningOperation: Read + provisioningState: Succeeded + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name + resourceName: customer-vnet-name + resourceType: Microsoft.Network/virtualNetworks + timestamp: "2025-08-07T08:12:18.8396009Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/infra/operations/922338EADF68F1BD + operationId: 922338EADF68F1BD + properties: + duration: PT4.4488885S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + properties: + addressSpace: + addressPrefixes: + - 10.0.0.0/16 + subnets: + - name: customer-vnet-subnet1 + properties: + addressPrefix: 10.0.0.0/24 + networkSecurityGroup: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + tags: + persist: "true" + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name + resourceName: customer-vnet-name + resourceType: Microsoft.Network/virtualNetworks + timestamp: "2025-08-07T08:12:18.8396009Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/infra/operations/E42E2AC966BBBB1D + operationId: E42E2AC966BBBB1D + properties: + duration: PT1.5313813S + provisioningOperation: Create + provisioningState: Succeeded + request: + content: + location: uksouth + tags: + persist: "true" + statusCode: OK + targetResource: + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + resourceName: customer-nsg-name + resourceType: Microsoft.Network/networkSecurityGroups + timestamp: "2025-08-07T08:12:18.8396009Z" +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/infra/operations/08584470525480865520 + operationId: "08584470525480865520" + properties: + duration: PT4.7145221S + provisioningOperation: EvaluateDeploymentOutput + provisioningState: Succeeded + statusCode: OK + timestamp: "2025-08-07T08:12:18.8396009Z" diff --git a/test/resourcegroups/external-auth-wqwhfs/deployments.yaml b/test/resourcegroups/external-auth-wqwhfs/deployments.yaml new file mode 100644 index 0000000000..fea9549f8d --- /dev/null +++ b/test/resourcegroups/external-auth-wqwhfs/deployments.yaml @@ -0,0 +1,513 @@ +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/hcp-cluster + name: hcp-cluster + properties: + correlationId: 9ce7c50e-bffa-4830-8232-cda0f60eade2 + debugSetting: + detailLevel: RequestContent + dependencies: + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/18b1936c-6e3c-5775-b647-4a40010423db + resourceName: 18b1936c-6e3c-5775-b647-4a40010423db + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/b02470fe-e4bd-5633-ae9f-fd9ae843bdfa + resourceName: b02470fe-e4bd-5633-ae9f-fd9ae843bdfa + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/02032dbd-f9c9-5e5f-8f34-6c2b9fe8498f + resourceName: 02032dbd-f9c9-5e5f-8f34-6c2b9fe8498f + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/b5fc3652-8173-5131-b3c8-ba4650044ae7 + resourceName: b5fc3652-8173-5131-b3c8-ba4650044ae7 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/6bb2dfd1-8100-5670-8e93-3853af354e34 + resourceName: 6bb2dfd1-8100-5670-8e93-3853af354e34 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/e622172a-f9a6-5c06-b95d-f137bc046490 + resourceName: e622172a-f9a6-5c06-b95d-f137bc046490 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/d6b81e28-f752-5df7-97f6-eacddd56abbe + resourceName: d6b81e28-f752-5df7-97f6-eacddd56abbe + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/63973ca5-81b8-58c3-9f71-9ef050885df1 + resourceName: 63973ca5-81b8-58c3-9f71-9ef050885df1 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/c350d091-29f0-54e5-9aef-df24fbcfa1ab + resourceName: c350d091-29f0-54e5-9aef-df24fbcfa1ab + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/ac5405ca-059a-554c-b1d7-c86af4b8c724 + resourceName: ac5405ca-059a-554c-b1d7-c86af4b8c724 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/4b8ef890-a3d2-5010-a2a1-c70861d70c74 + resourceName: 4b8ef890-a3d2-5010-a2a1-c70861d70c74 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/b63a41b7-14c2-5003-84bf-46642ea9f9f8 + resourceName: b63a41b7-14c2-5003-84bf-46642ea9f9f8 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/b2426898-79be-5468-8339-7e43799b9353 + resourceName: b2426898-79be-5468-8339-7e43799b9353 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/02c707cf-94a4-5ba7-baff-48a3a48470fd + resourceName: 02c707cf-94a4-5ba7-baff-48a3a48470fd + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/90f18afd-a0eb-5f33-9a0e-0dc12787fda3 + resourceName: 90f18afd-a0eb-5f33-9a0e-0dc12787fda3 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/940915a9-6178-5182-9b5e-91add3304880 + resourceName: 940915a9-6178-5182-9b5e-91add3304880 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/65556f88-894f-5915-942a-e2e83ad4323b + resourceName: 65556f88-894f-5915-942a-e2e83ad4323b + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/4d3c2035-7325-56f5-9c44-0333e16cd5f8 + resourceName: 4d3c2035-7325-56f5-9c44-0333e16cd5f8 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/7fd2eae1-06b7-54c8-a996-105922b52394 + resourceName: 7fd2eae1-06b7-54c8-a996-105922b52394 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/15d782a7-cc94-5e03-ad84-e2fb7a7e94e7 + resourceName: 15d782a7-cc94-5e03-ad84-e2fb7a7e94e7 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/3b27c460-3ec5-56b0-a45e-9e5d4dc005a0 + resourceName: 3b27c460-3ec5-56b0-a45e-9e5d4dc005a0 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/d90973f3-bb15-544d-9fb6-3972d028f960 + resourceName: d90973f3-bb15-544d-9fb6-3972d028f960 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/43524674-0f12-5cfa-af40-a029ea207cd7 + resourceName: 43524674-0f12-5cfa-af40-a029ea207cd7 + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/6f4c4ae0-4e62-56cc-ad58-a9c448f1858b + resourceName: 6f4c4ae0-4e62-56cc-ad58-a9c448f1858b + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/93c951d6-035e-59a4-9c10-fc3e9e6305fc + resourceName: 93c951d6-035e-59a4-9c10-fc3e9e6305fc + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/8661c249-0119-5598-9479-7ed4fdd24cbd + resourceName: 8661c249-0119-5598-9479-7ed4fdd24cbd + resourceType: Microsoft.Authorization/roleAssignments + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/d6b81e28-f752-5df7-97f6-eacddd56abbe + resourceName: d6b81e28-f752-5df7-97f6-eacddd56abbe + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/e622172a-f9a6-5c06-b95d-f137bc046490 + resourceName: e622172a-f9a6-5c06-b95d-f137bc046490 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-control-plane-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/7fd2eae1-06b7-54c8-a996-105922b52394 + resourceName: 7fd2eae1-06b7-54c8-a996-105922b52394 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/d90973f3-bb15-544d-9fb6-3972d028f960 + resourceName: d90973f3-bb15-544d-9fb6-3972d028f960 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/3b27c460-3ec5-56b0-a45e-9e5d4dc005a0 + resourceName: 3b27c460-3ec5-56b0-a45e-9e5d4dc005a0 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/15d782a7-cc94-5e03-ad84-e2fb7a7e94e7 + resourceName: 15d782a7-cc94-5e03-ad84-e2fb7a7e94e7 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-dp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-dp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/43524674-0f12-5cfa-af40-a029ea207cd7 + resourceName: 43524674-0f12-5cfa-af40-a029ea207cd7 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/b2426898-79be-5468-8339-7e43799b9353 + resourceName: b2426898-79be-5468-8339-7e43799b9353 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/b63a41b7-14c2-5003-84bf-46642ea9f9f8 + resourceName: b63a41b7-14c2-5003-84bf-46642ea9f9f8 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/18b1936c-6e3c-5775-b647-4a40010423db + resourceName: 18b1936c-6e3c-5775-b647-4a40010423db + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/b5fc3652-8173-5131-b3c8-ba4650044ae7 + resourceName: b5fc3652-8173-5131-b3c8-ba4650044ae7 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/02032dbd-f9c9-5e5f-8f34-6c2b9fe8498f + resourceName: 02032dbd-f9c9-5e5f-8f34-6c2b9fe8498f + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-image-registry-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceName: external-auth-cluster-cp-ingress-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/c350d091-29f0-54e5-9aef-df24fbcfa1ab + resourceName: c350d091-29f0-54e5-9aef-df24fbcfa1ab + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/940915a9-6178-5182-9b5e-91add3304880 + resourceName: 940915a9-6178-5182-9b5e-91add3304880 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/65556f88-894f-5915-942a-e2e83ad4323b + resourceName: 65556f88-894f-5915-942a-e2e83ad4323b + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceName: external-auth-cluster-service-managed-identity-b74xwa6w5ofbi + resourceType: Microsoft.ManagedIdentity/userAssignedIdentities + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-controller-manager-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/63973ca5-81b8-58c3-9f71-9ef050885df1 + resourceName: 63973ca5-81b8-58c3-9f71-9ef050885df1 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cloud-network-config-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/4d3c2035-7325-56f5-9c44-0333e16cd5f8 + resourceName: 4d3c2035-7325-56f5-9c44-0333e16cd5f8 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-cluster-api-azure-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/b02470fe-e4bd-5633-ae9f-fd9ae843bdfa + resourceName: b02470fe-e4bd-5633-ae9f-fd9ae843bdfa + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-control-plane-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/6bb2dfd1-8100-5670-8e93-3853af354e34 + resourceName: 6bb2dfd1-8100-5670-8e93-3853af354e34 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-disk-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/4b8ef890-a3d2-5010-a2a1-c70861d70c74 + resourceName: 4b8ef890-a3d2-5010-a2a1-c70861d70c74 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-file-csi-driver-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/02c707cf-94a4-5ba7-baff-48a3a48470fd + resourceName: 02c707cf-94a4-5ba7-baff-48a3a48470fd + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-image-registry-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/90f18afd-a0eb-5f33-9a0e-0dc12787fda3 + resourceName: 90f18afd-a0eb-5f33-9a0e-0dc12787fda3 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.ManagedIdentity/userAssignedIdentities/external-auth-cluster-cp-ingress-b74xwa6w5ofbi/providers/Microsoft.Authorization/roleAssignments/ac5405ca-059a-554c-b1d7-c86af4b8c724 + resourceName: ac5405ca-059a-554c-b1d7-c86af4b8c724 + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name/providers/Microsoft.Authorization/roleAssignments/8661c249-0119-5598-9479-7ed4fdd24cbd + resourceName: 8661c249-0119-5598-9479-7ed4fdd24cbd + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1/providers/Microsoft.Authorization/roleAssignments/93c951d6-035e-59a4-9c10-fc3e9e6305fc + resourceName: 93c951d6-035e-59a4-9c10-fc3e9e6305fc + resourceType: Microsoft.Authorization/roleAssignments + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/providers/Microsoft.Authorization/roleAssignments/6f4c4ae0-4e62-56cc-ad58-a9c448f1858b + resourceName: 6f4c4ae0-4e62-56cc-ad58-a9c448f1858b + resourceType: Microsoft.Authorization/roleAssignments + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.RedHatOpenShift/hcpOpenShiftClusters/external-auth-cluster + resourceName: external-auth-cluster + resourceType: Microsoft.RedHatOpenShift/hcpOpenShiftClusters + duration: PT8.0210686S + error: + code: DeploymentFailed + details: + - code: InvalidSubscriptionState + message: Request is not allowed in unregistered subscription '1d3378d3-5a3f-4712-85a1-2485495dfc4b'. + message: At least one resource deployment operation failed. Please list deployment + operations for details. Please see https://aka.ms/arm-deployment-operations + for usage details. + mode: Incremental + parameters: + clusterName: + type: String + value: external-auth-cluster + managedResourceGroupName: + type: String + value: external-auth-wqwhfs--managed + nsgName: + type: String + value: customer-nsg-name + subnetName: + type: String + value: customer-vnet-subnet1 + vnetName: + type: String + value: customer-vnet-name + providers: + - namespace: Microsoft.ManagedIdentity + resourceTypes: + - locations: + - uksouth + resourceType: userAssignedIdentities + - namespace: Microsoft.Authorization + resourceTypes: + - locations: + - null + resourceType: roleAssignments + - namespace: Microsoft.RedHatOpenShift + resourceTypes: + - locations: + - uksouth + resourceType: hcpOpenShiftClusters + provisioningState: Failed + templateHash: "7176892101941509152" + timestamp: "2025-08-07T08:12:38.6630733Z" + type: Microsoft.Resources/deployments +- id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Resources/deployments/infra + name: infra + properties: + correlationId: fdd97b4b-28a7-4b2f-8cba-e6ccaa6e08bb + debugSetting: + detailLevel: RequestContent + dependencies: + - dependsOn: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + resourceName: customer-nsg-name + resourceType: Microsoft.Network/networkSecurityGroups + id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name + resourceName: customer-vnet-name + resourceType: Microsoft.Network/virtualNetworks + duration: PT6.2089399S + mode: Incremental + outputResources: + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + - id: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name + outputs: + networkSecurityGroupId: + type: String + value: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/networkSecurityGroups/customer-nsg-name + subnetId: + type: String + value: /subscriptions/1d3378d3-5a3f-4712-85a1-2485495dfc4b/resourceGroups/external-auth-wqwhfs/providers/Microsoft.Network/virtualNetworks/customer-vnet-name/subnets/customer-vnet-subnet1 + parameters: + customerNsgName: + type: String + value: customer-nsg-name + customerVnetName: + type: String + value: customer-vnet-name + customerVnetSubnetName: + type: String + value: customer-vnet-subnet1 + providers: + - namespace: Microsoft.Network + resourceTypes: + - locations: + - uksouth + resourceType: networkSecurityGroups + - locations: + - uksouth + resourceType: virtualNetworks + provisioningState: Succeeded + templateHash: "5901671209430640079" + timestamp: "2025-08-07T08:12:23.5853704Z" + type: Microsoft.Resources/deployments diff --git a/test/util/framework/per_invocation_framework.go b/test/util/framework/per_invocation_framework.go index 784a011be8..0b16f62af6 100644 --- a/test/util/framework/per_invocation_framework.go +++ b/test/util/framework/per_invocation_framework.go @@ -72,6 +72,18 @@ func invocationContext() *perBinaryInvocationTestContext { return invocationContextInstance } +func NewRootInvocationContext() *perBinaryInvocationTestContext { + return invocationContext() +} + +func (tc *perBinaryInvocationTestContext) TestUserClientIDValue() string { + return tc.testUserClientID +} + +func (tc *perBinaryInvocationTestContext) TenantIDValue() string { + return tc.tenantID +} + func (tc *perBinaryInvocationTestContext) getAzureCredentials() (azcore.TokenCredential, error) { tc.contextLock.RLock() if tc.azureCredentials != nil { @@ -87,16 +99,13 @@ func (tc *perBinaryInvocationTestContext) getAzureCredentials() (azcore.TokenCre return tc.azureCredentials, nil } - // if we find a desire to use the zero-dep e2e testing everywhere, we can extend this credential creation to include - // other options for non-Azure endpoints. It's worth remembering that the value-add using the same library isn't in the - // ten lines of creation, it's in using a common credential library for golang compatibility. azureCredentials, err := azidentity.NewDefaultAzureCredential(nil) if err != nil { return nil, fmt.Errorf("failed building environment credential: %w", err) } tc.azureCredentials = azureCredentials - return tc.azureCredentials, nil + return azureCredentials, nil } func (tc *perBinaryInvocationTestContext) getSubscriptionID(ctx context.Context, subscriptionClient *armsubscriptions.Client) (string, error) { @@ -128,11 +137,9 @@ func (tc *perBinaryInvocationTestContext) Location() string { // artifactDir returns the value of ARTIFACT_DIR environment variable, which is spot to save info in CI func artifactDir() string { - // can't use gomega in this method since it is used outside of It() return os.Getenv("ARTIFACT_DIR") } - -// sharedDir is SHARED_DIR. It is a spot to store *files only* that can be shared between ci-operator steps. +// sharedDir is SHARD_DIR. it is spot to store *file only* that can be sahred between ci-operators steps. // We can use this for anything, but currently we have a backup cleanup and collection scripts that use files // here to cleanup and debug testing resources. func sharedDir() string { @@ -141,32 +148,23 @@ func sharedDir() string { } // subscriptionName returns the value of CUSTOMER_SUBSCRIPTION environment variable + func subscriptionName() string { - // can't use gomega in this method since it is used outside of It() return os.Getenv("CUSTOMER_SUBSCRIPTION") } -// location returns the Azure location to use, like "uksouth" func location() string { - // can't use gomega in this method since it is used outside of It() return os.Getenv("LOCATION") } -// testUserClientID returns the value of AZURE_CLIENT_ID environment variable func testUserClientID() string { - // can't use gomega in this method since it is used outside of It() return os.Getenv("AZURE_CLIENT_ID") } -// tenantID returns the value of AZURE_TENANT_ID environment variable func tenantID() string { - // can't use gomega in this method since it is used outside of It() return os.Getenv("AZURE_TENANT_ID") } -// Must is a generic function that takes a value of type T and an error. -// If the error is not nil, it panics with the error. -// Otherwise, it returns the value of type T. func Must[T any](v T, err error) T { if err != nil { panic(err) @@ -174,21 +172,15 @@ func Must[T any](v T, err error) T { return v } -// SuffixName returns a name given a base ("deployment-5") and a suffix ("deploy") -// It will first attempt to join them with a dash. If the resulting name is longer -// than a valid pod name, it will truncate the base name and add an 8-character hash -// of the [base]-[suffix] string. func SuffixName(base, suffix string, maxLen int) string { name := fmt.Sprintf("%s-%s", base, suffix) if len(name) > maxLen { prefix := base[0:min(len(base), maxLen-9)] - // Calculate hash on initial base-suffix string name = fmt.Sprintf("%s-%s", prefix, hash(name)) } return name } -// min returns the lesser of its 2 inputs func min(a, b int) int { if b < a { return b @@ -196,28 +188,18 @@ func min(a, b int) int { return a } -// hash calculates the hexadecimal representation (8-chars) -// of the hash of the passed in string using the FNV-a algorithm func hash(s string) string { hash := fnv.New32a() hash.Write([]byte(s)) - intHash := hash.Sum32() - result := fmt.Sprintf("%08x", intHash) - return result + return fmt.Sprintf("%08x", hash.Sum32()) } -// AnnotatedLocation can be used to provide more informative source code -// locations by passing the result as additional parameter to a -// BeforeEach/AfterEach/DeferCleanup/It/etc. func AnnotatedLocation(annotation string) types.CodeLocation { return AnnotatedLocationWithOffset(annotation, 1) } -// AnnotatedLocationWithOffset skips additional call stack levels. With 0 as offset -// it is identical to [AnnotatedLocation]. func AnnotatedLocationWithOffset(annotation string, offset int) types.CodeLocation { codeLocation := types.NewCodeLocation(offset + 1) codeLocation.FileName = path.Base(codeLocation.FileName) - codeLocation = types.NewCustomCodeLocation(annotation + " | " + codeLocation.String()) - return codeLocation + return types.NewCustomCodeLocation(annotation + " | " + codeLocation.String()) } diff --git a/test/util/labels/labels.go b/test/util/labels/labels.go index 18207b80ad..9037bff365 100644 --- a/test/util/labels/labels.go +++ b/test/util/labels/labels.go @@ -47,3 +47,9 @@ var ( RequireNothing = ginkgo.Label("PreLaunchSetup:None") RequireHappyPathInfra = ginkgo.Label("PreLaunchSetup:HappyPathInfra") ) + +// Custom labels +var ( + Integration = ginkgo.Label("Integration") + ExternalAuth = ginkgo.Label("ExternalAuth") +)