You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Without any swap space, the smallest AWS instance that this will work on sucessfully is a t2.small. With some swap space enabled, it might work on a t2.micro or t2.nano or the equivalent t3 machine equivalents.
To see if this works, add a 1GB swap file to the base AMI using Ansible. Then use Terraform to tweak the instance type by putting it into the extra parameters, applying Terraform, and rotating the servers, for example:
instance_type = "t2.micro"
Alternatively this could be accomplished by tweaking the Cloud Init processes initiated through ansible/cloudinit.yml, or through terraform/cloud-config.yml.
It could be something as simple as a cloud-init line such as:
Without any swap space, the smallest AWS instance that this will work on sucessfully is a
t2.small
. With some swap space enabled, it might work on at2.micro
ort2.nano
or the equivalentt3
machine equivalents.To see if this works, add a 1GB swap file to the base AMI using Ansible. Then use Terraform to tweak the instance type by putting it into the extra parameters, applying Terraform, and rotating the servers, for example:
Alternatively this could be accomplished by tweaking the Cloud Init processes initiated through
ansible/cloudinit.yml
, or throughterraform/cloud-config.yml
.It could be something as simple as a cloud-init line such as:
The text was updated successfully, but these errors were encountered: