-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariable.tf
57 lines (47 loc) · 1.05 KB
/
variable.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
variable "azure_subscription_id" {}
variable "azure_client_id" {}
variable "azure_client_secret" {}
variable "azure_tenant_id" {}
variable "location" {
description = "location for VNet and VM"
default = "east us"
}
variable "address_space" {
description = "address space for VNET"
default = "10.0.0.0/24"
}
variable "subnet_id"{
description = "subnet ID"
}
variable "vm_size"{
description = "VM Size"
type = "list"
}
variable "vm_password"{
description = "Password for local user of windows admin account"
default = "xxxxxx"
}
variable storage_account{
description = "storage account for VM hard-disk"
type = "list"
}
variable "vnet_name" {
description = "Vnet Name"
type = "list"
}
variable "subnet_name"{
description = "Subnet names"
type = "list"
}
variable "vm_name"{
description = "virtual machine name/Hostname"
type = "list"
}
variable "private_ip"{
description = "virtual machine private IP"
type = "list"
}
#workspace key of log analytics
variable "omskey"{
default = "xxxxx"
}