Skip to content

Commit f6b441e

Browse files
authored
Cleanup (#605)
1 parent 70562f9 commit f6b441e

File tree

4 files changed

+21
-7
lines changed

4 files changed

+21
-7
lines changed

.gitignore

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@
77
# Generated files
88
.docusaurus
99
.cache-loader
10+
/layouts
11+
/public
12+
/resources
13+
/themes
14+
/tmp
15+
16+
/static/css
17+
/static/js
18+
/static/styleguide
19+
/static/webfonts
1020

1121
# Misc
1222
.env
@@ -65,4 +75,4 @@ static/assets/refarch/**
6575
!content/reference-architecture/sitemap.xml
6676
!content/components/library/aws/_category_.json
6777
!content/github-actions/library/actions/_category_.json
68-
changelog/*
78+
changelog/*

content/docs/reference/terraform-in-depth/terraform-in-depth.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ categories:
1818
We provide a lot of information about how to use Terraform and write Terraform code elsewhere on this site:
1919

2020
- [Terraform Fundamentals](/fundamentals/terraform.md)
21-
- [Terraform Best Practices](/category/best-practices/terraform-best-practices.md)
22-
- [Terraform Tips and Tricks](/category/best-practices/terraform-tips-and-tricks.md)
21+
- [Terraform Best Practices](/reference/best-practices/terraform-best-practices.md)
22+
- [Terraform Tips and Tricks](/reference/best-practices/terraform-tips-tricks.md)
2323

2424
In the articles in this section, we dive into advanced details of Terraform
2525
that require a deeper understanding of Terraform and longer explanation than

content/docs/reference/terraform-in-depth/terraform-unknown-at-plan-time.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ the length of the list to become unknown.
342342

343343
##### Implicit Transformations of Maps
344344

345-
For reasons detailed in [Terraform Count vs For Each](/reference/best-practices/terraform-count-vs-for-each.md),
345+
For reasons detailed in [Terraform Count vs For Each](/reference/terraform-in-depth/terraform-count-vs-for-each.md),
346346
it is usually preferable to use `for_each` rather than `count` to create
347347
multiple resources. However, when using `for_each`, it is required that all
348348
of the keys be known at plan time. If you use a list of strings to make the

package-lock.json

Lines changed: 7 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)