Merge pull request #597 from shaderecker/terraform-aws

Update AWS Terraform
This commit is contained in:
Marco Ochse
2020-03-25 16:08:07 +01:00
committed by GitHub
4 changed files with 38 additions and 17 deletions

View File

@ -52,3 +52,29 @@ variable "ec2_ami" {
"us-west-2" = "ami-023b7a69b9328e1f9"
}
}
# cloud-init configuration
variable "timezone" {
default = "UTC"
}
variable "linux_password" {
#default = "LiNuXuSeRPaSs#"
description = "Set a password for the default user"
}
# These will go in the generated tpot.conf file
variable "tpot_flavor" {
default = "STANDARD"
description = "Specify your tpot flavor [STANDARD, SENSOR, INDUSTRIAL, COLLECTOR, NEXTGEN]"
}
variable "web_user" {
default = "webuser"
description = "Set a username for the web user"
}
variable "web_password" {
#default = "w3b$ecret"
description = "Set a password for the web user"
}