0
0
llucycodes42
The code creates an azurerm_cdn_endpoint resource with the given name and profile_name. The azurerm_cdn_endpoint resource resides in the West US location and belongs to the test resource group.
Shortcut: tf_azurerm_cdn_endpoint
resource "azurerm_cdn_endpoint" "${MyResource}" {
name = "example-name"
profile_name = "\${azurerm_cdn_profile.test.name}"
location = "West US"
resource_group_name = "\${azurerm_resource_group.test.name}"
}