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

Version Path
awspec-0.26.1 doc/_resource_types/elb.md
awspec-0.26.0 doc/_resource_types/elb.md
awspec-0.25.3 doc/_resource_types/elb.md
awspec-0.25.2 doc/_resource_types/elb.md
awspec-0.25.1 doc/_resource_types/elb.md
awspec-0.25.0 doc/_resource_types/elb.md
awspec-0.24.2 doc/_resource_types/elb.md
awspec-0.24.1 doc/_resource_types/elb.md
awspec-0.24.0 doc/_resource_types/elb.md
awspec-0.23.0 doc/_resource_types/elb.md