From eaa0b1f05ae7494c8538e82d1caa5281d249e867 Mon Sep 17 00:00:00 2001 From: Lewis Christie Date: Tue, 5 Nov 2024 14:04:10 -0700 Subject: [PATCH 1/5] Fix some anchors --- ...eferences-to-the-gruntwork-infrastructure-as-code-library.md | 2 +- .../deployment-walkthrough/step-3-deploy-new-modules.md | 2 +- ...eferences-to-the-gruntwork-infrastructure-as-code-library.md | 2 +- ...eferences-to-the-gruntwork-infrastructure-as-code-library.md | 2 +- src/components/HclListItem.tsx | 2 ++ 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/guides/stay-up-to-date/cis/cis-1.3.0/deployment-walkthrough/step-1-update-references-to-the-gruntwork-infrastructure-as-code-library.md b/docs/guides/stay-up-to-date/cis/cis-1.3.0/deployment-walkthrough/step-1-update-references-to-the-gruntwork-infrastructure-as-code-library.md index c0f1f0d3d9..5133532484 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.3.0/deployment-walkthrough/step-1-update-references-to-the-gruntwork-infrastructure-as-code-library.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.3.0/deployment-walkthrough/step-1-update-references-to-the-gruntwork-infrastructure-as-code-library.md @@ -41,7 +41,7 @@ v0.7.0, v0.8.0, and v0.9.0 to get the full list of backward incompatible updates The following table provides a summary of all the relevant Gruntwork AWS modules and the respective versions that are compatible with CIS AWS v1.3.0: - +##### Compatibility Table diff --git a/docs/guides/stay-up-to-date/cis/cis-1.3.0/deployment-walkthrough/step-3-deploy-new-modules.md b/docs/guides/stay-up-to-date/cis/cis-1.3.0/deployment-walkthrough/step-3-deploy-new-modules.md index 44e7dde023..317336d65f 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.3.0/deployment-walkthrough/step-3-deploy-new-modules.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.3.0/deployment-walkthrough/step-3-deploy-new-modules.md @@ -11,7 +11,7 @@ accidentally to a resource such as AWS Elastic Load Balancer (ELB), which can da achieve this recommendation, check out the [example](https://github.com/gruntwork-io/terraform-aws-cis-service-catalog/tree/v0.10.0/examples/cleanup-expired-certs/terraform) of the ready-made `cleanup-expired-certs` module. For the code examples of deploying this module, see the -[relevant section](../../../../build-it-yourself/achieve-compliance/production-grade-design/identity-and-access-management.md#cleanup-expired-ssl-tls-certificates) +[relevant section](../../../../build-it-yourself/achieve-compliance/production-grade-design/identity-and-access-management.md#cleanup-expired-ssltls-certificates) of our "How to achieve compliance with the CIS AWS Foundations Benchmark" guide. ## 2. Deploy IAM Access Analyzer module (recommendation 1.21) diff --git a/docs/guides/stay-up-to-date/cis/cis-1.4.0/deployment-walkthrough/step-1-update-references-to-the-gruntwork-infrastructure-as-code-library.md b/docs/guides/stay-up-to-date/cis/cis-1.4.0/deployment-walkthrough/step-1-update-references-to-the-gruntwork-infrastructure-as-code-library.md index 51bff54092..8414bd07a9 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.4.0/deployment-walkthrough/step-1-update-references-to-the-gruntwork-infrastructure-as-code-library.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.4.0/deployment-walkthrough/step-1-update-references-to-the-gruntwork-infrastructure-as-code-library.md @@ -21,7 +21,7 @@ v0.7.0, v0.8.0, and v0.9.0 to get the full list of backward incompatible updates The following table provides a summary of all the relevant Gruntwork AWS modules and the respective versions that are compatible with CIS AWS v1.4.0: - +##### Compatibility Table
diff --git a/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md b/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md index b53e575367..a5ce7cc126 100644 --- a/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md +++ b/docs/guides/stay-up-to-date/cis/cis-1.5.0/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md @@ -12,7 +12,7 @@ versions of the Gruntwork library to pick up the changes necessary for your infr The following table provides a summary of all the relevant Gruntwork AWS modules and the respective versions that are compatible with CIS AWS v1.5.0: - +##### Compatibility Table
diff --git a/src/components/HclListItem.tsx b/src/components/HclListItem.tsx index 595faeaaa1..00fc85dc49 100644 --- a/src/components/HclListItem.tsx +++ b/src/components/HclListItem.tsx @@ -1,5 +1,6 @@ import React, { PropsWithChildren } from "react" import styles from "./HclListItem.module.css" +import useBrokenLinks from '@docusaurus/useBrokenLinks'; interface HclListItemProps { name: string @@ -10,6 +11,7 @@ interface HclListItemProps { export const HclListItem: React.FunctionComponent< PropsWithChildren > = ({ name, requirement, type, children }) => { + useBrokenLinks().collectAnchor(name); return (
From 03faf813d549726f0dc1d8bfbfa43be885a651ad Mon Sep 17 00:00:00 2001 From: Lewis Christie Date: Tue, 5 Nov 2024 14:20:12 -0700 Subject: [PATCH 2/5] Fix broken anchors --- .../stay-up-to-date/releases/2018-11/index.md | 2 +- .../stay-up-to-date/releases/2018-12/index.md | 2 +- .../stay-up-to-date/releases/2019-01/index.md | 2 +- ...ng-common-configurations-for-a-component.md | 18 +++--------------- 4 files changed, 6 insertions(+), 18 deletions(-) diff --git a/docs/guides/stay-up-to-date/releases/2018-11/index.md b/docs/guides/stay-up-to-date/releases/2018-11/index.md index 1b26dff4c2..de93a89de2 100644 --- a/docs/guides/stay-up-to-date/releases/2018-11/index.md +++ b/docs/guides/stay-up-to-date/releases/2018-11/index.md @@ -12,7 +12,7 @@ Here are the repos that were updated: - [gruntkms](#gruntkms) - [gruntwork](#gruntwork) -- [package-k8s](#package-k-8-s) +- [package-k8s](#package-k8s) - [terraform-aws-ci](#terraform-aws-ci) - [terraform-aws-data-storage](#terraform-aws-data-storage) - [terraform-aws-ecs](#terraform-aws-ecs) diff --git a/docs/guides/stay-up-to-date/releases/2018-12/index.md b/docs/guides/stay-up-to-date/releases/2018-12/index.md index 43a0e2fbc3..daeeddfe99 100644 --- a/docs/guides/stay-up-to-date/releases/2018-12/index.md +++ b/docs/guides/stay-up-to-date/releases/2018-12/index.md @@ -10,7 +10,7 @@ documentation](/library/stay-up-to-date/updating). Here are the repos that were updated: -- [package-k8s](#package-k-8-s) +- [package-k8s](#package-k8s) - [terraform-aws-asg](#terraform-aws-asg) - [terraform-aws-beanstalk](#terraform-aws-beanstalk) - [terraform-aws-ci](#terraform-aws-ci) diff --git a/docs/guides/stay-up-to-date/releases/2019-01/index.md b/docs/guides/stay-up-to-date/releases/2019-01/index.md index 93a07d35d2..fc7cef9963 100644 --- a/docs/guides/stay-up-to-date/releases/2019-01/index.md +++ b/docs/guides/stay-up-to-date/releases/2019-01/index.md @@ -10,7 +10,7 @@ documentation](/library/stay-up-to-date/updating). Here are the repos that were updated: -- [package-k8s](#package-k-8-s) +- [package-k8s](#package-k8s) - [terraform-aws-asg](#terraform-aws-asg) - [terraform-aws-cache](#terraform-aws-cache) - [terraform-aws-ci](#terraform-aws-ci) diff --git a/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/refactoring-common-configurations-for-a-component.md b/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/refactoring-common-configurations-for-a-component.md index 1b32a8e918..864b8c559a 100644 --- a/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/refactoring-common-configurations-for-a-component.md +++ b/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/refactoring-common-configurations-for-a-component.md @@ -4,13 +4,9 @@ The rest of this guide will cover how to identify and extract the common configu in your Reference Architecture. These steps can be used to refactor any component that is deployed in multiple accounts or environments in your Reference Architecture. -- [Refactoring common configurations for a component](#refactoring-common-configurations-for-a-component) - - [Step 1: Identify the component](#step-1-identify-the-component) - - [Step 2: Identify common configurations](#step-2-identify-common-configurations) - - [Using `diff` to identify raw differences](#using-diff-to-identify-raw-differences) - - [Using JSON rendering to identify semantic differences](#using-json-rendering-to-identify-semantic-differences) - - [Step 3: Extract common configurations](#step-3-extract-common-configurations) - - [Step 4: Update child configurations](#step-4-update-child-configurations) +import TOCInline from '@theme/TOCInline'; + + ## Step 1: Identify the component @@ -92,14 +88,6 @@ identified as different across environments. There are a couple ways to go about this depending on how complex the underlying configuration files are, and how much customization has been made since the deployment of the Reference Architecture. -- [Refactoring common configurations for a component](#refactoring-common-configurations-for-a-component) - - [Step 1: Identify the component](#step-1-identify-the-component) - - [Step 2: Identify common configurations](#step-2-identify-common-configurations) - - [Using `diff` to identify raw differences](#using-diff-to-identify-raw-differences) - - [Using JSON rendering to identify semantic differences](#using-json-rendering-to-identify-semantic-differences) - - [Step 3: Extract common configurations](#step-3-extract-common-configurations) - - [Step 4: Update child configurations](#step-4-update-child-configurations) - ### Using `diff` to identify raw differences If you haven’t made many modifications to the component since the Reference Architecture was deployed, we recommend From 2e0efb2a87a868f07d20785f6445b37c9ee219f7 Mon Sep 17 00:00:00 2001 From: Lewis Christie Date: Tue, 5 Nov 2024 14:47:31 -0700 Subject: [PATCH 3/5] Fix some anchors --- ...g-common-configurations-for-a-component.md | 2 +- ...runtwork-infrastructure-as-code-library.md | 3 +-- ...runtwork-infrastructure-as-code-library.md | 3 +-- .../terraform-12/deployment-walkthrough.md | 22 +++++++++---------- 4 files changed, 14 insertions(+), 16 deletions(-) diff --git a/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/refactoring-common-configurations-for-a-component.md b/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/refactoring-common-configurations-for-a-component.md index 864b8c559a..423e2e423c 100644 --- a/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/refactoring-common-configurations-for-a-component.md +++ b/docs/guides/stay-up-to-date/terraform/how-to-dry-your-reference-architecture/deployment-walkthrough/refactoring-common-configurations-for-a-component.md @@ -39,7 +39,7 @@ Example inventory: - `logs/us-west-2/mgmt/ecs-deploy-runner` - `security/us-west-2/mgmt/ecs-deploy-runner` -As mentioned in the [Background](../core-concepts.md#background), the changes will be isolated to Terragrunt configuration files (syntactic changes vs +As mentioned in the [Background](../core-concepts.md), the changes will be isolated to Terragrunt configuration files (syntactic changes vs semantic changes) and there will be no need to roll out the changes using `terraform`. Given that, the order in which the components are updated does not matter. You can update the components in whatever order you would like. diff --git a/docs/guides/stay-up-to-date/terraform/terraform-1.1/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md b/docs/guides/stay-up-to-date/terraform/terraform-1.1/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md index e938603add..06174b73c4 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-1.1/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-1.1/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md @@ -9,8 +9,7 @@ references to the Gruntwork Infrastructure as Code Library to use a compatible version. We (Gruntwork) have gone through all our modules in the library to test and update the code to be compatible with Terraform 1.1. As a customer, you need to update to the proper versions of the Gruntwork library to pick up the -fixes/changes that we made to be compatible. Refer to [the "Updating to new versions" section of -"Stay Up to Date"](/library/stay-up-to-date/updating#updating) +fixes/changes that we made to be compatible. Refer to [Updating Modules](/2.0/docs/library/guides/updating-modules) for instructions on how to update the versions in your code. The releases of the modules from the Gruntwork Infrastructure as Code Library that correspond with the diff --git a/docs/guides/stay-up-to-date/terraform/terraform-1.x/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md b/docs/guides/stay-up-to-date/terraform/terraform-1.x/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md index 436d56f594..f6643a1d37 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-1.x/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-1.x/deployment-walkthrough/step-2-update-references-to-the-gruntwork-infrastructure-as-code-library.md @@ -9,8 +9,7 @@ references to the Gruntwork Infrastructure as Code Library to use a compatible version. We (Gruntwork) have gone through all our modules in the library to test and update the code to be compatible with Terraform 1.x. As a customer, you need to update to the proper versions of the Gruntwork library to pick up the -fixes/changes that we made to be compatible. Refer to [the "Updating to new versions" section of -"Stay Up to Date"](/library/stay-up-to-date/updating#updating) +fixes/changes that we made to be compatible. Refer to [Updating Modules](/2.0/docs/library/guides/updating-modules) for instructions on how to update the versions in your code. For the vast majority of the repos, the only change that will be necessary is a diff --git a/docs/guides/stay-up-to-date/terraform/terraform-12/deployment-walkthrough.md b/docs/guides/stay-up-to-date/terraform/terraform-12/deployment-walkthrough.md index 7110693615..296b4cd247 100644 --- a/docs/guides/stay-up-to-date/terraform/terraform-12/deployment-walkthrough.md +++ b/docs/guides/stay-up-to-date/terraform/terraform-12/deployment-walkthrough.md @@ -22,10 +22,10 @@ gotchas that the upgrade tool occasionally misses. Here is the rough process: -1. [Install and setup Terraform 0.12](#install-and-setup-terraform-12) -1. [Upgrade each module for 0.12 compatibility](#upgrade-each-module-for-1compatibility) +1. [Install and setup Terraform 0.12](#install-and-setup-terraform-012) +1. [Upgrade each module for 0.12 compatibility](#upgrade-each-module-for-012-compatibility) -### Install and setup Terraform 0.12 +### Install and setup Terraform 0.12 To use Terraform 0.12, you will need to have the binary available on your machine. However, you don't want to blindly replace your existing `terraform` binary to the newer version, because that would mean you wouldn't be able to use the @@ -104,7 +104,7 @@ terraform version You can find the available binaries for each terraform version [here](https://releases.hashicorp.com/terraform/). -### Upgrade each module for 0.12 compatibility +### Upgrade each module for 0.12 compatibility To upgrade each of your modules to HCL2 syntax, you can run the `terraform 0.12upgrade` command using version 0.12.x of the `terraform` binary. You will need to do the following for each of your Terraform modules (e.g in your @@ -172,14 +172,14 @@ terragrunt `terraform.tfvars` files to the new syntax. Here is the rough process: -1. [Install and setup Terragrunt 0.19](#install-and-setup-terragrunt-19) -1. [Migrate terraform.tfvars to terragrunt.hcl](#migrate-terraform-tfvars-to-terragrunt-hcl) +1. [Install and setup Terragrunt 0.19](#install-and-setup-terragrunt-019) +1. [Migrate terraform.tfvars to terragrunt.hcl](#migrate-terraformtfvars-to-terragrunthcl) 1. [Switch common tfvars files to use yaml](#switch-common-tfvars-files-to-use-yaml) -### Install and setup Terragrunt 0.19 +### Install and setup Terragrunt 0.19 You will also need to setup the Terragrunt 0.19 binary in a [similar fashion to setting up Terraform -0.12](#install-and-setup-terraform-0-12). You can use the same instructions available for managing Terraform 0.12 as for +0.12](#install-and-setup-terraform-012). You can use the same instructions available for managing Terraform 0.12 as for managing Terragrunt 0.19. - [Using homebrew to manage multiple terragrunt versions](#using-homebrew-to-manage-multiple-terraform-versions) @@ -219,7 +219,7 @@ versions](#manually-managing-multiple-terraform-versions) to manage multiple ver You can find the available binaries for each terragrunt version [here](https://github.com/gruntwork-io/terragrunt/releases). -### Migrate terraform.tfvars to terragrunt.hcl +### Migrate terraform.tfvars to terragrunt.hcl Once you have terragrunt 0.19 available on your machine, you will need to migrate your `terraform.tfvars` files to `terragrunt.hcl` files before you can start to use the new version. You will need to follow the steps outlined in the @@ -233,7 +233,7 @@ environment to test the changes you are making to that module (e.g [`infrastructure-live/dev/us-east-1/dev/vpc`](https://github.com/gruntwork-io/infrastructure-live-multi-account-acme/tree/dd6dce7f737f8c1bd32466b69e905b2bdd25db80/dev/us-east-1/dev/vpc)). The rough process should be: -1. Upgrade the module to TF12 syntax following the steps [listed above](#upgrade-each-module-for-1compatibility). +1. Upgrade the module to TF12 syntax following the steps [listed above](#upgrade-each-module-for-012-compatibility). 1. Update the live config for a pre-prod environment that deploys the module. 1. Run `terragrunt plan` to verify the changes. Use `--terragrunt-source` so you can point to the updated module (see the docs on [working locally](https://github.com/gruntwork-io/terragrunt#working-locally)). Carefully review to make @@ -257,7 +257,7 @@ module before promoting the changes. Depending on your infrastructure setup, you - Delaying promotion allows you to minimize disruption from environments being in a mixed version state, that might prevent you from addressing issues in downstream modules. -### Switch common tfvars files to use yaml +### Switch common tfvars files to use yaml Terragrunt supports ingesting common `tfvars` files to pass global variables to your terraform modules through the use of [`required_var_files` and `optional_var_files` in the From e7db139ef6e9b55d3ba851b24201ee5932e42c87 Mon Sep 17 00:00:00 2001 From: Lewis Christie Date: Tue, 5 Nov 2024 14:58:54 -0700 Subject: [PATCH 4/5] Fix some anchors --- docs/guides/style/markdown-style-guide.md | 2 +- docs/infrastructure-pipelines/security/audit-log.md | 2 +- docs/support.mdx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/guides/style/markdown-style-guide.md b/docs/guides/style/markdown-style-guide.md index c7267d995d..5fd8d3d91b 100644 --- a/docs/guides/style/markdown-style-guide.md +++ b/docs/guides/style/markdown-style-guide.md @@ -800,7 +800,7 @@ at the end of the file) where readers can find them in context. Please prefer standard Markdown syntax wherever possible and avoid HTML hacks. If you can't seem to accomplish what you want, reconsider whether you really -need it. Except for [big tables](#prefer-lists-to-tables), Markdown meets almost +need it. Except for [big tables](#consider-lists-for-complex-content), Markdown meets almost all needs already. Every bit of HTML or Javascript hacking reduces the readability and portability. diff --git a/docs/infrastructure-pipelines/security/audit-log.md b/docs/infrastructure-pipelines/security/audit-log.md index 726fc65aa1..63a7ba60df 100644 --- a/docs/infrastructure-pipelines/security/audit-log.md +++ b/docs/infrastructure-pipelines/security/audit-log.md @@ -12,7 +12,7 @@ CloudTrail can be configured to automatically store events in an S3 bucket of yo ## How it works -Gruntwork Pipelines provides an audit log of which user performed what action in which account. To accomplish this, Pipelines sets the [AWS STS](https://docs.aws.amazon.com/STS/latest/APIReference/welcome.html) session name using a combination of the initiating GitHub user, the name of Pipelines itself, and the pull request or branch from which the action was triggered. All log data for Gruntwork Pipelines is done using [AWS CloudTrail](https://aws.amazon.com/cloudtrail/). Session names are used in the `User name` field in CloudTrail, allowing those searching the data to clearly identify which user performed an action. For more information on querying the logs see [where you can find logs](#where-you-can-find-logs) and [querying data](#querying-data). +Gruntwork Pipelines provides an audit log of which user performed what action in which account. To accomplish this, Pipelines sets the [AWS STS](https://docs.aws.amazon.com/STS/latest/APIReference/welcome.html) session name using a combination of the initiating GitHub user, the name of Pipelines itself, and the pull request or branch from which the action was triggered. All log data for Gruntwork Pipelines is done using [AWS CloudTrail](https://aws.amazon.com/cloudtrail/). Session names are used in the `User name` field in CloudTrail, allowing those searching the data to clearly identify which user performed an action. For more information on querying the logs see [where you can find logs](#where-you-can-find-logs). ### What gets logged diff --git a/docs/support.mdx b/docs/support.mdx index 63a67ee241..49918ca9c7 100644 --- a/docs/support.mdx +++ b/docs/support.mdx @@ -9,7 +9,7 @@ import CardGroup from "/src/components/CardGroup" # Need Help? -We’re here to assist when you get stuck. Basic support is included with every Gruntwork subscription, providing access to our knowledge base and an active community of users. Our [paid support plans](#paid-support-tiers) offer additional avenues for obtaining support, and guaranteed response times. Lastly, our [Pro Serve](#pro-serve) team offers personalized services via paid engagements to help your team overcome any hurdles you have using your Gruntwork subscription to realize its goals. +We’re here to assist when you get stuck. Basic support is included with every Gruntwork subscription, providing access to our knowledge base and an active community of users. Our [paid support plans](#paid-support-tiers) offer additional avenues for obtaining support, and guaranteed response times. Lastly, our Pro Serve team offers personalized services via paid engagements to help your team overcome any hurdles you have using your Gruntwork subscription to realize its goals. ## Get Support From 17116c96392527af411ae9ff7f8d7f2ed3d73615 Mon Sep 17 00:00:00 2001 From: Lewis Christie Date: Thu, 7 Nov 2024 10:14:00 -0700 Subject: [PATCH 5/5] Revert changes to docsourcer generated files --- docs/guides/stay-up-to-date/releases/2018-11/index.md | 2 +- docs/guides/stay-up-to-date/releases/2018-12/index.md | 2 +- docs/guides/stay-up-to-date/releases/2019-01/index.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/guides/stay-up-to-date/releases/2018-11/index.md b/docs/guides/stay-up-to-date/releases/2018-11/index.md index de93a89de2..1b26dff4c2 100644 --- a/docs/guides/stay-up-to-date/releases/2018-11/index.md +++ b/docs/guides/stay-up-to-date/releases/2018-11/index.md @@ -12,7 +12,7 @@ Here are the repos that were updated: - [gruntkms](#gruntkms) - [gruntwork](#gruntwork) -- [package-k8s](#package-k8s) +- [package-k8s](#package-k-8-s) - [terraform-aws-ci](#terraform-aws-ci) - [terraform-aws-data-storage](#terraform-aws-data-storage) - [terraform-aws-ecs](#terraform-aws-ecs) diff --git a/docs/guides/stay-up-to-date/releases/2018-12/index.md b/docs/guides/stay-up-to-date/releases/2018-12/index.md index daeeddfe99..43a0e2fbc3 100644 --- a/docs/guides/stay-up-to-date/releases/2018-12/index.md +++ b/docs/guides/stay-up-to-date/releases/2018-12/index.md @@ -10,7 +10,7 @@ documentation](/library/stay-up-to-date/updating). Here are the repos that were updated: -- [package-k8s](#package-k8s) +- [package-k8s](#package-k-8-s) - [terraform-aws-asg](#terraform-aws-asg) - [terraform-aws-beanstalk](#terraform-aws-beanstalk) - [terraform-aws-ci](#terraform-aws-ci) diff --git a/docs/guides/stay-up-to-date/releases/2019-01/index.md b/docs/guides/stay-up-to-date/releases/2019-01/index.md index fc7cef9963..93a07d35d2 100644 --- a/docs/guides/stay-up-to-date/releases/2019-01/index.md +++ b/docs/guides/stay-up-to-date/releases/2019-01/index.md @@ -10,7 +10,7 @@ documentation](/library/stay-up-to-date/updating). Here are the repos that were updated: -- [package-k8s](#package-k8s) +- [package-k8s](#package-k-8-s) - [terraform-aws-asg](#terraform-aws-asg) - [terraform-aws-cache](#terraform-aws-cache) - [terraform-aws-ci](#terraform-aws-ci)