Skip to content

Commit 4258384

Browse files
authored
Fix chapter links in guides (#118)
1 parent 34de30e commit 4258384

File tree

10 files changed

+47
-47
lines changed

10 files changed

+47
-47
lines changed

_docs-sources/guides/build-it-yourself/2-landing-zone/0-intro/0-what-youll-learn-in-this-guide.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,25 +24,25 @@ Feel free to read this guide from start to finish or skip around to whatever sec
2424
<CardList>
2525
<Card
2626
title="Core Concepts"
27-
href="../core-concepts/aws-account"
27+
href="/docs/guides/build-it-yourself/landing-zone/core-concepts/aws-account"
2828
>
2929
An overview of the core concepts you need to understand to set up an AWS account structure, including AWS Organizations, IAM Users, IAM Roles, IAM Groups, CloudTrail, and more.
3030
</Card>
3131
<Card
3232
title="Production-grade Design"
33-
href="../production-grade-design/intro"
33+
href="/docs/guides/build-it-yourself/landing-zone/production-grade-design/intro"
3434
>
3535
An overview of how to configure a secure, scalable, highly available AWS account structure that you can rely on in production.
3636
</Card>
3737
<Card
3838
title="Deployment Walkthrough"
39-
href="../deployment-walkthrough/pre-requisites"
39+
href="/docs/guides/build-it-yourself/landing-zone/deployment-walkthrough/pre-requisites"
4040
>
4141
A step-by-step guide to configuring a production-grade AWS account structure using the Gruntwork AWS Landing Zone solution, including how to manage it all with customizable security baselines defined in Terraform.
4242
</Card>
4343
<Card
4444
title="Next Steps"
45-
href="../next-steps"
45+
href="/docs/guides/build-it-yourself/landing-zone/next-steps"
4646
>
4747
What to do once you’ve got your AWS account structure configured.
4848
</Card>

_docs-sources/guides/build-it-yourself/3-pipelines/0-intro/0-what-youll-learn-in-this-guide.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,29 +31,29 @@ Feel free to read this guide from start to finish or skip around to whatever sec
3131
<CardList>
3232
<Card
3333
title="Core Concepts"
34-
href="../core-concepts/why-is-it-important-to-have-ci-cd"
34+
href="/docs/guides/build-it-yourself/pipelines/core-concepts/why-is-it-important-to-have-ci-cd"
3535
>
3636
An overview of the core concepts you need to understand what a typical CI/CD pipeline entails for infrastructure code,
3737
including a comparison with CI/CD for application code, a sample workflow, infrastructure to support CI/CD, and threat
3838
models to consider to protect your infrastructure.
3939
</Card>
4040
<Card
4141
title="Production-grade Design"
42-
href="../production-grade-design/intro"
42+
href="/docs/guides/build-it-yourself/pipelines/production-grade-design/intro"
4343
>
4444
An overview of how to configure a secure, scalable, and robust CI/CD workflow that you can rely on for your
4545
production application and infrastructure code.
4646
</Card>
4747
<Card
4848
title="Deployment Walkthrough"
49-
href="../deployment-walkthrough/pre-requisites"
49+
href="/docs/guides/build-it-yourself/pipelines/deployment-walkthrough/pre-requisites"
5050
>
5151
A step-by-step guide to deploying a production-grade CI/CD pipeline in AWS using code from the Gruntwork
5252
Infrastructure as Code Library.
5353
</Card>
5454
<Card
5555
title="Next Steps"
56-
href="../next-steps"
56+
href="/docs/guides/build-it-yourself/pipelines/next-steps"
5757
>
5858
What to do once you’ve got your CI/CD pipeline set up.
5959
</Card>

_docs-sources/guides/build-it-yourself/4-vpc/0-intro/0-what-youll-learn-in-this-guide.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,26 @@ Feel free to read this guide from start to finish or skip around to whatever sec
2020
<CardList>
2121
<Card
2222
title="Core Concepts"
23-
href="../core-concepts/default-vp-cs-and-custom-vp-cs"
23+
href="/docs/guides/build-it-yourself/vpc/core-concepts/default-vp-cs-and-custom-vp-cs"
2424
>
2525
An overview of the core concepts you need to understand to use VPCs, including subnets, route tables, security
2626
groups, NACLs, peering connections, and endpoints.
2727
</Card>
2828
<Card
2929
title="Production-grade Design"
30-
href="../production-grade-design/intro"
30+
href="/docs/guides/build-it-yourself/vpc/production-grade-design/intro"
3131
>
3232
An overview of how to configure a secure, scalable, highly available VPC that you can rely on in production.
3333
</Card>
3434
<Card
3535
title="Deployment Walkthrough"
36-
href="../deployment-walkthrough/pre-requisites"
36+
href="/docs/guides/build-it-yourself/vpc/deployment-walkthrough/pre-requisites"
3737
>
3838
A step-by-step guide to deploying a production-grade VPC in AWS using code from the Gruntwork Infrastructure as Code Library.
3939
</Card>
4040
<Card
4141
title="Next Steps"
42-
href="../next-steps"
42+
href="/docs/guides/build-it-yourself/vpc/next-steps"
4343
>
4444
What to do once you’ve got your VPC(s) deployed.
4545
</Card>

_docs-sources/guides/build-it-yourself/5-kubernetes-cluster/0-intro/0-what-youll-learn-in-this-guide.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,29 +20,29 @@ This guide will walk you through the process of configuring a production-grade K
2020
<CardList>
2121
<Card
2222
title="Core Concepts"
23-
href="../core-concepts/why-kubernetes"
23+
href="/docs/guides/build-it-yourself/kubernetes-cluster/core-concepts/why-kubernetes"
2424
>
2525
An overview of the core concepts you need to understand to use Kubernetes, including why you may want to use
2626
ubernetes, Kubernetes architecture, the control plane, worker nodes, different ways to run Kubernetes, services,
2727
deployments, auto scaling, auto healing, RBAC, and more.
2828
</Card>
2929
<Card
3030
title="Production-grade Design"
31-
href="../production-grade-design/intro"
31+
href="/docs/guides/build-it-yourself/kubernetes-cluster/production-grade-design/intro"
3232
>
3333
An overview of how to configure a secure, scalable, highly available Kubernetes cluster that you can rely on in
3434
production.
3535
</Card>
3636
<Card
3737
title="Deployment Walkthrough"
38-
href="../deployment-walkthrough/pre-requisites"
38+
href="/docs/guides/build-it-yourself/kubernetes-cluster/deployment-walkthrough/pre-requisites"
3939
>
4040
A step-by-step guide to deploying a production-grade Kubernetes cluster in AWS using code from the Gruntwork
4141
Infrastructure as Code Library.
4242
</Card>
4343
<Card
4444
title="Next Steps"
45-
href="../next-steps"
45+
href="/docs/guides/build-it-yourself/kubernetes-cluster/next-steps"
4646
>
4747
What to do once you’ve got your Kubernetes cluster deployed.
4848
</Card>

_docs-sources/guides/build-it-yourself/6-achieve-compliance/0-intro/0-what-youll-learn-in-this-guide.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,31 +36,31 @@ Feel free to read this guide from start to finish or skip around to whatever sec
3636
<CardList>
3737
<Card
3838
title="Core Concepts"
39-
href="../core-concepts/intro"
39+
href="/docs/guides/build-it-yourself/achieve-compliance/core-concepts/intro"
4040
>
4141
An overview of the AWS Foundations Benchmark, including its control sections and structure.
4242
</Card>
4343
<Card
4444
title="Production-grade Design"
45-
href="../production-grade-design/intro"
45+
href="/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/intro"
4646
>
4747
How to use infrastructure as code to achieve compliance with minimal redundancy and maximum flexibility.
4848
</Card>
4949
<Card
5050
title="Deployment Walkthrough"
51-
href="../deployment-walkthrough/pre-requisites"
51+
href="/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/pre-requisites"
5252
>
5353
A step-by-step guide to achieving compliance using the Gruntwork Infrastructure as Code Library and the Gruntwork CIS AWS Foundations Benchmark wrapper modules.
5454
</Card>
5555
<Card
5656
title="Next Steps"
57-
href="../next-steps"
57+
href="/docs/guides/build-it-yourself/achieve-compliance/next-steps"
5858
>
5959
How to measure and maintain compliance.
6060
</Card>
6161
<Card
6262
title="Traceability Matrix"
63-
href="../traceability-matrix"
63+
href="/docs/guides/build-it-yourself/achieve-compliance/traceability-matrix"
6464
>
6565
A reference table that maps each Benchmark recommendation to the corresponding section in the deployment
6666
walkthrough.

docs/guides/build-it-yourself/2-landing-zone/0-intro/0-what-youll-learn-in-this-guide.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,31 +24,31 @@ Feel free to read this guide from start to finish or skip around to whatever sec
2424
<CardList>
2525
<Card
2626
title="Core Concepts"
27-
href="../core-concepts/aws-account"
27+
href="/docs/guides/build-it-yourself/landing-zone/core-concepts/aws-account"
2828
>
2929
An overview of the core concepts you need to understand to set up an AWS account structure, including AWS Organizations, IAM Users, IAM Roles, IAM Groups, CloudTrail, and more.
3030
</Card>
3131
<Card
3232
title="Production-grade Design"
33-
href="../production-grade-design/intro"
33+
href="/docs/guides/build-it-yourself/landing-zone/production-grade-design/intro"
3434
>
3535
An overview of how to configure a secure, scalable, highly available AWS account structure that you can rely on in production.
3636
</Card>
3737
<Card
3838
title="Deployment Walkthrough"
39-
href="../deployment-walkthrough/pre-requisites"
39+
href="/docs/guides/build-it-yourself/landing-zone/deployment-walkthrough/pre-requisites"
4040
>
4141
A step-by-step guide to configuring a production-grade AWS account structure using the Gruntwork AWS Landing Zone solution, including how to manage it all with customizable security baselines defined in Terraform.
4242
</Card>
4343
<Card
4444
title="Next Steps"
45-
href="../next-steps"
45+
href="/docs/guides/build-it-yourself/landing-zone/next-steps"
4646
>
4747
What to do once you’ve got your AWS account structure configured.
4848
</Card>
4949
</CardList>
5050

5151

5252
<!-- ##DOCS-SOURCER-START
53-
{"sourcePlugin":"Local File Copier","hash":"be6e151f906932cf146e0a7acfecf30d"}
53+
{"sourcePlugin":"Local File Copier","hash":"829d39f3776964115b93199087be35a8"}
5454
##DOCS-SOURCER-END -->

docs/guides/build-it-yourself/3-pipelines/0-intro/0-what-youll-learn-in-this-guide.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,35 +31,35 @@ Feel free to read this guide from start to finish or skip around to whatever sec
3131
<CardList>
3232
<Card
3333
title="Core Concepts"
34-
href="../core-concepts/why-is-it-important-to-have-ci-cd"
34+
href="/docs/guides/build-it-yourself/pipelines/core-concepts/why-is-it-important-to-have-ci-cd"
3535
>
3636
An overview of the core concepts you need to understand what a typical CI/CD pipeline entails for infrastructure code,
3737
including a comparison with CI/CD for application code, a sample workflow, infrastructure to support CI/CD, and threat
3838
models to consider to protect your infrastructure.
3939
</Card>
4040
<Card
4141
title="Production-grade Design"
42-
href="../production-grade-design/intro"
42+
href="/docs/guides/build-it-yourself/pipelines/production-grade-design/intro"
4343
>
4444
An overview of how to configure a secure, scalable, and robust CI/CD workflow that you can rely on for your
4545
production application and infrastructure code.
4646
</Card>
4747
<Card
4848
title="Deployment Walkthrough"
49-
href="../deployment-walkthrough/pre-requisites"
49+
href="/docs/guides/build-it-yourself/pipelines/deployment-walkthrough/pre-requisites"
5050
>
5151
A step-by-step guide to deploying a production-grade CI/CD pipeline in AWS using code from the Gruntwork
5252
Infrastructure as Code Library.
5353
</Card>
5454
<Card
5555
title="Next Steps"
56-
href="../next-steps"
56+
href="/docs/guides/build-it-yourself/pipelines/next-steps"
5757
>
5858
What to do once you’ve got your CI/CD pipeline set up.
5959
</Card>
6060
</CardList>
6161

6262

6363
<!-- ##DOCS-SOURCER-START
64-
{"sourcePlugin":"Local File Copier","hash":"3841b7cace1c48bcc45a198ff5765319"}
64+
{"sourcePlugin":"Local File Copier","hash":"9fadda147564499d6fa99721cd23d902"}
6565
##DOCS-SOURCER-END -->

docs/guides/build-it-yourself/4-vpc/0-intro/0-what-youll-learn-in-this-guide.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,32 +20,32 @@ Feel free to read this guide from start to finish or skip around to whatever sec
2020
<CardList>
2121
<Card
2222
title="Core Concepts"
23-
href="../core-concepts/default-vp-cs-and-custom-vp-cs"
23+
href="/docs/guides/build-it-yourself/vpc/core-concepts/default-vp-cs-and-custom-vp-cs"
2424
>
2525
An overview of the core concepts you need to understand to use VPCs, including subnets, route tables, security
2626
groups, NACLs, peering connections, and endpoints.
2727
</Card>
2828
<Card
2929
title="Production-grade Design"
30-
href="../production-grade-design/intro"
30+
href="/docs/guides/build-it-yourself/vpc/production-grade-design/intro"
3131
>
3232
An overview of how to configure a secure, scalable, highly available VPC that you can rely on in production.
3333
</Card>
3434
<Card
3535
title="Deployment Walkthrough"
36-
href="../deployment-walkthrough/pre-requisites"
36+
href="/docs/guides/build-it-yourself/vpc/deployment-walkthrough/pre-requisites"
3737
>
3838
A step-by-step guide to deploying a production-grade VPC in AWS using code from the Gruntwork Infrastructure as Code Library.
3939
</Card>
4040
<Card
4141
title="Next Steps"
42-
href="../next-steps"
42+
href="/docs/guides/build-it-yourself/vpc/next-steps"
4343
>
4444
What to do once you’ve got your VPC(s) deployed.
4545
</Card>
4646
</CardList>
4747

4848

4949
<!-- ##DOCS-SOURCER-START
50-
{"sourcePlugin":"Local File Copier","hash":"ebdb7ae81367022a94c88ca6fc687b2d"}
50+
{"sourcePlugin":"Local File Copier","hash":"76bd75277bb1a3ebced828e532950f87"}
5151
##DOCS-SOURCER-END -->

docs/guides/build-it-yourself/5-kubernetes-cluster/0-intro/0-what-youll-learn-in-this-guide.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,35 +20,35 @@ This guide will walk you through the process of configuring a production-grade K
2020
<CardList>
2121
<Card
2222
title="Core Concepts"
23-
href="../core-concepts/why-kubernetes"
23+
href="/docs/guides/build-it-yourself/kubernetes-cluster/core-concepts/why-kubernetes"
2424
>
2525
An overview of the core concepts you need to understand to use Kubernetes, including why you may want to use
2626
ubernetes, Kubernetes architecture, the control plane, worker nodes, different ways to run Kubernetes, services,
2727
deployments, auto scaling, auto healing, RBAC, and more.
2828
</Card>
2929
<Card
3030
title="Production-grade Design"
31-
href="../production-grade-design/intro"
31+
href="/docs/guides/build-it-yourself/kubernetes-cluster/production-grade-design/intro"
3232
>
3333
An overview of how to configure a secure, scalable, highly available Kubernetes cluster that you can rely on in
3434
production.
3535
</Card>
3636
<Card
3737
title="Deployment Walkthrough"
38-
href="../deployment-walkthrough/pre-requisites"
38+
href="/docs/guides/build-it-yourself/kubernetes-cluster/deployment-walkthrough/pre-requisites"
3939
>
4040
A step-by-step guide to deploying a production-grade Kubernetes cluster in AWS using code from the Gruntwork
4141
Infrastructure as Code Library.
4242
</Card>
4343
<Card
4444
title="Next Steps"
45-
href="../next-steps"
45+
href="/docs/guides/build-it-yourself/kubernetes-cluster/next-steps"
4646
>
4747
What to do once you’ve got your Kubernetes cluster deployed.
4848
</Card>
4949
</CardList>
5050

5151

5252
<!-- ##DOCS-SOURCER-START
53-
{"sourcePlugin":"Local File Copier","hash":"0909a6c10c44a3969f80ec9d6af6a18d"}
53+
{"sourcePlugin":"Local File Copier","hash":"62cfb3027052dad19dfb4ab9cf4f35fa"}
5454
##DOCS-SOURCER-END -->

docs/guides/build-it-yourself/6-achieve-compliance/0-intro/0-what-youll-learn-in-this-guide.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,31 +36,31 @@ Feel free to read this guide from start to finish or skip around to whatever sec
3636
<CardList>
3737
<Card
3838
title="Core Concepts"
39-
href="../core-concepts/intro"
39+
href="/docs/guides/build-it-yourself/achieve-compliance/core-concepts/intro"
4040
>
4141
An overview of the AWS Foundations Benchmark, including its control sections and structure.
4242
</Card>
4343
<Card
4444
title="Production-grade Design"
45-
href="../production-grade-design/intro"
45+
href="/docs/guides/build-it-yourself/achieve-compliance/production-grade-design/intro"
4646
>
4747
How to use infrastructure as code to achieve compliance with minimal redundancy and maximum flexibility.
4848
</Card>
4949
<Card
5050
title="Deployment Walkthrough"
51-
href="../deployment-walkthrough/pre-requisites"
51+
href="/docs/guides/build-it-yourself/achieve-compliance/deployment-walkthrough/pre-requisites"
5252
>
5353
A step-by-step guide to achieving compliance using the Gruntwork Infrastructure as Code Library and the Gruntwork CIS AWS Foundations Benchmark wrapper modules.
5454
</Card>
5555
<Card
5656
title="Next Steps"
57-
href="../next-steps"
57+
href="/docs/guides/build-it-yourself/achieve-compliance/next-steps"
5858
>
5959
How to measure and maintain compliance.
6060
</Card>
6161
<Card
6262
title="Traceability Matrix"
63-
href="../traceability-matrix"
63+
href="/docs/guides/build-it-yourself/achieve-compliance/traceability-matrix"
6464
>
6565
A reference table that maps each Benchmark recommendation to the corresponding section in the deployment
6666
walkthrough.
@@ -69,5 +69,5 @@ walkthrough.
6969

7070

7171
<!-- ##DOCS-SOURCER-START
72-
{"sourcePlugin":"Local File Copier","hash":"7ca30366e3ac345298f23d3bcd59a06f"}
72+
{"sourcePlugin":"Local File Copier","hash":"ebb13b17e88425bde70b3c89967a8689"}
7373
##DOCS-SOURCER-END -->

0 commit comments

Comments
 (0)