Fix random issue with no libqtcore5a, increase instance size

This commit is contained in:
spengreb 2021-11-06 16:37:47 +01:00
parent 524ac475e0
commit d2e9db2774
2 changed files with 3 additions and 1 deletions

View file

@ -13,7 +13,7 @@ terraform {
resource "aws_instance" "jamulus" {
ami = "${data.aws_ami.image.id}"
instance_type = "t3.medium"
instance_type = "c5.large"
key_name = "jamulus"
security_groups = [ aws_security_group.ssh.name, aws_security_group.jamulus.name ] # Add your own IP to this group

View file

@ -2,6 +2,8 @@
# apt Deps
sudo apt-get update -y
sudo apt-get upgrade -y
sudo apt dist-upgrade -y
sudo apt-get install -y libqt5core5a libqt5network5 libqt5xml5
# Prometheus Setup
wget -O /tmp/node_exporter.tar.gz https://github.com/prometheus/node_exporter/releases/download/v1.2.2/node_exporter-1.2.2.linux-amd64.tar.gz