This repository is currently being migrated. It's locked while the migration is in progress.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
76 lines (61 loc) · 2.24 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
variable "existing_resource_group_name" {
description = "Name of the resource group to place the SQL resources in"
type = "string"
}
variable "location" {
description = "Location of the resources"
default = "West Europe"
type = "string"
}
variable "database_name" {
description = "The name of the database"
type = "string"
}
variable "mysql_server_tier" {
description = "Specifies the SKU Tier for this MySQL Server. Possible values are Basic and Standard"
default = "Basic"
}
variable "mysql_server_name" {
description = "Specifies the SKU Name for this MySQL Server. The name of the SKU, follows the tier + family + cores pattern, e.g. B_Gen4_1, B_Gen4_2, B_Gen5_1, B_Gen5_2"
default = "B_Gen4_1"
type = "string"
}
variable "mysql_server_capacity" {
description = "The scale up/out capacity, representing server's compute units. Possible values are: 1, 2, 4, 8, 16, 32"
default = 1
}
variable "mysql_server_family" {
description = "The family of hardware Gen4 or Gen5"
default = "Gen4"
}
variable "mysql_server_retention" {
description = "Backup retention days for the server, supported values are between 7 and 35 days"
default = 7
}
variable "mysql_server_version" {
description = "Specifies the version of MySQL to use. Valid values are 5.6 and 5.7. Changing this forces a new resource to be created."
default = "5.7"
}
variable "mysql_storage_mb" {
description = "Specifies the amount of storage for the MySQL Server in Megabytes"
default = "51200"
}
variable "mysql_ssl_enforcement" {
description = " Specifies if SSL should be enforced on connections. Possible values are Enforced and Disabled."
default = "Enabled"
}
variable "name_prefix" {
description = "Fetched by environment variable"
}
variable "db_admin_login" {
description = "The Administrator Login for the MySQL Server. Changing this forces a new resource to be created"
}
variable "fw_rule_name" {
description = "Specifies the name of the MySQL Firewall Rule"
}
variable "fw_rule_start_ip" {
description = "Specifies the Start IP Address associated with this Firewall Rule"
}
variable "fw_rule_end_ip" {
description = "Specifies the End IP Address associated with this Firewall Rule"
}