############################################### # DO NOT EDIT THIS FILE # # This file is generated through 'make all'. # If you need to make changes, make your changes # to the corresponding .j file and then rerun # make all ############################################### # User Settings # ------------- # These MUST be configured variable "AWS-Key-Pair-Name" { description = "Name of the keypair in AWS" type = "string" default = "Fred-IO" } variable "Private-Key-File" { description = "The name of the file containing your private key" type = "string" default = "~/.ssh/id_rsa" } variable "Domain-Name" { description = "Your domain name (hosted in Route53)" type = "string" default = "monkeybox.org" } variable "Domain-Zone-ID" { description = "The Zone ID of the Domain-Name in Route53" type = "string" default = "Z49JKEQC08KW8" } variable "Trusted-CIDR" { description = "Trusted source addresses in CIDR notation." type = "list" default = ["98.243.254.99/32", "107.135.34.113/32"] } # Common Settings # --------------- # You may wish to customize these, but defaults # will usually work. variable "region" { description = "Which AWS region do you wish to deploy to?" type = "string" default = "us-east-2" } variable "VPC-Subnet" { description = "The full subnet for your VPC (to be split into 4 subnets)" type = "string" default = "10.45.0.0/16" } variable "Public-Subnet-A" { description = "The CIDR for the PubA subnet. Must be a subnet of VPC-Subnet" type = "string" default = "10.45.0.0/24" } variable "Public-Subnet-B" { description = "The CIDR for the PubA subnet. Must be a subnet of VPC-Subnet" type = "string" default = "10.45.1.0/24" } variable "Private-Subnet-A" { description = "The CIDR for the PubA subnet. Must be a subnet of VPC-Subnet" type = "string" default = "10.45.128.0/24" } variable "Private-Subnet-B" { description = "The CIDR for the PubA subnet. Must be a subnet of VPC-Subnet" type = "string" default = "10.45.129.0/24" } # Performance Settings # -------------------- # Defaults are probably fine, but if you want to change # your performance, here's where you can tune. variable "Instance-Type" { description = "What size instances do you want to deploy?" type = "string" default = "t2.micro" } variable "EBS-Optimized" { description = "Should instances be deployed as EBS optimized?" type = "string" default = false } variable "Swap-Volume-Size" { description = "How much swap do you need?" type = "string" default = 2 } variable "Swap-Volume-Type" { description = "Type of storage for the swap volume." type = "string" default = "gp2" } variable "Default-Volume-Type" { description = "Type of storage for the default volumes." type = "string" default = "gp2" }