29 lines
677 B
HCL
29 lines
677 B
HCL
resource "towerops_site" "altoga" {
|
|
name = "Altoga"
|
|
latitude = 33.249399
|
|
longitude = -96.507824
|
|
}
|
|
|
|
resource "towerops_device" "altoga_sw" {
|
|
site_id = towerops_site.altoga.id
|
|
name = "Altoga SW"
|
|
ip_address = "10.10.95.20"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
}
|
|
|
|
resource "towerops_device" "altoga_e" {
|
|
site_id = towerops_site.altoga.id
|
|
name = "Altoga East"
|
|
ip_address = "10.10.95.21"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
}
|
|
|
|
resource "towerops_device" "altoga_n" {
|
|
site_id = towerops_site.altoga.id
|
|
name = "Altoga North"
|
|
ip_address = "10.10.95.22"
|
|
snmp_enabled = true
|
|
snmp_version = "1"
|
|
}
|