Skip to content

Instantly share code, notes, and snippets.

@arukoh
Last active March 14, 2019 14:02
Show Gist options
  • Save arukoh/104d112e23a690dfdbebabfe7b1903f2 to your computer and use it in GitHub Desktop.
Save arukoh/104d112e23a690dfdbebabfe7b1903f2 to your computer and use it in GitHub Desktop.
require 'spec_helper'
describe autoscaling_group('my-auto-scaling-group') do
it { should exist }
its(:min_size) { should eq 1 }
its(:max_size) { should eq 3 }
it { should have_ec2('my-ec2') }
it { should have_elb('my-elb') }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment