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" {