Re: Infoblox & ServiceNow Security Incident Integration Templates, Deployment Guide & Demo V
New Member
Posts: 2
Registered: ‎06-10-2023
New Member
Posts: 2

Are trying to use the Infoblox's SNOW application or DDI Activity pack?

I am using snow application and we have do some configuration to connect to infoblox to get ip address. 

I am trying get ip address from infoblox using snow. snow app will connect to infoblox and get the ip or resevered the ip for the server to be built. 

 

Per error description looks like you don't have "Default" network view,  - Correct

This is the script

var connection = fd_data._2__for_each.item.u_infoblox_connection.sys_id;

var name = fd_data._2__for_each.item.u_infoblox_connection.name.toString().toLowerCase();

if(connection=='72e79b9edb64241086fcd1c2ca961930' || name.contains("gvl") || name.contains("greenville")){

return true;

}

else{

// default: dont configure for DNS

return false;

}