class Convection::Model::Template::Resource::RDSDBSecurityGroup

AWS::RDS::DBSecurityGroup

Public Instance Methods

cidr_ip(cidr_block) click to toggle source
# File lib/convection/model/template/resource/aws_rds_db_security_group.rb, line 25
def cidr_ip(cidr_block)
  ingress(
    :CIDRIP => cidr_block
  )
end
ec2_security_group(group, owner) click to toggle source
# File lib/convection/model/template/resource/aws_rds_db_security_group.rb, line 18
def ec2_security_group(group, owner)
  ingress(
    :EC2SecurityGroupName => group,
    :EC2SecurityGroupOwnerId => owner
  )
end
render(*args) click to toggle source
# File lib/convection/model/template/resource/aws_rds_db_security_group.rb, line 31
def render(*args)
  super.tap do |resource|
    render_tags(resource)
  end
end