Sha256: 665e3a6d82894ecf48ff17d5e6601587417241e7e3dc80e0de43bb26cfb493be
Contents?: true
Size: 523 Bytes
Versions: 12
Compression:
Stored size: 523 Bytes
Contents
### its(:inbound), its(:outbound) ```ruby describe network_acl('my-network-acl') do it { should exist } it { should belong_to_vpc('my-vpc') } it { should have_subnet('my-subnet') } its(:inbound) { should be_allowed(80).protocol('tcp').source('123.0.456.789/32') } its(:inbound) { should be_denied.rule_number('*').source('0.0.0.0/0') } its(:outbound) { should be_allowed.protocol('ALL').source('0.0.0.0/0') } its(:inbound_entries_count) { should eq 3 } its(:outbound_entries_count) { should eq 2 } end ```
Version data entries
12 entries across 12 versions & 1 rubygems