forked from MsftArgHacks/Terraform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
35 lines (29 loc) · 803 Bytes
/
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
variable resource_group_name {}
variable location {}
variable sc_name {}
variable sqlserver_name {}
variable "admin_username" {
}
variable "admin_password" {
}
variable db_name {}
variable sql_database_edition {}
variable sqldb_service_objective_name {}
variable tags {}
variable firewall_rules {
type = list(object({
name = string
start_ip_address = string
end_ip_address = string
}))
default = []
}
variable extaudit_diag_logs {
default = ["SQLSecurityAuditEvents", "SQLInsights", "AutomaticTuning", "QueryStoreRuntimeStatistics", "QueryStoreWaitStatistics", "Errors", "DatabaseWaitStatistics", "Timeouts", "Blocks", "Deadlocks"]
}
variable log_analytics_workspace_id {}
variable log_retention_days {}
locals {
version = "12.0"
tls_version = "1.2"
}