Skip to content

Commit

Permalink
Fix issue with notifications and variable name in main file of port e…
Browse files Browse the repository at this point in the history
…xample (#28)
  • Loading branch information
thogarty authored Jan 30, 2024
1 parent 8339eb2 commit 255ce89
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/cloud-router-2-port-connection/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ module "cloud_router_port_connection" {
zside_ap_type = var.zside_ap_type
zside_location = var.zside_location
zside_port_name = var.zside_port_name
zside_vlan_tag = var.zside_vlan_outer_tag
zside_vlan_outer_tag = var.zside_vlan_outer_tag
}
4 changes: 2 additions & 2 deletions modules/cloud-router-connection/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ resource "equinix_fabric_connection" "primary_cloud_router_connection" {
name = var.connection_name
type = var.connection_type
notifications {
type = var.notifications_emails
type = var.notifications_type
emails = var.notifications_emails
}
additional_info = var.additional_info != [] ? var.additional_info : null
Expand Down Expand Up @@ -94,7 +94,7 @@ resource "equinix_fabric_connection" "secondary_cloud_router_connection" {
name = var.secondary_connection_name
type = var.connection_type
notifications {
type = var.notifications_emails
type = var.notifications_type
emails = var.notifications_emails
}
additional_info = var.additional_info != [] ? var.additional_info : null
Expand Down

0 comments on commit 255ce89

Please sign in to comment.