Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -352,13 +352,15 @@ For each account you want to bootstrap, you'll need to run the following command
First, make sure that everything is set up correctly by running a plan in the `bootstrap` directory in `name-of-account/_global` where `name-of-account` is the name of the AWS account you want to bootstrap.

```bash title="name-of-account/_global/bootstrap"
terragrunt run --all --non-interactive --provider-cache plan
terragrunt run --all --non-interactive --provider-cache --backend-bootstrap plan
```

:::tip

We're using the `--provider-cache` flag here to ensure that we don't re-download the AWS provider on every run by leveraging the [Terragrunt Provider Cache Server](https://terragrunt.gruntwork.io/docs/features/provider-cache-server/).

We're using the `--backend-bootstrap` flag here to tell Terragrunt to bootstrap the OpenTofu backend automatically for the account.

:::

Next, apply the changes to your account.
Expand Down
4 changes: 3 additions & 1 deletion docs/2.0/docs/pipelines/installation/addingexistingrepo.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -321,13 +321,15 @@ For each account you want to bootstrap, you'll need to run the following command
First, make sure that everything is set up correctly by running a plan in the `bootstrap` directory in `name-of-account/_global` where `name-of-account` is the name of the AWS account you want to bootstrap.

```bash title="name-of-account/_global/bootstrap"
terragrunt run --all --non-interactive --provider-cache plan
terragrunt run --all --non-interactive --provider-cache --backend-bootstrap plan
```

:::tip

We're using the `--provider-cache` flag here to ensure that we don't re-download the AWS provider on every run by leveraging the [Terragrunt Provider Cache Server](https://terragrunt.gruntwork.io/docs/features/provider-cache-server/).

We're using the `--backend-bootstrap` flag here to tell Terragrunt to bootstrap the OpenTofu backend automatically for the account.

:::

Next, apply the changes to your account.
Expand Down
5 changes: 3 additions & 2 deletions docs/2.0/docs/pipelines/installation/addinggitlabrepo.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -234,13 +234,14 @@ You can follow the documentation [here](https://search.opentofu.org/provider/has
First, make sure that everything is set up correctly by running a plan in the `bootstrap` directory in `name-of-account/_global` where `name-of-account` is the name of the first AWS account you want to bootstrap.

```bash title="name-of-account/_global/bootstrap"
terragrunt run --all --non-interactive --provider-cache plan
terragrunt run --all --non-interactive --provider-cache --backend-bootstrap plan
```

:::tip

We're using the `--provider-cache` flag here to ensure that we don't re-download the AWS provider on every run by leveraging the [Terragrunt Provider Cache Server](https://terragrunt.gruntwork.io/docs/features/provider-cache-server/).

We're using the `--backend-bootstrap` flag here to tell Terragrunt to bootstrap the OpenTofu backend automatically for the account.
:::

:::note Progress Checklist
Expand Down Expand Up @@ -351,7 +352,7 @@ For each account you want to bootstrap, you'll need to run the following command

```bash
cd <account-name>/_global/bootstrap
terragrunt run --all --non-interactive --provider-cache plan
terragrunt run --all --non-interactive --provider-cache --backend-bootstrap plan
terragrunt run --all --non-interactive --provider-cache apply
```

Expand Down
6 changes: 4 additions & 2 deletions docs/2.0/docs/pipelines/installation/addingnewrepo.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -206,13 +206,15 @@ You can follow the documentation [here](https://search.opentofu.org/provider/has
First, make sure that everything is set up correctly by running a plan in the `bootstrap` directory in `name-of-account/_global` where `name-of-account` is the name of the first AWS account you want to bootstrap.

```bash title="name-of-account/_global/bootstrap"
terragrunt run --all --non-interactive --provider-cache plan
terragrunt run --all --non-interactive --provider-cache --backend-bootstrap plan
```

:::tip

We're using the `--provider-cache` flag here to ensure that we don't re-download the AWS provider on every run by leveraging the [Terragrunt Provider Cache Server](https://terragrunt.gruntwork.io/docs/features/provider-cache-server/).

We're using the `--backend-bootstrap` flag here to tell Terragrunt to bootstrap the OpenTofu backend automatically for the account.

:::

:::note Progress Checklist
Expand Down Expand Up @@ -321,7 +323,7 @@ For each account you want to bootstrap, you'll need to run the following command

```bash
cd <account-name>/_global/bootstrap
terragrunt run --all --non-interactive --provider-cache plan
terragrunt run --all --non-interactive --provider-cache --backend-bootstrap plan
terragrunt run --all --non-interactive --provider-cache apply
```

Expand Down