54 lines
1.4 KiB
HCL
54 lines
1.4 KiB
HCL
resource "towerops_site" "lowry_crossing" {
|
|
name = "Lowry Crossing"
|
|
latitude = 33.160866
|
|
longitude = -96.540467
|
|
}
|
|
|
|
resource "towerops_device" "lowry_crossing" {
|
|
site_id = towerops_site.lowry_crossing.id
|
|
name = "LowryCrossing"
|
|
ip_address = "10.254.254.109"
|
|
snmp_enabled = true
|
|
device_role = "router"
|
|
}
|
|
|
|
resource "towerops_device" "lowry_crossing_omni" {
|
|
site_id = towerops_site.lowry_crossing.id
|
|
ip_address = "10.10.159.10"
|
|
name = "Lowry_Crossing_Omni"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
}
|
|
|
|
resource "towerops_device" "lowry_crossing_ne" {
|
|
site_id = towerops_site.lowry_crossing.id
|
|
ip_address = "10.10.159.11"
|
|
name = "Lowry Crossing NE"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
}
|
|
|
|
resource "towerops_device" "lowry_crossing_n" {
|
|
site_id = towerops_site.lowry_crossing.id
|
|
ip_address = "10.10.159.12"
|
|
name = "Lowry Crossing N"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
}
|
|
|
|
resource "towerops_device" "lowry_crossing_nw" {
|
|
site_id = towerops_site.lowry_crossing.id
|
|
ip_address = "10.10.159.13"
|
|
name = "lowry nw"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
}
|
|
|
|
resource "towerops_device" "lowry_crossing_to_new_hope" {
|
|
site_id = towerops_site.lowry_crossing.id
|
|
name = "Lowry Crossing to New Hope"
|
|
ip_address = "10.250.1.106"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
device_role = "backhaul"
|
|
}
|