Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for Expressroute Direct circuits #11155

Closed
bardahlm opened this issue Mar 30, 2021 · 7 comments
Closed

Support for Expressroute Direct circuits #11155

bardahlm opened this issue Mar 30, 2021 · 7 comments

Comments

@bardahlm
Copy link

bardahlm commented Mar 30, 2021

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

Setting up Expressroute Direct circuits require some other parameters than circuits using a service provider:

  • bandwidthInGbps, not bandwidthInMbps
  • expressRoutePort
  • portType should be false
    and possible some other parameters that need to be adjusted.

New or Affected Resource(s)

  • azurerm_express_route_circuit

Potential Terraform Configuration

resource "azurerm_express_route_circuit" "example" {
  name                  = "expressRoute1"
  resource_group_name   = azurerm_resource_group.example.name
  location              = azurerm_resource_group.example.location
  service_provider_name = "Microsoft.Network"
  peering_location      = "Silicon Valley"
  bandwidth_in_Gbps     = 1
  express_route_port_id = "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/exprtTest/providers/Microsoft.Network/expressRoutePorts/er-exampleport"

  sku {
    tier   = "Standard"
    family = "MeteredData"
  }

  tags = {
    environment = "Production"
  }
}

References

@ArielRam99
Copy link

@tombuildsstuff Is there work being done on this issue in the background?

@LaurentLesle
Copy link
Contributor

Is there a way to fast track this resource?

@LaurentLesle
Copy link
Contributor

Instead of creating a new resource why not extending the existing azurerm_express_route_circuit

@ArielRam99
Copy link

Looks like the azurerm_express_route_circuit has an arguement for express_route_port_id.

Here's the link : https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/express_route_circuit#express_route_port_id

@bardahlm
Copy link
Author

Reading the changelogs there seems to be some progress here! New features in 2.65 and 2.66:

2.65:

2.66:

@bardahlm
Copy link
Author

Solved in 2.65

@github-actions
Copy link

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Aug 16, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

4 participants