Skip to content

Commit b4334c7

Browse files
committed
Fix a bunch of typos
1 parent 8a811f2 commit b4334c7

File tree

20 files changed

+31
-33
lines changed

20 files changed

+31
-33
lines changed

docs/2.0/docs/accountfactory/guides/collaborators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The options are `pull`, `triage`, `push`, `maintain`, `admin`, or a custom repos
3434

3535
To add a team to new delegated repositories add a new item to the collaborators block in your account factory configuration.
3636

37-
All collaborators in each account type will be added to new repositories of that type when the repository is createde. If you want to add a team to vended repositories of different types you will need to add them in multiple places.
37+
All collaborators in each account type will be added to new repositories of that type when the repository is created. If you want to add a team to vended repositories of different types you will need to add them in multiple places.
3838

3939
A common scenario is to create a team for administration that is granted access everywhere, and individual teams for each delegated repository.
4040

docs/2.0/docs/accountfactory/guides/delegated-repositories.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ The following options are particularly relevant for delegated repositories and y
1919

2020
#### Catalog Repositories
2121

22-
Catalog Repositories are what your developer teams will use when running `terragrunt catalog` within their delegated repository. This defaults to your `infrastructure-modules` reposistory but you can customize this list and the values will be vended into the newly createed repository.
22+
Catalog Repositories are what your developer teams will use when running `terragrunt catalog` within their delegated repository. This defaults to your `infrastructure-modules` repository but you can customize this list and the values will be vended into the newly created repository.
2323

2424
[catalog-repositories](/2.0/reference/accountfactory/configurations#catalog-repositories)
2525

2626

27-
#### GitHub Collaboratoes
27+
#### GitHub Collaborators
2828

2929
GitHub Collaborators is a list of teams to automatically grant access to the new repository. This is optional to use as you can also manually set up access controls, but we do recommend configuring some teams and permissions to smooth out the vending process.
3030

@@ -128,7 +128,7 @@ To summarize, at this point you will have:
128128
- Provisioned a new AWS account(s)
129129
- Applied baselines for the new account(s)
130130
- Created a new repository to manage infrastructure changes in this account(s)
131-
- Configured new IAM roles to manage permissions in the delgated repository
131+
- Configured new IAM roles to manage permissions in the delegated repository
132132
- Bootstrapped the repository ready to add new infrastructure
133133

134134
You can now start adding new infrastructure to the delegated repository.

docs/2.0/docs/accountfactory/guides/iam-roles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,6 @@ See the full description of the `iam_policy` input [in the library reference](/r
6464

6565
To add IAM roles to all delegated repositories you can modify the base roles in `_envcommon/landingzone/delegated-pipelines-plan-role.hcl` and `_envcommon/landingzone/delegated-pipelines-apply-role.hcl`.
6666

67-
These HCL files also contain a `iam_policy` block which is already populated with the necesary policies for terragrunt to store state and perform barebones plans and applies.
67+
These HCL files also contain a `iam_policy` block which is already populated with the necessary policies for terragrunt to store state and perform bare-bones plans and applies.
6868

6969
You can expand this block by adding new policy descriptions, and they will be granted to all delegated repositories.

docs/2.0/docs/accountfactory/guides/vend-aws-account.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
The Account Factory Workflow in your `infrastructure-live-root` repository can be used to vend new AWS accounts. It takes a single input consisting of a JSON payload that you can generate from the `account-factory-inputs.html` web page.
66

7-
We use a JSON payload to support more vending opitions, as GitHub Workflows are limited to only 10 inputs.
7+
We use a JSON payload to support more vending options, as GitHub Workflows are limited to only 10 inputs.
88

99
:::note
1010
This guide pertains only to non-delegated repositories. Enterprise customers are also able to [use Account Factory to create new Delegated Repositories](/2.0/docs/accountfactory/guides/delegated-repositories).

docs/2.0/docs/library/architecture/opentofu-terraform-compatibility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This is the last version of HashiCorp Terraform that is licensed under the MPLv2
1515

1616
## What if I want to use a version of Terraform above v1.5.7?
1717

18-
Going forward, we recommend that all Gruntwork customers adopt [OpenTofu](https://opentofu.org/) as a "drop-in" replacement for HashiCorp Terraform. We will be developing against OpenTofu releases, testing for compatiability with OpenTofu, and offering full support for any issues you experience with our modules and OpenTofu.
18+
Going forward, we recommend that all Gruntwork customers adopt [OpenTofu](https://opentofu.org/) as a "drop-in" replacement for HashiCorp Terraform. We will be developing against OpenTofu releases, testing for compatibility with OpenTofu, and offering full support for any issues you experience with our modules and OpenTofu.
1919

2020
## As a user of Gruntwork Library, do I need to change anything?
2121

docs/2.0/docs/library/concepts/principles/control-provider-usage.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ There are two main methods for controlling the provider used in OpenTofu/Terrafo
99

1010
Generally speaking, follow [OpenTofu recommendations](https://opentofu.org/docs/language/providers/requirements/#best-practices-for-provider-versions) regarding specifying the minimum provider version for any providers used by modules authored as part of the library.
1111

12-
This recommendation is useful guidance for ensuring that the feature set used as part of modules being authored for the library are available in provider verisons end users install.
12+
This recommendation is useful guidance for ensuring that the feature set used as part of modules being authored for the library are available in provider versions end users install.
1313

1414
You can do that by using a `required_provider` configuration block like the following:
1515

@@ -30,7 +30,7 @@ Because only one version of a provider is ultimately installed by end users, con
3030

3131
An exception to the general rule of avoiding pinning maximum provider versions in modules is to prevent a module from pulling in breaking changes from a future version of a provider.
3232

33-
## Comitting `.terraform.lock.hcl` File
33+
## Committing `.terraform.lock.hcl` File
3434

3535
When running `tofu init` in a directory with `.tf` files, a [`.terraform.lock.hcl`](https://opentofu.org/docs/language/files/dependency-lock) file will be automatically generated if it doesn't exist.
3636

@@ -39,4 +39,3 @@ This file shouldn't be committed in module repositories, but should be committed
3939
When using Terragrunt, note how [Terragrunt handles lock files](https://terragrunt.gruntwork.io/docs/features/lock-file-handling/).
4040

4141
Keep this behavior in mind when deciding how to handle `.terraform.lock.hcl` files in modules.
42-

docs/2.0/docs/library/guides/contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ to include the following:
5454
As a Gruntwork customer you will have *read* access to Gruntwork repositories. This means you will not be able to push a branch directly
5555
to our repositories. Instead, to open a pull request you should:
5656

57-
* Fork our repositories into a repository in an organiztion you have write access to
57+
* Fork our repositories into a repository in an organization you have write access to
5858
* Push a branch to your repository
5959
* Open a PR in our repository with the base as our main/master branch, and the "compare" branch being the branch in your repository.
6060

docs/2.0/docs/overview/concepts/iac-platform.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ Gruntwork's platform is built for teams adopting OpenTofu and Terragrunt. Our pr
44

55
## Do I have to use Terragrunt?
66

7-
Several Gruntwork platform products, such as [Pipelines](/2.0/docs/pipelines/concepts/overview) and [Account Factory](/2.0/docs/accountfactory/concepts/) are built explicitly ontop of features of Terragrunt and thus require that organizations adopt Terragrunt as part of their IaC platform. Other products, such as the [Library](/2.0/docs/library/concepts/overview) can be used with or without Terragrunt. We generally do advise Library customers to adopt Terragrunt, we have built Terragrunt specifically to solve problems related to orchestrating OpenTofu at scale and we can best help you achieve a successful implementation if you are using Terragrunt.
7+
Several Gruntwork platform products, such as [Pipelines](/2.0/docs/pipelines/concepts/overview) and [Account Factory](/2.0/docs/accountfactory/concepts/) are built explicitly on top of features of Terragrunt and thus require that organizations adopt Terragrunt as part of their IaC platform. Other products, such as the [Library](/2.0/docs/library/concepts/overview) can be used with or without Terragrunt. We generally do advise Library customers to adopt Terragrunt, we have built Terragrunt specifically to solve problems related to orchestrating OpenTofu at scale and we can best help you achieve a successful implementation if you are using Terragrunt.

docs/2.0/docs/patcher/concepts/grouping.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ When generating pull requests in CI, the workflow generally involves first invok
4646

4747
### Patcher Report
4848

49-
Patcher [report](/2.0/reference/patcher/#report) accepts a `--include-dirs` argument. When passed, this will cause `patcher report` to only output updates matching the glob pattern specified. This allows the developer to in essence limit the resulting PR to only a single environment. By invoking `patcher report` multiple times with different `--include-dirs` arguments, the developer can in effect create different PR worklfows for each environment.
49+
Patcher [report](/2.0/reference/patcher/#report) accepts a `--include-dirs` argument. When passed, this will cause `patcher report` to only output updates matching the glob pattern specified. This allows the developer to in essence limit the resulting PR to only a single environment. By invoking `patcher report` multiple times with different `--include-dirs` arguments, the developer can in effect create different PR workflows for each environment.
5050

5151
Patcher `report` outputs in JSON which can be inspected or iterated over to achieve desired behaviors.
5252

docs/2.0/docs/patcher/guides/report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Example usage:
88
patcher report prod
99
```
1010

11-
The report command outpust a list of module dependencies in JSON format to `stdout`, for example:
11+
The report command outputs a list of module dependencies in JSON format to `stdout`, for example:
1212
```json
1313
[
1414
"gruntwork-io/terraform-aws-monitoring/logs/load-balancer-access-logs",

0 commit comments

Comments
 (0)