Sha256: dff24450c4d9d65eaf3216262bd008c243d01ef4a08b735d2b3afb693e33494d
Contents?: true
Size: 483 Bytes
Versions: 50
Compression:
Stored size: 483 Bytes
Contents
### exist ```ruby describe autoscaling_group('my-auto-scaling-group') do it { should exist } end ``` ### have_ec2 ```ruby describe autoscaling_group('my-auto-scaling-group') do it { should have_ec2('my-ec2') } end ``` ### have_elb ```ruby describe autoscaling_group('my-auto-scaling-group') do it { should have_elb('my-elb') } end ``` ### have_tag ```ruby describe autoscaling_group('my-auto-scaling-group') do it { should have_tag('Name').value('my-group') } end ```
Version data entries
50 entries across 50 versions & 1 rubygems