63 lines
1.5 KiB
HCL
63 lines
1.5 KiB
HCL
resource "towerops_site" "new_hope" {
|
|
name = "New Hope"
|
|
latitude = 33.207279
|
|
longitude = -96.537762
|
|
}
|
|
|
|
resource "towerops_device" "new_hope" {
|
|
site_id = towerops_site.new_hope.id
|
|
name = "New Hope"
|
|
ip_address = "10.254.254.108"
|
|
snmp_enabled = true
|
|
device_role = "router"
|
|
}
|
|
|
|
resource "towerops_device" "new_hope_se" {
|
|
site_id = towerops_site.new_hope.id
|
|
name = "New Hope SE"
|
|
ip_address = "10.10.143.11"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
}
|
|
|
|
resource "towerops_device" "new_hope_ne" {
|
|
site_id = towerops_site.new_hope.id
|
|
name = "New Hope NE"
|
|
ip_address = "10.10.143.12"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
}
|
|
|
|
resource "towerops_device" "new_hope_nw" {
|
|
site_id = towerops_site.new_hope.id
|
|
name = "new hope nw"
|
|
ip_address = "10.10.143.13"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
}
|
|
|
|
resource "towerops_device" "new_hope_sw" {
|
|
site_id = towerops_site.new_hope.id
|
|
name = "new hope sw"
|
|
ip_address = "10.10.143.14"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
}
|
|
|
|
resource "towerops_device" "new_hope_to_core_af11x" {
|
|
site_id = towerops_site.new_hope.id
|
|
name = "New Hope to Core af11x"
|
|
ip_address = "10.250.1.58"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
device_role = "backhaul"
|
|
}
|
|
|
|
resource "towerops_device" "new_hope_to_lowry_crossing" {
|
|
site_id = towerops_site.new_hope.id
|
|
name = "new hope to lowry crossing"
|
|
ip_address = "10.250.1.109"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
device_role = "backhaul"
|
|
}
|