From eb22b70eace45c5a9cdc2294c477909bb7c14245 Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Sun, 10 Nov 2024 04:40:37 -0700 Subject: [PATCH] add user_data templatefile and add SSH_PUBLIC_KEY to trusted keys --- variables.tf | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/variables.tf b/variables.tf index 1dbd87b..a6f5bff 100644 --- a/variables.tf +++ b/variables.tf @@ -1,26 +1,5 @@ # Variables -variable "user_data" { - description = "Cloud Init 'user_data'" - default = <<-EOF - #!/bin/bash - sudo apt update -y - sudo apt-get -y install ca-certificates curl - sudo install -y -m 0755 -d /etc/apt/keyrings - sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc - sudo chmod a+r /etc/apt/keyrings/docker.asc - - # Add the repository to Apt sources: - echo \ - "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \ - $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \ - sudo tee /etc/apt/sources.list.d/docker.list > /dev/null - - sudo apt-get update - sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin - EOF -} - variable "instance_size" { description = "Size of instance to create" default = "t2.micro"