Sha256: 79475ddbe75ebc126f3fcb0e3926bafa456466b336ba7fc5b2c82cf66c9897c5
Contents?: true
Size: 665 Bytes
Versions: 102
Compression:
Stored size: 665 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
102 entries across 102 versions & 4 rubygems