Skip to content

Commit a6833b2

Browse files
committed
final configuration for version 1.0
1 parent ba6e971 commit a6833b2

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

README.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,7 @@ module "mssql-server" {
9595
}
9696
```
9797

98-
## Advanced Usage of the Module
99-
100-
### `mysql_setttings` - Setting up your MySQL Server
98+
## `mysql_setttings` - Setting up your MySQL Server
10199

102100
This object helps you setup desired MySQL server and support following arguments.
103101

@@ -118,6 +116,8 @@ This object helps you setup desired MySQL server and support following arguments
118116
`ssl_enforcement_enabled`|Specifies if SSL should be enforced on connections. Possible values are `true` and `false`
119117
`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`.
120118

119+
## Advanced Usage of the Module
120+
121121
### `mysql_configuration` - Configure MySQl Server Parameters
122122

123123
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 `
133133
`lock_wait_timeout`|This variable specifies the timeout in seconds for attempts to acquire metadata locks. Allowed value should be: `1`-`31536000`|Dynamic|`31536000`
134134
`max_connections`|The maximum permitted number of simultaneous client connections. Allowed value should be: `10`-`5000`|Dynamic|`2500`
135135
`time_zone`|The server time zone.|Dynamic|`SYSTEM`
136-
| terraform | >= 0.13 |
137-
| azurerm | >= 2.59.0 |
138136

139137
### MySQL Virtual Network Rule
140138

@@ -178,11 +176,19 @@ Tag names are case-insensitive for operations. A tag with a tag name, regardless
178176

179177
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`.
180178

179+
## Requirements
180+
181+
| Name | Version |
182+
|------|---------|
183+
| terraform | >= 0.13 |
184+
| azurerm | >= 2.59.0 |
185+
181186
## Providers
182187

183-
| Name | Version |
184-
| ------- | --------- |
188+
| Name | Version |
189+
|------|---------|
185190
| azurerm | >= 2.59.0 |
191+
| random |>= 3.1.0 |
186192

187193
## Inputs
188194

versions.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ terraform {
55
source = "hashicorp/azurerm"
66
version = ">= 2.59.0"
77
}
8+
random = {
9+
source = "hashicorp/random"
10+
version = ">= 3.1.0"
11+
}
812
}
913
required_version = ">= 0.13"
1014
}

0 commit comments

Comments
 (0)