-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvars.tf
56 lines (43 loc) · 1.19 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
48
49
50
51
52
53
54
55
56
variable "location" {
description = "The Azure location where the Resource Group should be located"
}
variable "vm_prefix" {
description = "The prefix to use for all the VM names"
}
variable "vm_count" {
description = "The count of VMs to create"
}
variable "vm_size" {
description = "The instance size of the VMs to create"
}
variable "lb_backend_pool" {
default = ""
description = "The Load Balancer backend pool to attach the VM NICs to"
}
variable "subnet_id" {
description = "The subnet ID to place the VM NICs into"
}
variable "resource_group_name" {}
variable "ssh_key" {
description = "The public SSH key to provision to the instance user"
}
variable "private_ip_addresses" {
type = "list"
description = "A list of private IP addresses that are attached in that order to the VM NICs"
}
variable "username" {}
variable "azure_tags" {
type = "map"
default {
environment = "KTHW"
}
}
variable "public_ip" {
type = "string"
description = "The public IP address for the consul privisioning"
}
variable "consul_agent_type" {
type = "string"
description = "The type of the Consul agent to deploy (server or client)"
default = "client"
}