Skip to content

Instantly share code, notes, and snippets.

@adarobin
Created February 13, 2020 21:24
Show Gist options
  • Save adarobin/8a84215a0121a39bcf4ded2055f80781 to your computer and use it in GitHub Desktop.
Save adarobin/8a84215a0121a39bcf4ded2055f80781 to your computer and use it in GitHub Desktop.
module "vmware-syn-eth-ligs-unstacked" {
source = "path/to/synergy.tf"
logical_interconnect_type = "Virtual Connect SE 40Gb F8 Module for Synergy"
logical_interconnect_link_type = "Synergy 20Gb Interconnect Link Module"
a_side_primary_enclosure = 1
b_side_primary_enclosure = 2
lig_name_prefix = "vmware"
uplink_port_nums = [62,63,64,65,67,68,69,70]
snmp_community_string = "foo"
network_uris = [
"${module.networks.ethernet_networks["foo"]}",
"${module.networks.ethernet_networks["bar"]}",
]
}
module "vmware-eth-ligs-unstacked" {
source = "path/to/synergy.tf"
logical_interconnect_type = "Virtual Connect SE 40Gb F8 Module for Synergy"
logical_interconnect_link_type = "Synergy 20Gb Interconnect Link Module"
a_side_primary_enclosure = 1
b_side_primary_enclosure = 2
lig_name_prefix = "vmware"
uplink_port_nums = [62,63,64,65,67,68,69,70]
snmp_community_string = "foo"
network_uris = [
"${module.networks.ethernet_networks["foo"]}",
"${module.networks.ethernet_networks["bar"]}",
]
}
module "miserver-20_40-eth-ligs-unstacked" {
source = "path/to/c7000.tf"
logical_interconnect_type = "HP VC FlexFabric-20/40 F8 Module"
lig_name_prefix = "vmware-20_40"
uplink_port_nums = [17,18,19,20,21,22,23,24]
snmp_community_string = "foo"
network_uris = [
"${module.networks.ethernet_networks["foo"]}",
"${module.networks.ethernet_networks["bar"]}",
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment