Skip to content

Commit

Permalink
Default aws deployment to t3a instance family (#239)
Browse files Browse the repository at this point in the history
Lower costs and better performance compared to t2
  • Loading branch information
ffilippopoulos authored Mar 26, 2024
1 parent 1bc2145 commit 016a1ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/aws/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ resource "aws_eip_association" "peer" {
resource "aws_instance" "peer" {
count = local.instance_count
ami = var.ami_id != "" ? var.ami_id : data.aws_ami.flatcar_stable.id
instance_type = "t2.micro"
instance_type = "t3a.micro"
vpc_security_group_ids = concat([aws_security_group.wiresteward.id], var.additional_security_group_ids)
subnet_id = var.subnet_ids[count.index]
source_dest_check = false
Expand Down

0 comments on commit 016a1ee

Please sign in to comment.