Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export function clientIPAndCidrTuple(
clientIp: ClientIp,
userAttributes: IAzureUserAttributes
): ITuple2> {
return Tuple2(clientIp, userAttributes.service.authorizedCIDRs);
}