-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
34 lines (29 loc) · 1012 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
variable "server_fqdn" {
description = "Target MSSQL Server fqdn"
type = string
}
variable "database" {
description = "Target MSSQL Server fqdn"
type = string
}
variable "sql_users_configurations" {
description = "List of objects with sql users configuration"
type = list(object({
username = string
object_id = string
roles = list(string)
}))
default = []
}
variable "tenant_id" {
description = "The tenant ID of the principal used to login to the SQL Server. Can also be sourced from the MSSQL_TENANT_ID environment variable"
type = string
}
variable "client_id" {
description = "The client ID of the principal used to login to the SQL Server. Can also be sourced from the MSSQL_CLIENT_ID environment variable."
type = string
}
variable "client_secret" {
description = "The client secret of the principal used to login to the SQL Server. Can also be sourced from the MSSQL_CLIENT_SECRET environment variable."
type = string
}