Skip to content

Commit 0844b8c

Browse files
authored
fix: Updating Virtual device to service profile connections type in fabric connection resource doc (#672)
- Updated connection type in following examples in Fabric Connection Resources Doc: - vd2azure connection - vd2azure redundant connection
2 parents 2c10680 + c01b057 commit 0844b8c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/resources/equinix_fabric_connection.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ Virtual Device to Azure Connection:
381381
```hcl
382382
resource "equinix_fabric_connection" "vd2azure" {
383383
name = "ConnectionName"
384-
type = "EVPLAN_VC"
384+
type = "EVPL_VC"
385385
notifications {
386386
type = "ALL"
387387
@@ -424,7 +424,7 @@ Virtual Device to Azure Redundant Connection:
424424
```hcl
425425
resource "equinix_fabric_connection" "vd2azure_primary" {
426426
name = "ConnectionName"
427-
type = "EVPLAN_VC"
427+
type = "EVPL_VC"
428428
redundancy { priority = "PRIMARY" }
429429
notifications {
430430
type = "ALL"
@@ -465,7 +465,7 @@ resource "equinix_fabric_connection" "vd2azure_primary" {
465465
466466
resource "equinix_fabric_connection" "vd2azure_secondary" {
467467
name = "ConnectionName"
468-
type = "EVPLAN_VC"
468+
type = "EVPL_VC"
469469
redundancy {
470470
priority = "SECONDARY"
471471
group = one(equinix_fabric_connection.vd2azure_primary.redundancy).group

0 commit comments

Comments
 (0)