From 8178261ea7ec84ff6d5ad3a21275965801aab548 Mon Sep 17 00:00:00 2001 From: uk-bolly <69214557+uk-bolly@users.noreply.github.com> Date: Tue, 26 Jul 2022 16:32:11 +0100 Subject: [PATCH] added private key var --- .github/workflows/variables.tf | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/variables.tf b/.github/workflows/variables.tf index 58544fc..752ee88 100644 --- a/.github/workflows/variables.tf +++ b/.github/workflows/variables.tf @@ -22,6 +22,11 @@ variable "ami_key_pair_name" { type = string } +variable "private_key" { + description = "path to private key for ssh" + type = string +} + variable "ami_os" { description = "AMI OS Type" type = string @@ -62,4 +67,4 @@ variable "public_subnets" { variable "private_subnets" { description = "private subnet cidr block" type = string -} \ No newline at end of file +}