Sha256: e889b51b53e282122e156ea7dd8d13dc4f1c99fd98096093bbae89814f7c5aa6
Contents?: true
Size: 741 Bytes
Versions: 85
Compression:
Stored size: 741 Bytes
Contents
### exist ```ruby describe nlb('my-nlb') do it { should exist } end ``` ### be_active, be_provisioning, be_failed ```ruby describe nlb('my-nlb') do it { should be_active } end ``` ### have_security_group Note that NLBs never have security groups. The have_security_group() function always returns false. See https://forums.aws.amazon.com/thread.jspa?threadID=263245 for discussion about the security-group-less-ness of NLBs. ```ruby describe nlb('my-nlb') do it { should_not have_security_group('sg-1a2b3cd4') } end ``` ### have_subnet ```ruby describe nlb('my-nlb') do it { should have_subnet('subnet-1234a567') } end ``` ### belong_to_vpc ```ruby describe nlb('my-nlb') do it { should belong_to_vpc('my-vpc') } end ```
Version data entries
85 entries across 85 versions & 3 rubygems