Sha256: b2ed31126a578750d206920f0dbd2999d61878cd1895fafb179f688ddd25814a
Contents?: true
Size: 1.06 KB
Versions: 1
Compression:
Stored size: 1.06 KB
Contents
require 'aws-sdk' require 'awspec/helper/finder/vpc' require 'awspec/helper/finder/ec2' require 'awspec/helper/finder/security_group' require 'awspec/helper/finder/rds' require 'awspec/helper/finder/route53' require 'awspec/helper/finder/s3' require 'awspec/helper/finder/auto_scaling' require 'awspec/helper/finder/elb' module Awspec::Helper module Finder attr_reader :ec2_client include Awspec::Helper::Finder::Vpc include Awspec::Helper::Finder::Ec2 include Awspec::Helper::Finder::SecurityGroup include Awspec::Helper::Finder::Rds include Awspec::Helper::Finder::Route53 include Awspec::Helper::Finder::S3 include Awspec::Helper::Finder::AutoScaling include Awspec::Helper::Finder::Elb # rubocop:disable all def initialize(id = nil) @ec2_client = Aws::EC2::Client.new @rds_client = Aws::RDS::Client.new @route53_client = Aws::Route53::Client.new @s3_client = Aws::S3::Client.new @auto_scaling_client = Aws::AutoScaling::Client.new @elb_client = Aws::ElasticLoadBalancing::Client.new end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
awspec-0.6.0 | lib/awspec/helper/finder.rb |