Skip to content

Commit

Permalink
Added machine type and egress rule
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasm-ttd committed Jun 11, 2024
1 parent b8f5cd4 commit bb34ac2
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion scripts/aws/UID_CloudFormation.template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ Parameters:
- m5a.4xlarge
- m5n.2xlarge
- m5n.4xlarge
- m6i.2xlarge
- m6i.4xlarge
- r6i.2xlarge
- r6i.4xlarge
ConstraintDescription: must be a valid EC2 instance type.
RootVolumeSize:
Description: Instance root volume size
Expand Down Expand Up @@ -83,7 +87,7 @@ Metadata:
DeployToEnvironment:
default: UID2 environment to deploy to. Prod - production; Integ - integration test.
InstanceType:
default: Instance Type for EC2. Minimum 4 vCPUs needed. M5, M5a, M5n Instance types are tested. Choose 2xlarge or 4xlarge.
default: Instance Type for EC2. Minimum 4 vCPUs needed. M5, M5a, M5n, M6i and R6i Instance types are tested. Choose 2xlarge or 4xlarge.
SSHKeyName:
default: Key Name for SSH to EC2 (required)
RootVolumeSize:
Expand Down Expand Up @@ -245,6 +249,11 @@ Resources:
ToPort: '443'
CidrIp: 0.0.0.0/0
Description: "Allow Outbound HTTPS"
- IpProtocol: udp
FromPort: '53'
ToPort: '53'
CidrIp: 0.0.0.0/0
Description: "Allow Outbound DNS"
VpcId: !Ref VpcId
LaunchTemplate:
Type: AWS::EC2::LaunchTemplate
Expand Down

0 comments on commit bb34ac2

Please sign in to comment.