From b9e9e3a7b5ae34465b0070ba91afecafb46f8f5d Mon Sep 17 00:00:00 2001 From: Adan Alvarez Date: Mon, 5 Dec 2022 23:41:51 +0100 Subject: [PATCH] add descriptions --- shared-variables.tf | 32 ++++++++++++++++++++++++++------ 1 file changed, 26 insertions(+), 6 deletions(-) diff --git a/shared-variables.tf b/shared-variables.tf index 8430b36..23664fd 100644 --- a/shared-variables.tf +++ b/shared-variables.tf @@ -1,6 +1,26 @@ -variable "environment" {} -variable "ami" {} -variable "account" {} -variable "region" {} -variable "enable_guacamole" {} -variable "enable_inetsim" {} \ No newline at end of file +variable "environment" { + description = "The name of the environment in which the resources will be created'" + default = "malware-lab" +} +variable "ami" { + description = "The Amazon Machine Image (AMI) ID of the created FlareVM." +} + +variable "account" { + description = "The AWS account ID to use for the resources" +} + +variable "region" { + description = "The AWS region to use for the resources" + default = "eu-west-1" +} + +variable "enable_guacamole" { + description = "Whether to enable the Guacamole server for remote access to the instances (If enabled the FlareVM will have not Internet)" + default = false +} + +variable "enable_inetsim" { + description = "Whether to enable the InetSim network simulation tool on the instances" + default = false +} \ No newline at end of file