Sha256: 60e985057343e16a426e5c39639b92efaf5458b6e98eeb057ddf3d0a6eced544
Contents?: true
Size: 663 Bytes
Versions: 56
Compression:
Stored size: 663 Bytes
Contents
# exist ```ruby describe waf_web_acl('my-waf-web-acl') do it { should exist } its(:default_action) { should eq 'BLOCK' } it { should have_rule('my-waf-web-acl-allowed-ips') } it { should have_rule('my-waf-web-acl-allowed-ips').order(2).action('BLOCK') } end ``` ### have_rule ```ruby describe waf_web_acl('my-waf-web-acl') do it { should have_rule('my-waf-web-acl-allowed-ips') } it { should have_rule('my-waf-web-acl-allowed-ips').order(2).action('BLOCK') } end ``` ### its(:default_action), its(:web_acl_id), its(:name), its(:metric_name) ```ruby describe waf_web_acl('my-waf-web-acl') do its(:default_action) { should eq 'BLOCK' } end ```
Version data entries
56 entries across 56 versions & 1 rubygems