-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
120 lines (96 loc) · 3.12 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
113
114
115
116
117
118
119
120
variable "name" {
description = "The name of the MSSQL Server"
}
variable "administrator_login" {
description = "(Required) The Administrator Login for the MSSQL Server"
}
variable "administrator_login_password" {
description = "(Required) The Password associated with the administrator_login for the PostgreSQL Server."
}
variable "retention_days" {
description = "Specifies the retention in days for logs for this MSSQL Server"
default = 90
}
variable "mssql_version" {
description = "The version of the MSSQL Server"
default = "12.0"
}
variable "location" {
description = "Specifies the supported Azure location where the resource exists"
default = "canadacentral"
}
variable "resource_group_name" {
description = "The name of the resource group in which to create the MSSQL Server"
}
variable "ssl_minimal_tls_version_enforced" {
description = "The mimimun TLS version to support on the sever"
default = "1.2"
}
variable "connection_policy" {
description = "The connection policy the server will use (Default, Proxy or Redirect)"
default = "Default"
}
variable "environment" {
description = "The environment used for keyvault access"
}
variable "firewall_rules" {
type = list(string)
description = "Specifies the Start IP Address associated with this Firewall Rule"
}
variable "subnets" {
default = []
}
variable "active_directory_administrator_login_username" {
description = "The Active Directory Administrator Login Username"
default = ""
}
variable "active_directory_administrator_object_id" {
description = "The Active Directory Administrator Object ID"
default = ""
}
variable "active_directory_administrator_tenant_id" {
description = "The Active Directory Administrator Tenant ID"
default = ""
}
variable "emails" {
type = list(string)
description = "List of email addresses that should recieve the security reports"
default = []
}
variable "kv_name" {
description = "The keyvault name"
default = ""
}
variable "kv_rg" {
description = "The keyvault resource group"
default = ""
}
variable "sa_resource_group_name" {
description = "The storageaccountinfo resource group name"
default = ""
}
variable "kv_enable" {
description = "(Optional) Enable Key Vault for passwords."
default = false
}
variable "private_endpoints" {
description = "(Optional) Options to enable private endpoint"
default = null
}
variable "tags" {
description = "(Optional) A mapping of tags which should be assigned to this Virtual Machine"
type = map(string)
default = null
}
variable "primary_mi_id" {
description = "(Optional) The ID of the Principal (User, Group or Service Principal) to assign the Role Definition to."
default = null
}
variable "account_replication_type" {
description = "(Required) Defines the type of replication to use for this storage account. Valid options are LRS, GRS, RAGRS, ZRS, GZRS and RAGZRS."
default = "LRS"
}
variable "express_va_enabled" {
description = "Is Express configuration of Vulnerability settings on Microsoft Cloud Defender being used?"
default = true
}