-
Notifications
You must be signed in to change notification settings - Fork 14
/
variables.tf
56 lines (44 loc) · 1.61 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
variable "location" {
description = "Azure location where the db server is located."
}
variable "resource_group" {
description = "Azure Resource Group name where the db server is located."
}
variable "db_server_fqdn" {
description = "Full qualified domain name of the database sever. The server where to create the database. In the form xxxx.database.windows.net"
}
variable "db_name" {
description = "The name of the database to be created."
}
variable "sql_admin_username" {
description = "The administrator username of the SQL Server to use for launching the seed script."
}
variable "sql_admin_password" {
description = "The administrator password of the SQL Server to use for launching the seed script."
}
variable "tags" {
description = "The tags to associate with the database."
type = "map"
default = {
provisioner = "terraform"
}
}
variable init_script_file {
description = "SQL Script file name to seed the database. Example: db-init.sql."
}
variable log_file {
description = "Log file name to create with the seeding results."
default = "db-init.log"
}
variable "collation" {
description = "The collation for the database. Default is SQL_Latin1_General_CP1_CI_AS"
default = "SQL_Latin1_General_CP1_CI_AS"
}
variable "db_edition" {
description = "The edition of the database to be created."
default = "Basic"
}
variable "service_objective_name" {
description = "The performance level for the database. For the list of acceptable values, see https://docs.microsoft.com/en-gb/azure/sql-database/sql-database-service-tiers. Default is Basic."
default = "Basic"
}