You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-7Lines changed: 13 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -95,9 +95,7 @@ module "mssql-server" {
95
95
}
96
96
```
97
97
98
-
## Advanced Usage of the Module
99
-
100
-
### `mysql_setttings` - Setting up your MySQL Server
98
+
## `mysql_setttings` - Setting up your MySQL Server
101
99
102
100
This object helps you setup desired MySQL server and support following arguments.
103
101
@@ -118,6 +116,8 @@ This object helps you setup desired MySQL server and support following arguments
118
116
`ssl_enforcement_enabled`|Specifies if SSL should be enforced on connections. Possible values are `true` and `false`
119
117
`ssl_minimal_tls_version_enforced`|The minimum TLS version to support on the sever. Possible values are `TLSEnforcementDisabled`, `TLS1_0`, `TLS1_1`, and `TLS1_2`. Defaults to `TLSEnforcementDisabled`.
120
118
119
+
## Advanced Usage of the Module
120
+
121
121
### `mysql_configuration` - Configure MySQl Server Parameters
122
122
123
123
The MySQL server maintains many system variables that configure its operation. Each system variable has a default value. System variables can be set at server startup using options on the command line or in an option file. Most of them can be changed dynamically at runtime using the SET statement, which enables you to modify operation of the server without having to stop and restart it. You can also use system variable values in expressions.
@@ -133,8 +133,6 @@ A few Supported parameters are here for your reference. you can find all these `
133
133
`lock_wait_timeout`|This variable specifies the timeout in seconds for attempts to acquire metadata locks. Allowed value should be: `1`-`31536000`|Dynamic|`31536000`
134
134
`max_connections`|The maximum permitted number of simultaneous client connections. Allowed value should be: `10`-`5000`|Dynamic|`2500`
135
135
`time_zone`|The server time zone.|Dynamic|`SYSTEM`
136
-
| terraform | >= 0.13 |
137
-
| azurerm | >= 2.59.0 |
138
136
139
137
### MySQL Virtual Network Rule
140
138
@@ -178,11 +176,19 @@ Tag names are case-insensitive for operations. A tag with a tag name, regardless
178
176
179
177
An effective naming convention assembles resource names by using important resource information as parts of a resource's name. For example, using these [recommended naming conventions](https://docs.microsoft.com/en-us/azure/cloud-adoption-framework/ready/azure-best-practices/naming-and-tagging#example-names), a public IP resource for a production SharePoint workload is named like this: `pip-sharepoint-prod-westus-001`.
0 commit comments