From cc005115cd46eb7288beffc3a6e3b3ce5ef4d0e4 Mon Sep 17 00:00:00 2001 From: Peter Hrvola Date: Thu, 5 Sep 2024 15:08:58 +0200 Subject: [PATCH] Update terraform.md --- commons/content/terraform.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/commons/content/terraform.md b/commons/content/terraform.md index c796aa12..4b1d04f0 100644 --- a/commons/content/terraform.md +++ b/commons/content/terraform.md @@ -16,12 +16,12 @@ For authenticating against the OCI tenancy terraform execute the following [instructions](/commons/content/terraform_authentication.md). ### **2 Clone this Git repo to your Machine** ``` -git clone git@github.com:oracle-quickstart/terraform-oci-open-lz.git +git clone git@github.com:oci-landing-zones/oci-landing-zone-operating-entities.git ``` ### **3 Clone the orchestrator Git repo to your Machine** Cloning the latest version: ``` -git clone git@github.com:oracle-quickstart/terraform-oci-landing-zones-orchestrator.git +git clone git@github.com:oci-landing-zones/terraform-oci-modules-orchestrator.git ``` ### **4 Change the Directory to the Terraform Orchestrator Module** Change the directory to the *terraform-oci-landing-zones-orchestrator* Terraform orchestrator module. @@ -31,10 +31,10 @@ Run ```terraform init``` to download all the required external terraform provide Run ```terraform plan``` with the required configuration files specified using `-var-file`. ``` terraform plan \ --var-file ../terraform-oci-open-lz/commons/content/oci-credentials.tfvars.json \ --var-file ../terraform-oci-open-lz/... \ --var-file ../terraform-oci-open-lz/... \ --var-file ../terraform-oci-open-lz/... \ +-var-file ../oci-landing-zone-operating-entities/commons/content/oci-credentials.tfvars.json \ +-var-file ../oci-landing-zone-operating-entities/... \ +-var-file ../oci-landing-zone-operating-entities/... \ +-var-file ../oci-landing-zone-operating-entities/... \ ``` @@ -50,10 +50,10 @@ The ideal scenario regarding the **state file** will be for each configuration t Run terraform plan with the required configuration files specified using `-var-file`. After its execution the configured resources will be provisioned or updated on OCI. ``` terraform apply \ --var-file ../terraform-oci-open-lz/commons/content/oci-credentials.tfvars.json \ --var-file ../terraform-oci-open-lz/... \ --var-file ../terraform-oci-open-lz/... \ --var-file ../terraform-oci-open-lz/... \ +-var-file ../oci-landing-zone-operating-entities/commons/content/oci-credentials.tfvars.json \ +-var-file ../oci-landing-zone-operating-entities/... \ +-var-file ../oci-landing-zone-operating-entities/... \ +-var-file ../oci-landing-zone-operating-entities/... \ ```