blob: c5f3dd251a25fef9d6198f043180ed24851ddc27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package cell.consistency
import rego.v1
import data.cell.consistency.topology
default allow = false
# Rule to allow if PCI is within range 1-3000
allow_if_pci_in_range if {
input.PCI >= data.node.cell.consistency.minPCI
input.PCI <= data.node.cell.consistency.maxPCI
}
# Main rule to determine the final decision
allow if{
topology.check_cell_consistency
allow_if_pci_in_range
}
|