-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
61 lines (47 loc) · 1.04 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
variable "resourcegroupname" {
default = "testenvgroup"
}
variable "region" {
default = "westeurope"
}
variable "networkname" {
default = "testenvnetwork"
}
variable "subnetname" {
default = "testenvsubnet"
}
variable "publicipname" {
default = "testenvpublicip"
}
variable "publicipsgname" {
default = "testenvpublicipsg"
}
variable "nicname" {
default = "testenvnic"
}
variable "testenvpublicipsgname" {
default = "testenvpublicipsg"
}
variable "customer_arm_subscription_id" {}
variable "customer_arm_client_id" {}
variable "customer_arm_client_secret" {}
variable "customer_arm_tenant_id" {}
variable "vmscount" {
default = 2
}
variable "PATH_TO_PRIVATE_KEY" {
default = "/home/mpastecki/.ssh/id_rsa"
}
variable "PRIVATE_KEY_FILE_NAME" {
default = "id_rsa"
}
variable "PATH_TO_PUBLIC_KEY" {
default = "/home/mpastecki/.ssh/id_rsa.pub"
}
variable "ansible_inventory_name" {
default = "test"
}
variable "oms_workspace_region" {}
variable "oms_workspace_name" {}
variable "oms_workspace_id" {}
variable "oms_workspace_key" {}