diff --git a/docs/2.0/docs/pipelines/installation/addingexistinggitlabrepo.mdx b/docs/2.0/docs/pipelines/installation/addingexistinggitlabrepo.mdx index c1f2af5c2..c1259bcbf 100644 --- a/docs/2.0/docs/pipelines/installation/addingexistinggitlabrepo.mdx +++ b/docs/2.0/docs/pipelines/installation/addingexistinggitlabrepo.mdx @@ -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. diff --git a/docs/2.0/docs/pipelines/installation/addingexistingrepo.mdx b/docs/2.0/docs/pipelines/installation/addingexistingrepo.mdx index 5078e7e77..a0ed00401 100644 --- a/docs/2.0/docs/pipelines/installation/addingexistingrepo.mdx +++ b/docs/2.0/docs/pipelines/installation/addingexistingrepo.mdx @@ -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. diff --git a/docs/2.0/docs/pipelines/installation/addinggitlabrepo.mdx b/docs/2.0/docs/pipelines/installation/addinggitlabrepo.mdx index 363746c73..7871dd8e0 100644 --- a/docs/2.0/docs/pipelines/installation/addinggitlabrepo.mdx +++ b/docs/2.0/docs/pipelines/installation/addinggitlabrepo.mdx @@ -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 @@ -351,7 +352,7 @@ For each account you want to bootstrap, you'll need to run the following command ```bash cd /_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 ``` diff --git a/docs/2.0/docs/pipelines/installation/addingnewrepo.mdx b/docs/2.0/docs/pipelines/installation/addingnewrepo.mdx index 1db7c8a97..b3b0ab10a 100644 --- a/docs/2.0/docs/pipelines/installation/addingnewrepo.mdx +++ b/docs/2.0/docs/pipelines/installation/addingnewrepo.mdx @@ -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 @@ -321,7 +323,7 @@ For each account you want to bootstrap, you'll need to run the following command ```bash cd /_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 ```