Skip to content

Commit

Permalink
chore: fix cidrBlock
Browse files Browse the repository at this point in the history
  • Loading branch information
vberlier committed Oct 23, 2023
1 parent 193076d commit b0ddd92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infra/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ const table = new aws.dynamodb.Table('beet-bot-table', {
})

// Networking
const vpc = new aws.ec2.Vpc('beet-bot-vpc', { cidrBlock: '10.0.0.0/8' })
const vpc = new aws.ec2.Vpc('beet-bot-vpc', { cidrBlock: '10.0.0.0/16' })
const subnet = new aws.ec2.Subnet('beet-bot-subnet', {
vpcId: vpc.id,
cidrBlock: '10.0.0.0/8'
cidrBlock: '10.0.0.0/24'
})

const igw = new aws.ec2.InternetGateway('beet-bot-igw', { vpcId: vpc.id })
Expand Down

0 comments on commit b0ddd92

Please sign in to comment.