Sha256: 809277ce3f10c8c223d78bfeea7fadf8b671ce70f1209ea7fa65c35789eabda0
Contents?: true
Size: 626 Bytes
Versions: 102
Compression:
Stored size: 626 Bytes
Contents
### exist ```ruby describe alb_target_group('my-alb-target-group') do it { should exist } its(:health_check_path) { should eq '/' } its(:health_check_port) { should eq 'traffic-port' } its(:health_check_protocol) { should eq 'HTTP' } end ``` ### have_ec2 ```ruby describe alb_target_group('my-alb-target-group') do it { should have_ec2('my-ec2') } end ``` ### belong_to_alb ```ruby describe alb_target_group('my-alb-target-group') do it { should belong_to_alb('my-alb') } end ``` ### belong_to_vpc ```ruby describe alb_target_group('my-alb-target-group') do it { should belong_to_vpc('my-vpc') } end ```
Version data entries
102 entries across 102 versions & 4 rubygems
Version | Path |
---|---|
awspec-0.85.0 | doc/_resource_types/alb_target_group.md |
awspec-0.84.1 | doc/_resource_types/alb_target_group.md |