Sha256: fe654319cb8d0680d0a79ceeaeeec228a7593dd756ac9bea7b3a48e9cc64839c
Contents?: true
Size: 944 Bytes
Versions: 18
Compression:
Stored size: 944 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 ``` ### have_tag ```ruby describe elb('my-elb') do it { should have_tag('Name').value('my-elb') } it { should have_tag('my-tag-key').value('my-tag-value') } end ```
Version data entries
18 entries across 18 versions & 1 rubygems