-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
77 lines (60 loc) · 2.15 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
variable "resource_group_name" {
description = "Default resource group name that the database will be created in."
default = "mysqlResourceGroup"
}
variable "location" {
description = "Specifies the supported Azure location where the resource exists."
}
variable "db_name" {
description = "The name of the database to be created."
}
variable "admin_username" {
description = "The administrator username of MySQL Server."
}
variable "password" {
description = "The administrator password of the MySQL Server."
}
variable "start_ip_address" {
description = "Defines the start IP address used in your database firewall rule."
default = "0.0.0.0"
}
variable "end_ip_address" {
description = "Defines the end IP address used in your database firewall rule."
default = "255.255.255.255"
}
variable "db_version" {
description = "Specifies the version of MySQL to use. Valid values are 5.6 and 5.7."
default = "5.7"
}
variable "ssl_enforcement" {
description = "Specifies if SSL should be enforced on connections. Possible values are Enforced and Disabled."
default = "Enabled"
}
variable "storage_mb" {
description = "Max storage allowed for a server. Possible values are between 5120 MB(5GB) and 1048576 MB(1TB) for the Basic SKU and between 5120 MB(5GB) and 4194304 MB(4TB) for General Purpose/Memory Optimized SKUs."
default = 5120
}
variable "backup_retention_days" {
description = "Backup retention days for the server, supported values are between 7 and 35 days."
default = 7
}
variable "geo_redundant_backup" {
description = "Enable Geo-redundant or not for server backup. Valid values for this property are Enabled or Disabled, not supported for the basic tier."
default = "Disabled"
}
variable "charset" {
description = "Specifies the Charset for the MySQL Database, which needs to be a valid MySQL Charset."
default = "utf8"
}
variable "collation" {
description = "Specifies the Collation for the MySQL Database, which needs to be a valid MySQL Collation."
default = "utf8_unicode_ci"
}
variable "subscription_id" {
}
variable "client_id" {
}
variable "client_secret" {
}
variable "tenant_id" {
}