-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
vars.tf
47 lines (39 loc) · 1.75 KB
/
vars.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
variable "domain_config_file" {
description = "Path to the domain configuration file"
default = "../domain.yml"
}
variable "servers_subnet_cidr" {
description = "CIDR to use for the Servers subnet"
default = "10.0.10.0/24"
}
variable "workstations_subnet_cidr" {
description = "CIDR to use for the Workstations subnet"
default = "10.0.11.0/24"
}
variable "elasticsearch_admin_user" {
description = "Name of the initial admin user on the Elasticsearch / Kibana machine"
# Warning: if you change this, also change it in ansible/elasticsearch-kibana.yml
default = "hunter"
}
variable "ssh_key" {
description = "Path to SSH key to add to the Elasticsearch / Kibana instance"
default = "~/.ssh/id_rsa.pub"
}
variable "region" {
description = "Azure region in which resources should be created. See https://azure.microsoft.com/en-us/global-infrastructure/locations/"
default = "West Europe"
}
variable "resource_group" {
# Warning: see https://github.com/christophetd/adaz/blob/master/doc/faq.md#how-to-change-the-name-of-the-resource-group-in-which-resources-are-created
# Warning: if you change this, also change it in ansible/inventory_azure_rm.yml
description = "Resource group in which resources should be created. Will automatically be created and should not exist prior to running Terraform"
default = "ad-hunting-lab"
}
variable "dc_vm_size" {
description = "Size of the Domain Controller VM. See https://docs.microsoft.com/en-us/azure/cloud-services/cloud-services-sizes-specs"
default = "Standard_D1_v2"
}
variable "workstations_vm_size" {
description = "Size of the workstations VMs. See https://docs.microsoft.com/en-us/azure/cloud-services/cloud-services-sizes-specs"
default = "Standard_DS1_v2"
}