├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT ├── LICENSE ├── README.md ├── main.tf ├── modules └── nomad_cluster │ ├── consul_security.tf │ ├── iam.tf │ ├── main.tf │ ├── nomad_clients.tf │ ├── outputs.tf │ ├── scripts │ ├── install_hashitools_nomad_client.sh.tpl │ └── install_hashitools_nomad_server.sh.tpl │ ├── security_groups.tf │ └── variables.tf ├── variables.tf └── versions.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-aws-nomad-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-aws-nomad-starter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-aws-nomad-starter/HEAD/CODE_OF_CONDUCT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-aws-nomad-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-aws-nomad-starter/HEAD/README.md -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-aws-nomad-starter/HEAD/main.tf -------------------------------------------------------------------------------- /modules/nomad_cluster/consul_security.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-aws-nomad-starter/HEAD/modules/nomad_cluster/consul_security.tf -------------------------------------------------------------------------------- /modules/nomad_cluster/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-aws-nomad-starter/HEAD/modules/nomad_cluster/iam.tf -------------------------------------------------------------------------------- /modules/nomad_cluster/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-aws-nomad-starter/HEAD/modules/nomad_cluster/main.tf -------------------------------------------------------------------------------- /modules/nomad_cluster/nomad_clients.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-aws-nomad-starter/HEAD/modules/nomad_cluster/nomad_clients.tf -------------------------------------------------------------------------------- /modules/nomad_cluster/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/nomad_cluster/scripts/install_hashitools_nomad_client.sh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-aws-nomad-starter/HEAD/modules/nomad_cluster/scripts/install_hashitools_nomad_client.sh.tpl -------------------------------------------------------------------------------- /modules/nomad_cluster/scripts/install_hashitools_nomad_server.sh.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-aws-nomad-starter/HEAD/modules/nomad_cluster/scripts/install_hashitools_nomad_server.sh.tpl -------------------------------------------------------------------------------- /modules/nomad_cluster/security_groups.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-aws-nomad-starter/HEAD/modules/nomad_cluster/security_groups.tf -------------------------------------------------------------------------------- /modules/nomad_cluster/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-aws-nomad-starter/HEAD/modules/nomad_cluster/variables.tf -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-aws-nomad-starter/HEAD/variables.tf -------------------------------------------------------------------------------- /versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hashicorp/terraform-aws-nomad-starter/HEAD/versions.tf --------------------------------------------------------------------------------