Sha256: 2b4244938111eb43ac4d7d1546e488c3816fdf772530d4bfee1fe63af55371e2
Contents?: true
Size: 815 Bytes
Versions: 3
Compression:
Stored size: 815 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 '!!! `auto_scaling_group` type is deprecated. use `autoscaling_group` !!!' Awspec::Type::AutoscalingGroup.new(name) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
awspec-0.20.2 | lib/awspec/helper/type.rb |
awspec-0.20.1 | lib/awspec/helper/type.rb |
awspec-0.20.0 | lib/awspec/helper/type.rb |