From 62ae1cb7a1aa6612dcf82a2ca7bc9fe1bb238924 Mon Sep 17 00:00:00 2001 From: Simone Ruffilli Date: Thu, 24 Feb 2022 12:15:12 +0100 Subject: [PATCH] FAST: Project Factory README.md fixes --- fast/stages/03-project-factory/dev/README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/fast/stages/03-project-factory/dev/README.md b/fast/stages/03-project-factory/dev/README.md index b90e845c8..19eda3023 100644 --- a/fast/stages/03-project-factory/dev/README.md +++ b/fast/stages/03-project-factory/dev/README.md @@ -56,9 +56,9 @@ It's of course possible to run this stage in isolation, by making sure the archi If you're running this on top of Fast, you should run the following commands to create the providers file, and populate the required variables from the previous stage. ```bash -# Variable `outputs_location` is set to `../../../config` in stage 01-resman +# Variable `outputs_location` is set to `~/fast-config` in stage 01-resman $ cd fabric-fast/stages/03-project-factory/dev -ln -s ../../../config/03-project-factory-dev/providers.tf +ln -s ~/fast-config/providers/03-project-factory-dev-providers.tf . ``` ### Variable configuration @@ -73,9 +73,10 @@ To avoid the tedious job of filling in the first group of variables with values If you configured a valid path for `outputs_location` in the bootstrap and networking stage, simply link the relevant `terraform-*.auto.tfvars.json` files from this stage's outputs folder (under the path you specified), where the `*` above is set to the name of the stage that produced it. For this stage, a single `.tfvars` file is available: ```bash -# Variable `outputs_location` is set to `../../../config` in stages 01-bootstrap and the 02-networking stage in use -ln -s ../../../config/03-project-factory-dev/terraform-bootstrap.auto.tfvars.json -ln -s ../../../config/03-project-factory-dev/terraform-networking.auto.tfvars.json +# Variable `outputs_location` is set to `~/fast-config` +ln -s ~/fast-config/tfvars/00-bootstrap.auto.tfvars.json . +ln -s ~/fast-config/tfvars/01-resman.auto.tfvars.json . +ln -s ~/fast-config/tfvars/02-networking.auto.tfvars.json . ``` If you're not using Fast, refer to the [Variables](#variables) table at the bottom of this document for a full list of variables, their origin (e.g., a stage or specific to this one), and descriptions explaining their meaning.