-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
90 lines (72 loc) · 1.84 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
variable "resource_location001" {
description = "location of the resource."
type = string
}
variable "resource_identifier001" {
description = "identifier refix the resource."
type = string
}
variable "resource_status001" {
description = "status of the resource."
type = string
}
variable "vm_name001" {
description = "name of the vm"
type = string
}
variable "vm_name002" {
description = "name of the vm"
type = string
}
variable "vm_adminname001" {
description = "name of the vm admin user"
type = string
}
variable "subscription_id" {
description = "azure tenant subscription id"
type = string
}
variable "client_id" {
description = "service principal app id"
type = string
}
variable "client_secret" {
description = "service principal password"
type = string
}
variable "tenant_id" {
description = "azure tenant id"
type = string
}
variable "md_id" {
description = "md id"
type = string
}
variable "secgrp_id" {
description = "id for grp.ivp-subcontr_all"
type = string
}
variable "kv_enabled_for_deployment" {
description = "azure key vault enabled for deployment"
type = string
}
variable "kv_enabled_for_disk_encryption" {
description = "azure key vault enabled for disk encryption"
type = string
}
variable "kv_enabled_for_template_deployment" {
description = "azure key vault enabled for template deployment"
type = string
}
variable "kv_sku_name" {
description = "azure key vault sku (standard or premium)"
type = string
}
variable "law_sku_name" {
description = "log analytics workspace sku"
type = string
}
variable "vm_sku_name" {
description = "vm sku"
type = string
}