stelligent / serverspec-aws-resources

Some serverspec resources to allow testing AWS resources. This repository is deprecated - you should instead use: https://github.com/k1LoW/awspec
27 stars 24 forks source link

Add additional checks to ec2_instances #4

Closed arothian closed 8 years ago

arothian commented 8 years ago

Example:

describe ec2_instance('i-12345678') do
  its(:public_ip_address) { should_not eq nil }
  it { should have_public_subnet }
end