Sha256: ac9d4eef6bef271209b9a20ed318e380e8a19feaa79474d7c22171b7c3e96690
Contents?: true
Size: 956 Bytes
Versions: 4
Compression:
Stored size: 956 Bytes
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' 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 # 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 end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
awspec-0.5.0 | lib/awspec/helper/finder.rb |
awspec-0.4.1 | lib/awspec/helper/finder.rb |
awspec-0.4.0 | lib/awspec/helper/finder.rb |
awspec-0.3.0 | lib/awspec/helper/finder.rb |