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 APIM named values using terraform

I have a terraform variable as given below variable "named_values" { type = map(object({ value = string secret = bool secret_id = optional(string) identity_client_id = optional(string) })) default = { "my-named-value-1" = { value = "my-plain-text-value-1" secret = false secret_id…

VIEW QUESTION
Back To Top
Search