-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
110 lines (92 loc) · 2.45 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
variable "project" {
type = string
description = "Project name"
}
variable "env" {
type = string
description = "Environment name"
}
variable "location" {
type = string
description = "Azure location"
}
variable "resource_group" {
type = string
description = "The name of the resource group in which to create MSSQL Server"
}
variable "tags" {
type = map(any)
description = "Resource tags"
default = {}
}
# Key Vault Config
variable "key_vault_id" {
type = string
description = "Azure Key Vault ID to use"
}
variable "secrets_expiration_date" {
type = string
description = "Expiration UTC datetime (Y-m-d'T'H:M:S'Z')"
default = "2024-12-21T00:00:00Z"
}
# MSSQL
variable "mssql_server_name" {
type = string
description = "Azure Custom MSSQL Server Name to use"
}
variable "mssql_enabled" {
type = bool
description = "Azure SQL deployment switch"
default = false
}
variable "sql_server_admin_login" {
type = string
description = "The administrator login name for Azure SQL server"
default = "dpaf"
}
variable "admin_password" {
type = string
description = "Azure Admin Password to use"
default = null
}
variable "sql_azure_ad_admin_login" {
type = string
description = "The login username of the Azure AD Administrator of this SQL Server."
default = null
}
variable "demos_sql_azure_ad_object_id" {
type = string
description = "The login username of the Azure AD Administrator of this SQL Server."
default = null
}
variable "mssql_server_ip_rules" {
type = map(string)
description = "CIDR ranges allowed to access MSSQL Server"
default = {}
}
variable "mssql_defender_state" {
description = "Manages Microsoft Defender state on the mssql server"
type = string
default = "Disabled"
}
variable "mssql_tde_key_enabled" {
type = bool
description = "MSSQL tde key enable switch"
default = false
}
variable "mssql_database" {
type = map(any)
description = "Map of databases to be deployed in Azure SQL"
default = {}
}
# Microsoft WWI Demo
variable "microsoft_wwi_demo_enabled" {
type = bool
description = "Boolean flag that determines whether Microsoft WWI Demo in provisioned within Environment"
default = false
}
variable "wwi_demo_subnet_id" {
type = string
description = "Microsoft WWI subnet"
default = null
}