Sha256: 10a05d5fafee88c05c0ba9639945b2f73a5475041fe586b16f7f9d509bd33e19

Contents?: true

Size: 858 Bytes

Versions: 7

Compression:

Stored size: 858 Bytes

Contents

module Awspec
  module Helper
    module Type
      TYPES = %w(
        base ec2 rds rds_db_parameter_group security_group
        vpc s3 route53_hosted_zone autoscaling_group subnet
        route_table ebs elb lambda iam_user iam_group iam_role
        iam_policy elasticache elasticache_cache_parameter_group
        cloudwatch_alarm ses_identity network_acl
      )

      TYPES.each do |type|
        require "awspec/type/#{type}"
        define_method type do |*args|
          name = args.first
          eval "Awspec::Type::#{type.camelize}.new(name)"
        end
      end

      # deprecated resource type
      def auto_scaling_group(name)
        puts ''
        puts Color.on_red(Color.white('!!! `auto_scaling_group` type is deprecated. use `autoscaling_group` !!!'))
        Awspec::Type::AutoscalingGroup.new(name)
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
awspec-0.21.6 lib/awspec/helper/type.rb
awspec-0.21.5 lib/awspec/helper/type.rb
awspec-0.21.4 lib/awspec/helper/type.rb
awspec-0.21.3 lib/awspec/helper/type.rb
awspec-0.21.2 lib/awspec/helper/type.rb
awspec-0.21.1 lib/awspec/helper/type.rb
awspec-0.21.0 lib/awspec/helper/type.rb