change dev EB env instance to t2.micro to match prod

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2021-04-13 19:08:59 +02:00
parent 3c73458ed2
commit d309c3a8bb
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 1 additions and 1 deletions

2
dev.tf
View File

@ -77,7 +77,7 @@ module "dev_env" {
keypair_name = aws_key_pair.admin.key_name
/* Scaling */
instance_type = "t3.small"
instance_type = "t2.micro"
autoscale_min = 1
autoscale_max = 2
}