We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Under the describe route_table resource, I'm wanting to use its(:propagating_vgws) argument. When I try to use this, I get the following error:
its(:propagating_vgws)
:in `block (3 levels) in <top (required)>'
I think my syntax is wrong in how I'm including the vgw_id.
its(:propagating_vgws) { should include "#{vgw_id}" }
Please advise.
The text was updated successfully, but these errors were encountered:
:propagating_vgws return array following
:propagating_vgws
array
[ {gateway_id: "xxxxxxxxxx"}, {gateway_id: "yyyyyyyyyy"}, ]
see: https://docs.aws.amazon.com/sdkforruby/api/Aws/EC2/Client.html#describe_route_tables-instance_method
Sorry, something went wrong.
@k1LoW provided helpful information which got me going. This is the syntax I used:
its(:propagating_vgws) { should include(Aws::EC2::Types::PropagatingVgw.new(gateway_id: 'xxxxxxxxxx')) }
No branches or pull requests
Under the describe route_table resource, I'm wanting to use
its(:propagating_vgws)
argument. When I try to use this, I get the following error::in `block (3 levels) in <top (required)>'
I think my syntax is wrong in how I'm including the vgw_id.
its(:propagating_vgws) { should include "#{vgw_id}" }
Please advise.
The text was updated successfully, but these errors were encountered: