mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
77 lines
2 KiB
Ruby
77 lines
2 KiB
Ruby
require 'fog/model'
|
|
|
|
module Fog
|
|
module AWS
|
|
class Compute
|
|
|
|
class SecurityGroup < Fog::Model
|
|
|
|
identity :name, :aliases => 'groupName'
|
|
|
|
attribute :description, :aliases => 'groupDescription'
|
|
attribute :ip_permissions, :aliases => 'ipPermissions'
|
|
attribute :owner_id, :aliases => 'ownerId'
|
|
|
|
def authorize_group_and_owner(group, owner)
|
|
requires :name
|
|
|
|
connection.authorize_security_group_ingress(
|
|
'GroupName' => @name,
|
|
'SourceSecurityGroupName' => group,
|
|
'SourceSecurityGroupOwnerId' => owner
|
|
)
|
|
end
|
|
|
|
def authorize_port_range(range, options = {})
|
|
requires :name
|
|
|
|
connection.authorize_security_group_ingress(
|
|
'CidrIp' => options[:cidr_ip] || '0.0.0.0/0',
|
|
'FromPort' => range.min,
|
|
'GroupName' => @name,
|
|
'ToPort' => range.max,
|
|
'IpProtocol' => options[:ip_protocol] || 'tcp'
|
|
)
|
|
end
|
|
|
|
def destroy
|
|
requires :name
|
|
|
|
connection.delete_security_group(@name)
|
|
true
|
|
end
|
|
|
|
def revoke_group_and_owner(group, owner)
|
|
requires :name
|
|
|
|
connection.revoke_security_group_ingress(
|
|
'GroupName' => @name,
|
|
'SourceSecurityGroupName' => group,
|
|
'SourceSecurityGroupOwnerId' => owner
|
|
)
|
|
end
|
|
|
|
def revoke_port_range(range, options = {})
|
|
requires :name
|
|
|
|
connection.revoke_security_group_ingress(
|
|
'CidrIp' => options[:cidr_ip] || '0.0.0.0/0',
|
|
'FromPort' => range.min,
|
|
'GroupName' => @name,
|
|
'ToPort' => range.max,
|
|
'IpProtocol' => options[:ip_protocol] || 'tcp'
|
|
)
|
|
end
|
|
|
|
def save
|
|
requires :description, :name
|
|
|
|
data = connection.create_security_group(@name, @description).body
|
|
true
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|