Skip to content

Commit

Permalink
chore: fix security group
Browse files Browse the repository at this point in the history
  • Loading branch information
vberlier committed Oct 23, 2023
1 parent b0ddd92 commit 4eca682
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions infra/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ const rta = new aws.ec2.RouteTableAssociation('beet-bot-rta', {

// Allow SSH and HTTP
const group = new aws.ec2.SecurityGroup('beet-bot-security', {
vpcId: vpc.id,
ingress: [
{ protocol: 'tcp', fromPort: 22, toPort: 22, cidrBlocks: ['0.0.0.0/0'] }
],
Expand Down

0 comments on commit 4eca682

Please sign in to comment.