Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Clarify variable usage with descriptions #2

Merged
merged 1 commit into from
Dec 5, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 26 additions & 6 deletions shared-variables.tf
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
}