-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.tf
More file actions
73 lines (61 loc) · 1.06 KB
/
variables.tf
File metadata and controls
73 lines (61 loc) · 1.06 KB
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
variable "resource_group_name" {
type = string
description = "RG name in Azure"
}
variable "resource_group_location" {
type = string
description = "RG location in Azure"
}
variable "tags" {
type = map(string)
description = "Tags used for the deployment"
default = {
"Environment" = "Lab"
"Owner" = "CBS"
}
}
variable "array_name" {
type = string
}
variable "cbs_vnet_id" {
type = string
}
variable "cbs_subnet_mgmt_name" {
type = string
}
variable "cbs_subnet_iscsi_name" {
type = string
}
variable "cbs_subnet_repl_name" {
type = string
}
variable "cbs_subnet_sys_name" {
type = string
}
variable "cbs_key_vault" {
type = string
}
variable "zone" {
type = number
}
variable "log_sender_domain" {
type = string
}
variable "alert_recipients" {
type = list(string)
}
variable "jit_group_ids" {
type = list(string)
}
variable "array_model" {
type = string
}
variable "license_key" {
type = string
}
variable "key_file_path" {
type = string
}
variable "user_assigned_identity" {
type = string
}