From 8494f931a21f2bc1d8e7f05af7e591e76027e5ef Mon Sep 17 00:00:00 2001 From: Andy Miles Date: Thu, 5 Dec 2024 07:35:08 -0800 Subject: [PATCH] adding ssh for debug --- terraform/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/main.tf b/terraform/main.tf index b25f099..8ba94d9 100644 --- a/terraform/main.tf +++ b/terraform/main.tf @@ -4,7 +4,7 @@ provider "aws" { resource "aws_key_pair" "deployer" { key_name = "deployer-key" # Set this to any descriptive name you prefer - public_key = file("~/.ssh/id_rsa.pub") # Path to your public key file + public_key = file("/Users/andy/.ssh/id_rsa.pub") # Path to your public key file } resource "aws_security_group" "allow_ssh" {