github.com/iqoqo/nomad@v0.11.3-0.20200911112621-d7021c74d101/terraform/aws/env/us-east/main.tf (about) 1 provider "aws" { 2 region = var.region 3 } 4 5 module "hashistack" { 6 source = "../../modules/hashistack" 7 8 name = var.name 9 region = var.region 10 ami = var.ami 11 server_instance_type = var.server_instance_type 12 client_instance_type = var.client_instance_type 13 key_name = var.key_name 14 server_count = var.server_count 15 client_count = var.client_count 16 retry_join = var.retry_join 17 nomad_binary = var.nomad_binary 18 root_block_device_size = var.root_block_device_size 19 whitelist_ip = var.whitelist_ip 20 }