Sha256: 3c13c96c8c3c669faca6059689312f24b89f556904729db07ff8572b483f617c
Contents?: true
Size: 777 Bytes
Versions: 130
Compression:
Stored size: 777 Bytes
Contents
### exist ```ruby describe elb('my-elb') do it { should exist } end ``` ### have_ec2 ```ruby describe elb('my-elb') do it { should have_ec2('my-ec2') } end ``` ### have_listener http://docs.aws.amazon.com/en_us/ElasticLoadBalancing/latest/DeveloperGuide/elb-listener-config.html ```ruby describe elb('my-elb') do it { should have_listener(protocol: 'HTTPS', port: 443, instance_protocol: 'HTTP', instance_port: 80) } end ``` ### have_security_group ```ruby describe elb('my-elb') do it { should have_security_group('my-lb-security-group-tag-name') } end ``` ### have_subnet ```ruby describe elb('my-elb') do it { should have_subnet('my-subnet') } end ``` ### belong_to_vpc ```ruby describe elb('my-elb') do it { should belong_to_vpc('my-vpc') } end ```
Version data entries
130 entries across 130 versions & 2 rubygems