Skip to content

Commit 36b667d

Browse files
omazinaaron-lane
authored andcommitted
Fix linter errors.
1 parent fb89cfd commit 36b667d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/upgrading_to_sql_db_3.0.0.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Upgrading to SQL DB 3.0.0
2-
3-
The 3.0.0 release of SQL DB is a backward incompatible release. The `peering_completed` string variable along with hardcoded "tf_dependency" label in `user_labels` variable used to ensure that resources are created in a proper order when using private IPs and service network peering were dropped from `postgresql` and `safer_mysql` submodules. Instead the `module_depends_on` variable was added to the `postgresql`, `safer_mysql` and `mysql` submodules, which is a list of modules/resources a submodule depends on.
2+
3+
The 3.0.0 release of SQL DB is a backward incompatible release. The `peering_completed` string variable along with hardcoded "tf_dependency" label in `user_labels` variable used to ensure that resources are created in a proper order when using private IPs and service network peering were dropped from `postgresql` and `safer_mysql` submodules. Instead the `module_depends_on` variable was added to the `postgresql`, `safer_mysql` and `mysql` submodules, which is a list of modules/resources a submodule depends on.
44

55
## Migration Instructions
66

@@ -23,9 +23,9 @@ module "safer-mysql-db" {
2323
project_id = var.project_id
2424
region = var.region
2525
zone = "c"
26-
26+
2727
...
28-
28+
2929
assign_public_ip = true
3030
vpc_network = google_compute_network.default.self_link
3131
@@ -35,7 +35,7 @@ module "safer-mysql-db" {
3535
3636
```
3737

38-
With the 3.0.0 release, the `module_depends_on` variable is presented which contains a list of modules/resources that should be created before the target sql module.
38+
With the 3.0.0 release, the `module_depends_on` variable is presented which contains a list of modules/resources that should be created before the target sql module.
3939

4040
```diff
4141
// We define a connection with the VPC of the Cloud SQL instance.

0 commit comments

Comments
 (0)