Guided Walkthroughs
Step-by-step configuration wizards for your environment
Dedicated Security Account
AWS Backup Strategy
VPC Connectivity Setup
Automated Patching
All Guides
A security group for Amazon OpenSearch that allows inbound HTTP and HTTPS access from resources associated with this security group (TCP 443 and 80).
The template creates the security group into an existing VPC, and requires the following details:
See Related Items section for configuration templates to create a new VPC.
AWSTemplateFormatVersion: "2010-09-09"
Description: ""
Resources:
SecurityGroup:
Type: "AWS::EC2::SecurityGroup"
Properties:
GroupDescription: "A security group for Amazon OpenSearch that allows inbound HTTP and HTTPS access from resources associated with this security group (TCP 443 and 80)."
VpcId: ""
SecurityGroupEgress:
- FromPort: -1
ToPort: -1
IpProtocol: "-1"
Description: ""
CidrIp: "0.0.0.0/0"
SecurityGroupIngress:
- FromPort: 443
ToPort: 443
IpProtocol: "tcp"
Description: "Allow Opensearch traffic (TCP 443)"
CidrIp: ""
- FromPort: 80
ToPort: 80
IpProtocol: "tcp"
Description: "Allow Opensearch traffic (TCP 80)"
CidrIp: ""
GroupName: "allow-es-traffic"
Parameters: {}
Metadata: {}
Conditions: {}