From 203f8740dae901a6aad2fdc13c08f560304b6b1d Mon Sep 17 00:00:00 2001 From: Adrian Stobbe Date: Fri, 8 Mar 2024 10:54:09 +0100 Subject: [PATCH] add eastus2 for azure-sev-snp --- internal/osimage/uplosi/uplosiupload.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/osimage/uplosi/uplosiupload.go b/internal/osimage/uplosi/uplosiupload.go index 2b54b2c33..93f375c61 100644 --- a/internal/osimage/uplosi/uplosiupload.go +++ b/internal/osimage/uplosi/uplosiupload.go @@ -255,7 +255,7 @@ func azureReplicationRegions(attestationVariant string) []string { case "azure-tdx": return []string{"northeurope", "westeurope", "centralus", "eastus2"} case "azure-sev-snp": - return []string{"northeurope", "westeurope", "germanywestcentral", "eastus", "westus", "southeastasia"} + return []string{"northeurope", "westeurope", "germanywestcentral", "eastus", "westus", "southeastasia", "eastus2"} } return nil }