Fediversity/deployment/run/tf-netbox-store-ips/main.tf
Kiara Grouwstra 14f0770c18
add netbox
Signed-off-by: Kiara Grouwstra <kiara@procolix.eu>
2025-11-04 12:14:42 +01:00

19 lines
307 B
HCL

terraform {
required_providers {
netbox = {
source = "e-breuninger/netbox"
version = "= 5.0.0"
}
}
backend "http" {
}
}
resource "netbox_ip_range" "ips" {
start_address = var.start_address
end_address = var.end_address
}
output "id" {
value = netbox_ip_range.ips.id
}