From b8cc2038e5b349465a4198a49abd3e1b81ce07c9 Mon Sep 17 00:00:00 2001 From: Rafael Laszlo <rlacko99@gmail.com> Date: Tue, 9 Nov 2021 12:58:38 +0100 Subject: [PATCH] Update terraform init.sh to bootstrap.sh --- terraform/README.md | 6 +++--- terraform/{init.sh => bootstrap.sh} | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename terraform/{init.sh => bootstrap.sh} (100%) diff --git a/terraform/README.md b/terraform/README.md index 1fe9292..9b41fe9 100644 --- a/terraform/README.md +++ b/terraform/README.md @@ -20,7 +20,7 @@ repository which can be created under If you don't want to create a token for each project just create one for your user and use that. -After you created the `login.sh` file, just run the `init.sh` +After you created the `login.sh` file, just run the `bootstrap.sh` file which configures the repository and your environment. `Infrastructure` should be enabled for the Repository! @@ -37,14 +37,14 @@ First time: cp secret/login.sh.example secret/login.sh nano secret/login.sh # ... -./init.sh +./bootstrap.sh terraform plan ``` After it was initialized: ```bash -./init.sh +./bootstrap.sh terraform plan ``` diff --git a/terraform/init.sh b/terraform/bootstrap.sh similarity index 100% rename from terraform/init.sh rename to terraform/bootstrap.sh -- GitLab