From aa07106e367810719628a2ea0d7ba5c6890685dd Mon Sep 17 00:00:00 2001 From: Camilla Harris <31481972+cdkharris@users.noreply.github.com> Date: Fri, 12 Jul 2024 17:22:26 +0100 Subject: [PATCH] bigger VM, and install git --- cloud-init.tmpl.yml | 1 + variables.tf | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/cloud-init.tmpl.yml b/cloud-init.tmpl.yml index 51b40fe..676046b 100644 --- a/cloud-init.tmpl.yml +++ b/cloud-init.tmpl.yml @@ -19,6 +19,7 @@ packages: - qemu-guest-agent - bash-completion - vim + - git yum_repos: baseos: diff --git a/variables.tf b/variables.tf index 24fa409..466b212 100644 --- a/variables.tf +++ b/variables.tf @@ -23,13 +23,13 @@ variable "public_key_openssh" { variable "ram_gb" { type = string - default = "8Gi" + default = "16Gi" description = "Amount of memory for the VM" } variable "vcpu" { type = number - default = 2 + default = 4 description = "Number of CPUs for the VM" }