From 7d4ee16d6b7444c0a82df71bac4ece635bfef65a Mon Sep 17 00:00:00 2001 From: Aditya Narayanaswamy Date: Thu, 15 Jan 2026 10:35:39 -0500 Subject: [PATCH] azure: Revert storage account API version for client Reverting the API version for storage account in the call to check if exists as it's causing an issue with the boot diagnostics. --- pkg/asset/installconfig/azure/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/asset/installconfig/azure/client.go b/pkg/asset/installconfig/azure/client.go index e1376195283..2443d87a486 100644 --- a/pkg/asset/installconfig/azure/client.go +++ b/pkg/asset/installconfig/azure/client.go @@ -446,7 +446,7 @@ func (c *Client) CheckIfExistsStorageAccount(ctx context.Context, resourceGroup, accountClientOptions := arm.ClientOptions{ ClientOptions: policy.ClientOptions{ // NOTE: the api version must support AzureStack - APIVersion: APIVersion, + APIVersion: "2019-04-01", Cloud: c.ssn.CloudConfig, }, }