Sha256: 2a9fb831533d5de91f6af4cd62bd4ca5dca13a257040eaa8066b6d79fd18ff13
Contents?: true
Size: 797 Bytes
Versions: 101
Compression:
Stored size: 797 Bytes
Contents
### exist ```ruby describe autoscaling_group('my-auto-scaling-group') do it { should exist } end ``` ### have_alb_target_group ```ruby describe autoscaling_group('my-auto-scaling-group') do it { should have_alb_target_group('my-alb-target-group') } 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_launch_configuration ```ruby describe autoscaling_group('my-auto-scaling-group') do it { should have_launch_configuration('my-lc') } end ``` ### have_tag ```ruby describe autoscaling_group('my-auto-scaling-group') do it { should have_tag('Name').value('my-group') } end ```
Version data entries
101 entries across 101 versions & 4 rubygems
Version | Path |
---|---|
awspec-0.85.0 | doc/_resource_types/autoscaling_group.md |