Skip to content

Commit

Permalink
doc: fix a few minor typos (#1576)
Browse files Browse the repository at this point in the history
  • Loading branch information
dannysauer committed Jun 13, 2024
1 parent f8d338c commit 2d6c6d4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions docs/howto/store-plans-in-a-bucket.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ title: "Store plans in a Bucket"
---

### Github
Digger can Github Artifacts to store `terraform plan` outputs. In order to enable it you can set the following argument in digger_workflow.yml:
Digger can use Github Artifacts to store `terraform plan` outputs. In order to enable it you can set the following argument in digger_workflow.yml:

```
upload-plan-destination: github
```

### GCP
You can also configure plan outputs to be uploaded to GCP Buckets instead. This is handy in case you want your plan outputs to stay within your organisation's network for security or compliance reasons.
You can also configure plan outputs to be uploaded to GCP Buckets instead. This is handy in case you want your plan outputs to stay within your organisation's approved storage providers for security or compliance reasons.

To change change digger to upload the plan to GCP set the follow argument in the digger_workflow.yml file
To change digger to upload the plan to GCP set the follow argument in the digger_workflow.yml file

```
with:
Expand Down
4 changes: 2 additions & 2 deletions docs/howto/using-terragrunt.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ There are 2 ways of using Digger with Terragrunt:

[Demo repo](https://github.com/diggerhq/demo-terragrunt-gcp)

Digger using a single terragrunt project if you just list it as a project as follows:
Digger uses a single terragrunt project if you just list it as a project as follows:

```
projects:
Expand All @@ -26,7 +26,7 @@ This will perform a `terragrunt apply` after changes are detected within this di

[Demo repo](https://github.com/diggerhq/test-terragrunt-racecondition)

In many cases with terragrunt you don't want to mention all of your terragrunt components since there can be tens or hundreds of those (not to mention all the dependencies of those). In this case you can just liase it to digger and it will perform dynamic generation of projects for you and trigger the relevant `terragrunt apply` commands on all impacated projects per pull request. It will also handle dependencies of these projects. You can configure this using the following:
In many cases with terragrunt you don't want to mention all of your terragrunt components since there can be tens or hundreds of those (not to mention all the dependencies of those). In this case you can just leave it to digger and it will perform dynamic generation of projects for you before triggering the relevant `terragrunt apply` commands on all impacated projects per pull request. It will also handle dependencies of these projects. You can configure this using the following:

```
generate_projects:
Expand Down
6 changes: 3 additions & 3 deletions docs/howto/versioning.mdx
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
---
title: "Specifying version"
description: "For serious usecases always use a pinned version which is of the form @vX.Y.Z since this will download compiled binary. Addition to being faster to run, it is also more secure than using a commit from a branch"
description: "For serious usecases always use a pinned version which is of the form @vX.Y.Z since this will download a compiled binary. In addition to being faster to run, it is also more secure than using a commit from a branch"
---

<Warning>
For serious usecases always use a pinned version which is of the form @vX.Y.Z
since this will download compiled binary. Addition to being faster to run, it
since this will download a compiled binary. In addition to being faster to run, it
is also more secure than using a commit from a branch
</Warning>

## Use vLatest tag

The default and recommended way of versioning Digger is to use the vLatest tag, which is always pointing to the latest release. The difference compared to just specifying "latest" is that it is a release with pre-built binaries, so it is faster than building from a branch, which using "latest" effectively does.
The default and recommended way of versioning Digger is to use the vLatest tag, which always points to the latest release. The difference compared to just specifying "latest" is that it is a release with pre-built binaries, so it is faster than building from a branch, which using "latest" effectively does.

```
- name: digger
Expand Down

0 comments on commit 2d6c6d4

Please sign in to comment.