Build a custom security group.

The template creates the security group into an existing VPC, and requires the following details: 

  • VPC ID: Provide the VPC ID to create the security group in.
  • Security Group Rules: Click on 'Customize Rules' and enter the missing rule information (Source IP, Prefix List or Security Group, Port number, and Protocol) depending on the security group template. 

See Related Items section for configuration templates to create a new VPC.

Items
1
Size
0.3 KB
Missing Parameters
AWSTemplateFormatVersion: '2010-09-09'
Description: ''
Resources:
  SecurityGroup:
    Type: 'AWS::EC2::SecurityGroup'
    Properties:
      GroupDescription: Build a custom security group.
      VpcId: ''
      SecurityGroupEgress: []
      SecurityGroupIngress: []
      GroupName: custom-sg
Parameters: {}
Metadata: {}
Conditions: {}

Actions



Customize Template

 
* Required field