2014-12-30 17:25:09 -05:00
|
|
|
module Fog
|
|
|
|
module Compute
|
2015-01-02 12:34:40 -05:00
|
|
|
class AWS
|
2014-12-30 17:25:09 -05:00
|
|
|
class Real
|
|
|
|
require 'fog/aws/parsers/compute/create_security_group'
|
|
|
|
|
|
|
|
# Create a new security group
|
|
|
|
#
|
|
|
|
# ==== Parameters
|
|
|
|
# * group_name<~String> - Name of the security group.
|
|
|
|
# * group_description<~String> - Description of group.
|
|
|
|
# * vpc_id<~String> - ID of the VPC
|
|
|
|
#
|
|
|
|
# ==== Returns
|
|
|
|
# * response<~Excon::Response>:
|
|
|
|
# * body<~Hash>:
|
|
|
|
# * 'requestId'<~String> - Id of request
|
|
|
|
# * 'return'<~Boolean> - success?
|
|
|
|
# * 'groupId'<~String> - Id of created group
|
|
|
|
#
|
2015-01-02 12:34:40 -05:00
|
|
|
# {Amazon API Reference}[http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-CreateSecurityGroup.html]
|
2014-12-30 17:25:09 -05:00
|
|
|
def create_security_group(name, description, vpc_id=nil)
|
|
|
|
request(
|
|
|
|
'Action' => 'CreateSecurityGroup',
|
|
|
|
'GroupName' => name,
|
|
|
|
'GroupDescription' => description,
|
|
|
|
'VpcId' => vpc_id,
|
|
|
|
:parser => Fog::Parsers::Compute::AWS::CreateSecurityGroup.new
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class Mock
|
|
|
|
def create_security_group(name, description, vpc_id=nil)
|
|
|
|
response = Excon::Response.new
|
2017-10-23 08:25:41 -04:00
|
|
|
|
|
|
|
vpc_id ||= Fog::AWS::Mock.default_vpc_for(region)
|
2017-05-29 14:11:23 -04:00
|
|
|
group_id = Fog::AWS::Mock.security_group_id
|
2017-10-23 08:25:41 -04:00
|
|
|
|
2017-05-29 14:11:23 -04:00
|
|
|
if self.data[:security_groups].find { |_,v| v['groupName'] == name }
|
|
|
|
raise Fog::Compute::AWS::Error,
|
|
|
|
"InvalidGroup.Duplicate => The security group '#{name}' already exists"
|
2014-12-30 17:25:09 -05:00
|
|
|
end
|
2017-05-29 14:11:23 -04:00
|
|
|
|
|
|
|
self.data[:security_groups][group_id] = {
|
|
|
|
'groupDescription' => description,
|
|
|
|
'groupName' => name,
|
|
|
|
'groupId' => group_id,
|
|
|
|
'ipPermissionsEgress' => [],
|
|
|
|
'ipPermissions' => [],
|
|
|
|
'ownerId' => self.data[:owner_id],
|
|
|
|
'vpcId' => vpc_id
|
|
|
|
}
|
|
|
|
|
|
|
|
response.body = {
|
|
|
|
'requestId' => Fog::AWS::Mock.request_id,
|
|
|
|
'groupId' => group_id,
|
|
|
|
'return' => true
|
|
|
|
}
|
|
|
|
response
|
2014-12-30 17:25:09 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|