Upgrade to t3.small

We're running low on memory when pulling the Docker image.
This commit is contained in:
Radon Rosborough 2021-03-13 22:05:16 -08:00
parent 46f3079741
commit 43f6652bc2
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ resource "aws_security_group" "server" {
}
resource "aws_instance" "server" {
instance_type = "t3.micro"
instance_type = "t3.small"
ami = data.aws_ami.server.id
availability_zone = "${data.aws_region.current.name}b"
security_groups = [aws_security_group.server.name]