本文整理匯總了Golang中github.com/aws/aws-sdk-go/service/ec2.EC2.CreateSecurityGroup方法的典型用法代碼示例。如果您正苦於以下問題:Golang EC2.CreateSecurityGroup方法的具體用法?Golang EC2.CreateSecurityGroup怎麽用?Golang EC2.CreateSecurityGroup使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/aws/aws-sdk-go/service/ec2.EC2
的用法示例。
在下文中一共展示了EC2.CreateSecurityGroup方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: createSecurityGroups
func createSecurityGroups(c *ec2.EC2, config *Config) error {
for j := range config.AllSecurityGroups {
csgi := &ec2.CreateSecurityGroupInput{GroupName: &config.AllSecurityGroups[j].Name, VpcId: &config.VpcId, Description: &config.AllSecurityGroups[j].Name}
csgo, err := c.CreateSecurityGroup(csgi)
//fmt.Println(err)
if err != nil {
if !strings.Contains(fmt.Sprintf("%s", err), "InvalidGroup.Duplicate") {
fmt.Println("Failed to create security group.")
return err
}
continue
}
everywhere := "0.0.0.0/0"
proto := "tcp"
//var fromPort int64
//fromPort = -1
asgii := &ec2.AuthorizeSecurityGroupIngressInput{CidrIp: &everywhere, FromPort: &config.AllSecurityGroups[j].TcpPort, ToPort: &config.AllSecurityGroups[j].TcpPort, GroupId: csgo.GroupId, IpProtocol: &proto}
_, err = c.AuthorizeSecurityGroupIngress(asgii)
//fmt.Println("Adding security group", asgii)
if err != nil {
fmt.Println("Failed to add rule to security group: ", err)
return err
}
}
return nil
}
示例2: setupSecurityGroup
// Sets up a security group based on it's ID. Returns an error if it isn't able.
func setupSecurityGroup(name, desc, vpc string, ec2client *ec2.EC2) (string, error) {
//Create the input struct with the appropriate settings, making sure to use the aws string pointer type
sgReq := ec2.CreateSecurityGroupInput{
GroupName: aws.String(name),
Description: aws.String(desc),
VpcId: aws.String(vpc),
}
//Attempt to create the security group
sgResp, err := ec2client.CreateSecurityGroup(&sgReq)
if err != nil {
return "", err
}
authReq := ec2.AuthorizeSecurityGroupIngressInput{
CidrIp: aws.String("0.0.0.0/0"),
FromPort: aws.Int64(9443),
ToPort: aws.Int64(9443),
IpProtocol: aws.String("tcp"),
GroupId: sgResp.GroupId,
}
_, err = ec2client.AuthorizeSecurityGroupIngress(&authReq)
if err != nil {
return "", err
}
return *sgResp.GroupId, nil
}