From 72fd1f706d09601e61e3ad6c96ca8255aa419b65 Mon Sep 17 00:00:00 2001 From: Jamie Rajewski <25068017+jamierajewski@users.noreply.github.com> Date: Mon, 16 Aug 2021 12:05:30 -0600 Subject: [PATCH 1/2] Add note about missing info in repo --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 4c02700..6f92350 100755 --- a/README.md +++ b/README.md @@ -55,6 +55,11 @@ Fill in `/setup-env.sh` with your SSH key location and the path to the OpenStack if you want to be prompted for them each time you run a Terraform command. DO NOT FILL IN `/terraform/variables.tf`; instead, fill in `/terraform/variables.tfvars` which allows you to keep your credentials separated from the variable template. **DO NOT COMMIT WITH YOUR INFORMATION FILLED IN**. +**NOTE** - Certain information is not included in the repository, as it is hosted in an NFS drive which gets mounted when provisioned. This includes: +- LDAP configuration and database +- User home directories (that correspond to the LDAP accounts) +- Grafana and Prometheus dashboards and configuration + ## Build VM Images The VM images are located under `/packer/vm-profiles`. The images are dependent on one another in sensical ways to keep build times down the higher up the stack you go, while also keeping the profiles themselves concise and lacking repetition. The hierarchy is as follows: From f279eff248331e01ac132b5e827b695f0f517655 Mon Sep 17 00:00:00 2001 From: Jamie Rajewski <25068017+jamierajewski@users.noreply.github.com> Date: Mon, 16 Aug 2021 12:23:35 -0600 Subject: [PATCH 2/2] Clarify what data is available in the OS RC file --- terraform/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/variables.tf b/terraform/variables.tf index 13e9ad5..70da956 100755 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -74,7 +74,7 @@ variable "domain_name" { } variable "project_id" { - description = "Project ID, found on OpenStack" + description = "Project ID (found in OpenStack RC file)" type = string }