From 955ad12e6ec4b749930d2748ae2cdc5af7bd8446 Mon Sep 17 00:00:00 2001 From: spengreb Date: Fri, 25 Feb 2022 20:02:59 +0100 Subject: [PATCH] use c6i instance type --- dns.tf | 2 +- main.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dns.tf b/dns.tf index 66615ee..ed73e1a 100644 --- a/dns.tf +++ b/dns.tf @@ -15,6 +15,6 @@ resource "digitalocean_record" "jam" { domain = "vereto.net" type = "A" name = "ejam" - ttl = 5 + ttl = 30 value = "${aws_instance.jamulus.public_ip}" } \ No newline at end of file diff --git a/main.tf b/main.tf index 6cdfa8a..ea2c079 100644 --- a/main.tf +++ b/main.tf @@ -13,7 +13,7 @@ terraform { resource "aws_instance" "jamulus" { ami = "${data.aws_ami.image.id}" - instance_type = "t3.medium" + instance_type = "c6i.large" key_name = "jamulus" security_groups = [ aws_security_group.ssh.name, aws_security_group.jamulus.name, aws_security_group.node-exporter.name ] # Add your own IP to this group