I have resolved it like this . But I don't know if...
# typescript
l
I have resolved it like this . But I don't know if this is the best way to do it
Copy code
if(ssh_rule){
            ssh_rule.map(item => { 
                item.securityGroupRule.cidrBlocks.apply( (i) => {
                    expect(i).not.contain("0.0.0.0/0")
                })
             })
     }