forked from thomasmaurer/azure_arc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
112 lines (91 loc) · 2.7 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
variable "location" {
description = "Azure Region"
type = string
}
variable "resourceGroup" {
description = "Azure Resource Group"
type = string
default = "Arc-VMware-SQL-Demo"
}
variable "subId" {
description = "Azure Subscription ID"
type = string
}
variable "servicePrincipalAppId" {
description = "Azure Service Principal App ID"
type = string
}
variable "servicePrincipalSecret" {
description = "Azure Service Principal App Password"
type = string
}
variable "servicePrincipalTenantId" {
description = "Azure Tenant ID"
type = string
}
variable "vsphere_user" {
description = "VMware vSphere vCenter Username"
type = string
}
variable "vsphere_password" {
description = "VMware vSphere vCenter Password"
type = string
}
variable "vsphere_server" {
description = "VMware vSphere vCenter IP/FQDN"
type = string
}
variable "vsphere_datacenter" {
description = "VMware vSphere Datacenter Name"
type = string
}
variable "vsphere_datastore" {
description = "VMware vSphere Datastore Name"
type = string
}
variable "vsphere_resource_pool" {
description = "VMware vSphere Cluster or Resource Pool Name" // If no Resource Pool is present, use vSphere Cluster <Cluster Name/>
type = string
}
variable "network_cards" {
description = "VMware vSphere Network Name"
type = string
}
variable "ipv4_submask" {
description = "ipv4 Subnet Mask"
type = list(string)
default = ["24"]
}
variable "vsphere_folder" {
description = "VMware vSphere Folder Name" // Use the following format for nested folders: "Folder1/Folder2/Folder3"
type = string
}
variable "vsphere_vm_template_name" {
description = "VMware vSphere Virtual Machine Template Name" // Use the following format for nested folders: "Folder1/Template Name"
type = string
}
variable "vsphere_virtual_machine_name" {
description = "VMware vSphere Virtual Machine Name"
type = string
}
variable "vsphere_virtual_machine_cpu_count" {
description = "VMware vSphere Virtual Machine CPU Count"
type = number
}
variable "vsphere_virtual_machine_memory_size" {
description = "VMware vSphere Virtual Machine Memory Size in Megabytes"
type = number
}
variable "num_cores_per_socket" {
description = "The number of cores to distribute among the CPUs in this virtual machine. If specified, the value supplied to num_cpus must be evenly divisible by this value"
type = number
default = 1
}
variable "admin_user" {
description = "Guest OS Admin Username"
type = string
}
variable "admin_password" {
description = "Guest OS Admin Password"
type = string
}