terraform-provider-equinix icon indicating copy to clipboard operation
terraform-provider-equinix copied to clipboard

Fabric L2 service profile: add support for application tags in Dot1q to QinQ translation

Open mikouaj opened this issue 4 years ago • 0 comments

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

As a service provider I would like create service profile with enhanced Dot1Q to QinQ translation, so that subscribers will not have to provide c-Tag VLAN value when creating connection. They will be able to provide application / tag name instead.

This could be achieved by adding named_tags list to equinix_ecx_l2_serviceprofile resource.

New or Affected Resource(s)

  • equinix_ecx_l2_serviceprofile

Potential Terraform Configuration

resource "equinix_ecx_l2_serviceprofile" "test" {
	name                               = "tf-tst-0oxlet"
	connection_name_label              = "Connection"
	bandwidth_threshold_notifications  = ["[email protected]", "[email protected]"]
	profile_statuschange_notifications = ["[email protected]", "[email protected]"]
	vc_statuschange_notifications      = ["[email protected]", "[email protected]"]
	tag_type                           = "NAMED"
        named_tags                         = ["app1", "app2"]
	features {
	  allow_remote_connections  = true
	  test_profile              = true
	}
	port {
	  uuid       = data.equinix_ecx_port.port1.id
	  metro_code = data.equinix_ecx_port.port1.metro_code
	}
	port {
	  uuid       = data.equinix_ecx_port.port2.id
	  metro_code = data.equinix_ecx_port.port2.metro_code
	}
	speed_band {
	  speed      = 500
	  speed_unit = "MB"
	}
	speed_band {
	  speed      = 200
	  speed_unit = "MB"
	}
 }

References

N/A

mikouaj avatar Nov 17 '20 14:11 mikouaj