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

Version Path
awspec-1.12.1 doc/_resource_types/elb.md
awspec-1.12.0 doc/_resource_types/elb.md
awspec-1.11.1 doc/_resource_types/elb.md
awspec-1.11.0 doc/_resource_types/elb.md
awspec-1.10.0 doc/_resource_types/elb.md
awspec-1.9.0 doc/_resource_types/elb.md
awspec-1.8.0 doc/_resource_types/elb.md
awspec-1.7.0 doc/_resource_types/elb.md
awspec-1.6.1 doc/_resource_types/elb.md
awspec-1.6.0 doc/_resource_types/elb.md
awspec-1.5.4 doc/_resource_types/elb.md
awspec-1.5.3 doc/_resource_types/elb.md
awspec-1.5.2 doc/_resource_types/elb.md
awspec-1.5.1 doc/_resource_types/elb.md
awspec-1.5.0 doc/_resource_types/elb.md
awspec-1.4.3 doc/_resource_types/elb.md
awspec-1.4.2 doc/_resource_types/elb.md
awspec-1.4.1 doc/_resource_types/elb.md