Skip to content

Commit

Permalink
infra: switch to t3.micro with amazon linux 2023
Browse files Browse the repository at this point in the history
  • Loading branch information
vberlier committed Jun 2, 2024
1 parent 4c45f1c commit 9920c07
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 @@ -92,8 +92,8 @@ const cloudConfig = pulumi.all({

// Create instance for running the bot
const instance = new aws.ec2.Instance('beet-bot', {
instanceType: 't2.micro', // Available in the AWS free tier
ami: 'ami-0022f774911c1d690', // Latest amazon linux AMI
instanceType: 't3.micro', // free tier
ami: 'ami-00beae93a2d981137', // Amazon Linux 2023 AMI
vpcSecurityGroupIds: [group.id],
iamInstanceProfile: new aws.iam.InstanceProfile('beet-bot-profile', { role: policy.role }),
userData: cloudConfig,
Expand Down

0 comments on commit 9920c07

Please sign in to comment.