File tree Expand file tree Collapse file tree 2 files changed +15
-4
lines changed Expand file tree Collapse file tree 2 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -78,22 +78,33 @@ This module has no root configuration. A module with no root configuration canno
7878
7979Copy and paste into your Terraform configuration, insert the variables, and run terraform init :
8080
81+ For MySQL :
8182```
8283module "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```
9192module "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
99110Refer to the [ contribution guidelines] ( ./CONTRIBUTING.md ) for
Original file line number Diff line number Diff 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,
7171we can consider MySQL usernames and passwords are a secondary access controls that
7272can be used to further restrict access for reliability or safety
7373purposes. For example, removing the ability of modifying tables from production
You can’t perform that action at this time.
0 commit comments