Sha256: 391dab80f3cbc4f6f60c59decbabeec1c0fe4c3b09051025de7b8706af2a6d48
Contents?: true
Size: 899 Bytes
Versions: 1
Compression:
Stored size: 899 Bytes
Contents
### exist ```ruby describe tgw('tgw-1234567890abcdefg') do it { should exist } it { should have_tag('Name').value('my-tgw') } it { should have_attachment('tgw-attach-1234567890abcdefg') } its('options.amazon_side_asn') { should eq 64_516 } its('options.auto_accept_shared_attachments') { should eq 'enable' } its('options.default_route_table_association') { should eq 'enable' } its('options.default_route_table_propagation') { should eq 'enable' } its('options.dns_support') { should eq 'enable' } its('options.vpn_ecmp_support') { should eq 'enable' } its('options.association_default_route_table_id') { should eq 'tgw-rtb-0123456789abcdefg' } its('options.propagation_default_route_table_id') { should eq 'tgw-rtb-0123456789abcdefg' } end ``` ```ruby describe tgw('my-tgw') do it { should exist } its(:transit_gateway_id) { should eq 'tgw-1234567890abcdefg' } end ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
awspec-1.20.0 | doc/_resource_types/transit_gateway.md |