Sha256: a39aa36199623fd34005ece63ec81490692e8e9d212ff02141d7513ba701c252
Contents?: true
Size: 806 Bytes
Versions: 4
Compression:
Stored size: 806 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' 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 # 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 end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
awspec-0.2.3 | lib/awspec/helper/finder.rb |
awspec-0.2.2 | lib/awspec/helper/finder.rb |
awspec-0.2.1 | lib/awspec/helper/finder.rb |
awspec-0.2.0 | lib/awspec/helper/finder.rb |