From 73a2344d6e9fc2fa49717423fa3d47e9973b9867 Mon Sep 17 00:00:00 2001 From: Petri Autero Date: Thu, 9 May 2019 19:53:22 +0300 Subject: [PATCH] [skip ci] Fix missing links --- README.md | 10 +++++----- modules/cloud-sql/README.md | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index e4c7388..3d3e775 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ This repo has the following folder structure: The primary module is: - * [cloud-sql](/modules/cloud-sql): Deploy a Cloud SQL [MySQL](https://cloud.google.com/sql/docs/mysql/) or + * [cloud-sql](https://github.com/gruntwork-io/terraform-google-sql/tree/master/modules/cloud-sql): Deploy a Cloud SQL [MySQL](https://cloud.google.com/sql/docs/mysql/) or [PostgreSQL](https://cloud.google.com/sql/docs/postgres/) database. * [examples](https://github.com/gruntwork-io/terraform-google-sql/tree/master/examples): This folder contains @@ -64,7 +64,7 @@ a version number bump. ## Who maintains this Module? -This Module and its Submodules are maintained by [Gruntwork](http://www.gruntwork.io/). Read the [Gruntwork Philosophy](/GRUNTWORK_PHILOSOPHY.md) document to learn more about how Gruntwork builds production grade infrastructure code. If you are looking for help or +This Module and its Submodules are maintained by [Gruntwork](http://www.gruntwork.io/). Read the [Gruntwork Philosophy](https://github.com/gruntwork-io/terraform-google-sql/blob/master/GRUNTWORK_PHILOSOPHY.md) document to learn more about how Gruntwork builds production grade infrastructure code. If you are looking for help or commercial support, send an email to [support@gruntwork.io](mailto:support@gruntwork.io?Subject=Google%20SQL%20Module). @@ -79,13 +79,13 @@ Gruntwork can help with: ## How do I contribute to this Module? -Contributions are very welcome! Check out the [Contribution Guidelines](/CONTRIBUTING.md) for instructions. +Contributions are very welcome! Check out the [Contribution Guidelines](https://github.com/gruntwork-io/terraform-google-sql/blob/master/CONTRIBUTING.md) for instructions. ## How is this Module versioned? This Module follows the principles of [Semantic Versioning](http://semver.org/). You can find each new release, along -with the changelog, in the [Releases Page](../../releases). +with the changelog, in the [Releases Page](https://github.com/gruntwork-io/terraform-google-sql/releases). During initial development, the major version will be 0 (e.g., `0.x.y`), which indicates the code does not yet have a stable API. Once we hit `1.0.0`, we will make every effort to maintain a backwards compatible API and use the MAJOR, @@ -94,6 +94,6 @@ MINOR, and PATCH versions on each release to indicate any incompatibilities. ## License -Please see [LICENSE](/LICENSE) for how the code in this repo is licensed. +Please see [LICENSE](https://github.com/gruntwork-io/terraform-google-sql/blob/master/LICENSE.txt) for how the code in this repo is licensed. Copyright © 2019 Gruntwork, Inc. diff --git a/modules/cloud-sql/README.md b/modules/cloud-sql/README.md index 2fab1cd..0dbe52a 100644 --- a/modules/cloud-sql/README.md +++ b/modules/cloud-sql/README.md @@ -11,12 +11,12 @@ This module helps you run [MySQL](https://cloud.google.com/sql/docs/mysql/) and ## How do you use this module? -See the [examples](/examples) folder for an example. +See the [examples](https://github.com/gruntwork-io/terraform-google-sql/tree/master/examples) folder for an example. ## How do you configure this module? This module allows you to configure a number of parameters, such as high availability, backup windows, maintenance window and replicas. -For a list of all available variables and their descriptions, see [variables.tf](./variables.tf). +For a list of all available variables and their descriptions, see [variables.tf](https://github.com/gruntwork-io/terraform-google-sql/blob/master/modules/cloud-sql/variables.tf). ## How do you connect to the database? @@ -96,7 +96,7 @@ See https://github.com/terraform-providers/terraform-provider-google/issues/2446 Retrieving and outputting distinct values from list of maps is not possible with resources using `count` prior to `terraform 0.12`. Instead we have to output the values JSON encoded - for example `read_replica_server_ca_certs`. For full details of the outputs and -their format, see [outputs.tf](./outputs.tf). +their format, see [outputs.tf](https://github.com/gruntwork-io/terraform-google-sql/blob/master/modules/cloud-sql/outputs.tf). See https://github.com/hashicorp/terraform/issues/17048