Manages a Traffic Manager Profile to which multiple endpoints can be attached.
resource "random_id" "server" {
  keepers = {
    azi_id = 1
  }
  byte_length = 8
}
resource "azurerm_resource_group" "test" {
  name     = "trafficmanagerProfile"
  location = "West US"
}
resource "azurerm_traffic_manager_profile" "test" {
  name                   = "${random_id.server.hex}"
  resource_group_name    = "${azurerm_resource_group.test.name}"
  traffic_routing_method = "Weighted"
  dns_config {
    relative_name = "${random_id.server.hex}"
    ttl           = 100
  }
  monitor_config {
    protocol = "http"
    port     = 80
    path     = "/"
  }
  tags {
    environment = "Production"
  }
}
The following arguments are supported:
name - (Required) The name of the virtual network. Changing this forces a new resource to be created.
resource_group_name - (Required) The name of the resource group in which to create the virtual network.
profile_status - (Optional) The status of the profile, can be set to either Enabled or Disabled. Defaults to Enabled.
traffic_routing_method - (Required) Specifies the algorithm used to route traffic, possible values are:
Geographic - Traffic is routed based on Geographic regions specified in the Endpoint. Performance - Traffic is routed via the User's closest Endpoint Weighted - Traffic is spread across Endpoints proportional to their weight value. Priority - Traffic is routed to the Endpoint with the lowest priority value. dns_config - (Required) This block specifies the DNS configuration of the Profile, it supports the fields documented below.
monitor_config - (Required) This block specifies the Endpoint monitoring configuration for the Profile, it supports the fields documented below.
tags - (Optional) A mapping of tags to assign to the resource.
The dns_config block supports:
relative_name - (Required) The relative domain name, this is combined with the domain name used by Traffic Manager to form the FQDN which is exported as documented below. Changing this forces a new resource to be created.
ttl - (Required) The TTL value of the Profile used by Local DNS resolvers and clients.
The monitor_config block supports:
protocol - (Required) The protocol used by the monitoring checks, supported values are HTTP, HTTPS and TCP.
port - (Required) The port number used by the monitoring checks.
path - (Optional) The path used by the monitoring checks. Required when protocol is set to HTTP or HTTPS - cannot be set when protocol is set to TCP.
The following attributes are exported:
The Traffic Manager is created with the location global.
Traffic Manager Profiles can be imported using the resource id, e.g.
terraform import azurerm_traffic_manager_profile.testProfile /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/trafficManagerProfiles/mytrafficmanagerprofile1
    © 2018 HashiCorpLicensed under the MPL 2.0 License.
    https://www.terraform.io/docs/providers/azurerm/r/traffic_manager_profile.html