diff --git a/main.tf b/main.tf index e096db7..452ade0 100644 --- a/main.tf +++ b/main.tf @@ -1,6 +1,6 @@ resource "aws_instance" "web" { ami = "ami-0c55b159cbfafe1f0" - instance_type = "m5.xlarge" + instance_type = "m5.2xlarge" root_block_device { volume_size = 50 @@ -10,7 +10,7 @@ resource "aws_instance" "web" { resource "aws_db_instance" "main" { engine = "postgres" - instance_class = "db.r5.large" + instance_class = "db.r5.xlarge" multi_az = true allocated_storage = 100 }