github.com/bigcommerce/nomad@v0.9.3-bc/terraform/aws/env/us-east/terraform.tfvars (about) 1 # `name` (required) is used to override the default decorator for elements in 2 # the stack. This allows for more than one environment per account. 3 # - This name can only contain alphanumeric characters. If it is not provided 4 # here, it will be requested interactively. 5 name = "nomad" 6 7 # `key_name` (required) - The name of the AWS SSH keys to be loaded on the 8 # instance at provisioning. 9 10 # If it is not provided here, it will be requested interactively. 11 #key_name = "«YOUR EC2 SSH KEY NAME»" 12 13 # `nomad_binary` (optional, null) - URL of a zip file containing a nomad 14 # executable with which to replace the Nomad binaries in the AMI. 15 # - Typically this is left commented unless necessary. 16 #nomad_binary = "https://releases.hashicorp.com/nomad/0.9.0/nomad_0.9.0_linux_amd64.zip" 17 18 # `region` ("us-east-1") - sets the AWS region to build your cluster in. 19 #region = "us-east-1" 20 21 # `ami` (required) - The base AMI for the created nodes, This AMI must exist in 22 # the requested region for this environment to build properly. 23 # - If it is not provided here, it will be requested interactively. 24 ami = "ami-0df3b3ceb1f37291d" 25 26 # `server_instance_type` ("t2.medium"), `client_instance_type` ("t2.medium"), 27 # `server_count` (3),`client_count` (4) - These options control instance size 28 # and count. They should be set according to your needs. 29 # 30 # * For the GPU demos, we used p3.2xlarge client instances. 31 # * For the Spark demos, you will need at least 4 t2.medium client 32 # instances. 33 #server_instance_type = "t2.medium" 34 #server_count = "3" 35 #client_instance_type = "t2.medium" 36 #client_count = "4" 37 38 # `whitelist_ip` (required) - IP to whitelist for the security groups (set 39 # to 0.0.0.0/0 for world). 40 # - If it is not provided here, it will be requested interactively. 41 whitelist_ip = "0.0.0.0/0"