Skip to content

Commit ebdb1b7

Browse files
authored
chore: Add mssql example in README and typo (#146)
1 parent bed1cb4 commit ebdb1b7

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

README.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,22 +78,33 @@ This module has no root configuration. A module with no root configuration canno
7878

7979
Copy and paste into your Terraform configuration, insert the variables, and run terraform init :
8080

81+
For MySQL :
8182
```
8283
module "sql-db" {
8384
source = "GoogleCloudPlatform/sql-db/google//modules/mysql"
84-
version = "3.1.0"
85+
version = "4.0.0"
8586
}
8687
```
8788

88-
or :
89+
or for PostgreSQL :
8990

9091
```
9192
module "sql-db" {
9293
source = "GoogleCloudPlatform/sql-db/google//modules/postgresql"
93-
version = "3.1.0"
94+
version = "4.0.0"
9495
}
9596
```
9697

98+
or for MSSQL Server :
99+
100+
```
101+
module "sql-db" {
102+
source = "GoogleCloudPlatform/sql-db/google//modules/mssql"
103+
version = "4.0.0"
104+
}
105+
```
106+
107+
97108
## Contributing
98109

99110
Refer to the [contribution guidelines](./CONTRIBUTING.md) for

modules/safer_mysql/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ You can add the following Cloud IAM snippet to the project policy:
6767

6868
## Define MySQL users and passwords on your instance
6969

70-
Because Cloud IAM acts as a primary athentication and authorization mechanism,
70+
Because Cloud IAM acts as a primary authentication and authorization mechanism,
7171
we can consider MySQL usernames and passwords are a secondary access controls that
7272
can be used to further restrict access for reliability or safety
7373
purposes. For example, removing the ability of modifying tables from production

0 commit comments

Comments
 (0)