-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
78 lines (64 loc) · 1.71 KB
/
variables.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
provider "azurerm" {
subscription_id = "${var.subscription_id}"
tenant_id = "${var.tenant_id}"
}
variable "subscription_id" {
description = "Azure Subscription ID"
}
variable "tenant_id" {
description = "Azure Tenant ID"
}
variable "resource_group" {
description = "Resource group used for provisioning"
type = "string"
}
variable "ansible_playbook_path" {
description = "Path of Ansible Playbook called by azure_post_provision.tf"
type = "string"
}
variable "azure_region" {
description = "Azure region to deploy to"
type = "string"
default = "East US"
}
variable "project_name" {
description = "Used to prepend Azure objects - e.g. PROJECT-tf-web"
type = "string"
}
variable "vnet_address" {
description = "Virtual Network subnet. If this is changed, you must change the Ansible playbook"
type = "list"
default = ["10.0.0.0/16"]
}
variable "web_instance_size" {
description = "Web server instance size"
type = "string"
default = "Standard_B1s"
}
variable "controller_instance_size" {
description = "Avi controller instance size"
type = "string"
default = "Standard_D8s_v3"
}
variable "admin_username" {
description = "Webserver username"
type = "string"
}
variable "admin_password" {
description = "Controller admin password"
type = "string"
}
variable "web_count" {
description = "Number of webservers to provision"
type = "string"
default = "3"
}
variable "avi_username" {
description = "Avi controller SSH login user"
type = "string"
}
variable "controller_version" {
description = "Avi controller version"
type = "string"
default = "17.2.14"
}