-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from adanalvarez/addVariablesDescription
Clarify variable usage with descriptions
- Loading branch information
Showing
1 changed file
with
26 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,26 @@ | ||
variable "environment" {} | ||
variable "ami" {} | ||
variable "account" {} | ||
variable "region" {} | ||
variable "enable_guacamole" {} | ||
variable "enable_inetsim" {} | ||
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 | ||
} |