skip to Main Content

Azure Traffic Manager Endpoint: The following locations specified in the geoMapping property for endpoint are not supported

I'm trying to create an Azure Traffic Manager Endpoint via Terraform, but I don't know what to put in "geo_mappings" value. This is my resource: resource "azurerm_traffic_manager_azure_endpoint" "se22condary-ae" { name = "se22condary-endpoint" profile_id = azurerm_traffic_manager_profile.tm.id target_resource_id = azurerm_linux_web_app.secondary.id geo_mappings =…

VIEW QUESTION

Azure – BlobClient#generateSasUrl automatically %-encode blob path

const { BlockBlobClient, BlobSASPermissions } = require("@azure/storage-blob"); const blobClient = new BlockBlobClient( "DefaultEndpointsProtocol=https;AccountName=yyyy;AccountKey=xxxx;EndpointSuffix=core.windows.net", "test", "hoge/huga/baz.txt" ); const expiresOn = new Date(); expiresOn.setMinutes(expiresOn.getMinutes() + 5); const h = blobClient.generateSasUrl({ expiresOn, permissions: BlobSASPermissions.from({ read: true })}).then((res) => { console.log(res); }); Executing this…

VIEW QUESTION
Back To Top
Search