aws_dx_connection_association

Associates a Direct Connect Connection with a LAG.

Example Usage

resource "aws_dx_connection" "example" {
  name = "example"
  bandwidth = "1Gbps"
  location = "EqSe2"
}

resource "aws_dx_lag" "example" {
  name = "example"
  connections_bandwidth = "1Gbps"
  location = "EqSe2"
  number_of_connections = 1
}

resource "aws_dx_connection_association" "example" {
  connection_id = "${aws_dx_connection.example.id}"
  lag_id = "${aws_dx_lag.example.id}"
}

Argument Reference

The following arguments are supported:

  • connection_id - (Required) The ID of the connection.
  • lag_id - (Required) The ID of the LAG with which to associate the connection.

© 2018 HashiCorp
Licensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/aws/r/dx_connection_association.html