Sha256: 4f9828ed0ffd188b780c65de10b7c57df2c142d31daf04a3c19397fdf57d8be8
Contents?: true
Size: 745 Bytes
Versions: 49
Compression:
Stored size: 745 Bytes
Contents
### exist ```ruby describe wafregional_web_acl('my-wafregional-web-acl') do it { should exist } its(:default_action) { should eq 'BLOCK' } it { should have_rule('my-wafregional-web-acl-allowed-ips') } it { should have_rule('my-wafregional-web-acl-allowed-ips').order(2).action('BLOCK') } end ``` ### have_rule ```ruby describe wafregional_web_acl('my-wafregional-web-acl') do it { should have_rule('my-wafregional-web-acl-allowed-ips') } it { should have_rule('my-wafregional-web-acl-allowed-ips').order(2).action('BLOCK') } end ``` ### its(:default_action), its(:web_acl_id), its(:name), its(:metric_name) ```ruby describe wafregional_web_acl('my-wafregional-web-acl') do its(:default_action) { should eq 'BLOCK' } end ```
Version data entries
49 entries across 49 versions & 3 rubygems