From f1d2c9ce356fc1375ba65eb137ff02687964ebbf Mon Sep 17 00:00:00 2001 From: Niall Thomson Date: Fri, 13 Sep 2024 17:13:22 -0600 Subject: [PATCH] Moved lab manifest template our of main manifests directory --- docs/authoring_content.md | 2 +- .../template => templates/lab-manifests}/.workshop/cleanup.sh | 0 .../lab-manifests}/.workshop/terraform/main.tf | 0 .../lab-manifests}/.workshop/terraform/outputs.tf | 0 .../lab-manifests}/.workshop/terraform/vars.tf | 0 5 files changed, 1 insertion(+), 1 deletion(-) rename {manifests/template => templates/lab-manifests}/.workshop/cleanup.sh (100%) rename {manifests/template => templates/lab-manifests}/.workshop/terraform/main.tf (100%) rename {manifests/template => templates/lab-manifests}/.workshop/terraform/outputs.tf (100%) rename {manifests/template => templates/lab-manifests}/.workshop/terraform/vars.tf (100%) diff --git a/docs/authoring_content.md b/docs/authoring_content.md index 83f1ccbec..61d3ed08e 100644 --- a/docs/authoring_content.md +++ b/docs/authoring_content.md @@ -167,7 +167,7 @@ See `lab/Dockerfile` and `lab/scripts/installer.sh` to configure the installed u If Terraform is needed it should be created at `./manifests/modules//.workshop/terraform`. This Terraform will be automatically applied when the user runs `prepare-environment` and destroyed when they move to the next lab. -You can use the directory `manifests/template/.workshop/terraform` as a starter example. The Terraform is treated as a module and the variables in that directory must match exactly in order to meet the "contract" with the rest of the framework. See `vars.tf` and `outputs.tf`. +You can use the directory `templates/lab-manifests/.workshop/terraform` as a starter example. The Terraform is treated as a module and the variables in that directory must match exactly in order to meet the "contract" with the rest of the framework. See `vars.tf` and `outputs.tf`. ### Variables diff --git a/manifests/template/.workshop/cleanup.sh b/templates/lab-manifests/.workshop/cleanup.sh similarity index 100% rename from manifests/template/.workshop/cleanup.sh rename to templates/lab-manifests/.workshop/cleanup.sh diff --git a/manifests/template/.workshop/terraform/main.tf b/templates/lab-manifests/.workshop/terraform/main.tf similarity index 100% rename from manifests/template/.workshop/terraform/main.tf rename to templates/lab-manifests/.workshop/terraform/main.tf diff --git a/manifests/template/.workshop/terraform/outputs.tf b/templates/lab-manifests/.workshop/terraform/outputs.tf similarity index 100% rename from manifests/template/.workshop/terraform/outputs.tf rename to templates/lab-manifests/.workshop/terraform/outputs.tf diff --git a/manifests/template/.workshop/terraform/vars.tf b/templates/lab-manifests/.workshop/terraform/vars.tf similarity index 100% rename from manifests/template/.workshop/terraform/vars.tf rename to templates/lab-manifests/.workshop/terraform/vars.tf