From 526790df15b9875597a284155d75034899bee967 Mon Sep 17 00:00:00 2001 From: chibaba Date: Wed, 28 Feb 2024 23:29:26 +0100 Subject: [PATCH] wip --- infras/gitops3/iteration3/variables.tf | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/infras/gitops3/iteration3/variables.tf b/infras/gitops3/iteration3/variables.tf index e69de29..87741d0 100644 --- a/infras/gitops3/iteration3/variables.tf +++ b/infras/gitops3/iteration3/variables.tf @@ -0,0 +1,22 @@ +# Variable Declaration +variable "environment" { + description = "The environment e.g uat or prod or dev" + type = string +} + +variable "region" { + description = "The region where we wish to deploy to" + type = string +} + +variable "ssh_key_name" { + description = "SSH Keyname" + type = string +} + +variable "instance_type" { + description = "EC2 instance type" + type = string +} + +