90 lines
2.1 KiB
HCL
90 lines
2.1 KiB
HCL
resource "towerops_site" "climax" {
|
|
name = "Climax"
|
|
latitude = 33.187296
|
|
longitude = -96.448144
|
|
}
|
|
|
|
resource "towerops_device" "climax_router" {
|
|
site_id = towerops_site.climax.id
|
|
name = "Climax Router"
|
|
ip_address = "10.254.254.102"
|
|
snmp_enabled = true
|
|
snmp_version = "2c"
|
|
device_role = "router"
|
|
}
|
|
|
|
|
|
resource "towerops_device" "climax_to_verona" {
|
|
site_id = towerops_site.climax.id
|
|
name = "climax to verona"
|
|
ip_address = "10.250.1.29"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
device_role = "backhaul"
|
|
}
|
|
|
|
resource "towerops_device" "climax_11" {
|
|
site_id = towerops_site.climax.id
|
|
name = "Climax NW"
|
|
ip_address = "10.10.31.11"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
}
|
|
|
|
resource "towerops_device" "climax_12" {
|
|
site_id = towerops_site.climax.id
|
|
name = "Climax 5.8n NE"
|
|
ip_address = "10.10.31.12"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
}
|
|
|
|
resource "towerops_device" "climax_13" {
|
|
site_id = towerops_site.climax.id
|
|
name = "Climax South"
|
|
ip_address = "10.10.31.13"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
}
|
|
|
|
resource "towerops_device" "climax_30" {
|
|
site_id = towerops_site.climax.id
|
|
name = "Climax NW"
|
|
ip_address = "10.10.31.30"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
}
|
|
|
|
resource "towerops_device" "climax_31" {
|
|
site_id = towerops_site.climax.id
|
|
name = "climax ne"
|
|
ip_address = "10.10.31.31"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
}
|
|
|
|
resource "towerops_device" "climax_900_e" {
|
|
site_id = towerops_site.climax.id
|
|
name = "PR 900E"
|
|
ip_address = "10.10.31.40"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
}
|
|
|
|
resource "towerops_device" "climax_380_af24" {
|
|
site_id = towerops_site.climax.id
|
|
name = "Climax-380 AF24"
|
|
ip_address = "10.250.1.93"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
device_role = "backhaul"
|
|
}
|
|
|
|
resource "towerops_device" "climax_494_bh" {
|
|
site_id = towerops_site.climax.id
|
|
name = "Climax-494 BH"
|
|
ip_address = "10.250.1.69"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
device_role = "backhaul"
|
|
}
|