Sha256: 3cf4b9fd91f0363e65375d3decca840e9cb1467a51a0477811b12bf2403db769
Contents?: true
Size: 642 Bytes
Versions: 1
Compression:
Stored size: 642 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_tag ```ruby describe autoscaling_group('my-auto-scaling-group') do it { should have_tag('Name').value('my-group') } end ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
awspec-0.84.1 | doc/_resource_types/autoscaling_group.md |