Fix random issue with no libqtcore5a, increase instance size
This commit is contained in:
parent
524ac475e0
commit
d2e9db2774
2 changed files with 3 additions and 1 deletions
2
main.tf
2
main.tf
|
|
@ -13,7 +13,7 @@ terraform {
|
||||||
|
|
||||||
resource "aws_instance" "jamulus" {
|
resource "aws_instance" "jamulus" {
|
||||||
ami = "${data.aws_ami.image.id}"
|
ami = "${data.aws_ami.image.id}"
|
||||||
instance_type = "t3.medium"
|
instance_type = "c5.large"
|
||||||
key_name = "jamulus"
|
key_name = "jamulus"
|
||||||
security_groups = [ aws_security_group.ssh.name, aws_security_group.jamulus.name ] # Add your own IP to this group
|
security_groups = [ aws_security_group.ssh.name, aws_security_group.jamulus.name ] # Add your own IP to this group
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
# apt Deps
|
# apt Deps
|
||||||
sudo apt-get update -y
|
sudo apt-get update -y
|
||||||
|
sudo apt-get upgrade -y
|
||||||
|
sudo apt dist-upgrade -y
|
||||||
sudo apt-get install -y libqt5core5a libqt5network5 libqt5xml5
|
sudo apt-get install -y libqt5core5a libqt5network5 libqt5xml5
|
||||||
# Prometheus Setup
|
# 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
|
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
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue