Azure VMware (AVS) Express Route Authorization

This page shows how to write Terraform and Azure Resource Manager for VMware (AVS) Express Route Authorization and write them securely.

azurerm_vmware_express_route_authorization (Terraform)

The Express Route Authorization in VMware (AVS) can be configured in Terraform with the resource name azurerm_vmware_express_route_authorization. The following sections describe 1 example of how to use the resource and its parameters.

Example Usage from GitHub

module.tf#L14
resource "azurerm_vmware_express_route_authorization" "vwera" {
  name             = azurecaf_name.vwera.result
  private_cloud_id = var.vmware_cloud_id
}

Review your Terraform file for Azure best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

The following arguments are supported:

  • name - (Required) The name which should be used for this Express Route Vmware Authorization. Changing this forces a new Vmware Authorization to be created.

  • private_cloud_id - (Required) The ID of the Vmware Private Cloud in which to create this Express Route Vmware Authorization. Changing this forces a new Vmware Authorization to be created.

In addition to the Arguments listed above - the following Attributes are exported:

  • id - The ID of the Vmware Authorization.

  • express_route_authorization_id - The ID of the Express Route Circuit Authorization.

  • express_route_authorization_key - The key of the Express Route Circuit Authorization.

Explanation in Terraform Registry

Manages an Express Route Vmware Authorization.

Microsoft.AVS/privateClouds/authorizations (Azure Resource Manager)

The privateClouds/authorizations in Microsoft.AVS can be configured in Azure Resource Manager with the resource name Microsoft.AVS/privateClouds/authorizations. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

An example could not be found in GitHub.

Parameters

  • apiVersion required - string
  • name required - string

    Name of the ExpressRoute Circuit Authorization in the private cloud

  • type required - string

Frequently asked questions

What is Azure VMware (AVS) Express Route Authorization?

Azure VMware (AVS) Express Route Authorization is a resource for VMware (AVS) of Microsoft Azure. Settings can be wrote in Terraform.

Where can I find the example code for the Azure VMware (AVS) Express Route Authorization?

For Terraform, the aztfmod/terraform-azurerm-caf source code example is useful. See the Terraform Example section for further details.