From f3884e21bafdd094daa81572d3bdb78f79d65e1b Mon Sep 17 00:00:00 2001 From: Souhaila Noor Date: Tue, 2 Nov 2021 14:40:06 -0500 Subject: [PATCH] changed directory name for terraform files --- .gitlab/.gitlab-ci.yml | 8 ++++---- {.terraform => molecular-terraform}/main.tf | 0 {.terraform => molecular-terraform}/server.yml | 0 {.terraform => molecular-terraform}/variables.tf | 0 4 files changed, 4 insertions(+), 4 deletions(-) rename {.terraform => molecular-terraform}/main.tf (100%) rename {.terraform => molecular-terraform}/server.yml (100%) rename {.terraform => molecular-terraform}/variables.tf (100%) diff --git a/.gitlab/.gitlab-ci.yml b/.gitlab/.gitlab-ci.yml index fc415a28b..d109853f0 100644 --- a/.gitlab/.gitlab-ci.yml +++ b/.gitlab/.gitlab-ci.yml @@ -143,7 +143,7 @@ init terraform: stage: deploy image: registry.gitlab.com/gitlab-org/terraform-images/stable:latest before_script: - - cd .terraform + - cd molecular-terraform script: - gitlab-terraform init cache: @@ -154,7 +154,7 @@ validate terraform: stage: deploy image: registry.gitlab.com/gitlab-org/terraform-images/stable:latest before_script: - - cd .terraform + - cd molecular-terraform script: - gitlab-terraform validate needs: @@ -167,7 +167,7 @@ plan terraform: stage: deploy image: registry.gitlab.com/gitlab-org/terraform-images/stable:latest before_script: - - cd .terraform + - cd molecular-terraform script: - gitlab-terraform plan -out=plan.tfplan needs: @@ -183,7 +183,7 @@ apply terraform: stage: deploy image: registry.gitlab.com/gitlab-org/terraform-images/stable:latest before_script: - - cd .terraform + - cd molecular-terraform script: - gitlab-terraform apply -input=false plan.tfplan needs: diff --git a/.terraform/main.tf b/molecular-terraform/main.tf similarity index 100% rename from .terraform/main.tf rename to molecular-terraform/main.tf diff --git a/.terraform/server.yml b/molecular-terraform/server.yml similarity index 100% rename from .terraform/server.yml rename to molecular-terraform/server.yml diff --git a/.terraform/variables.tf b/molecular-terraform/variables.tf similarity index 100% rename from .terraform/variables.tf rename to molecular-terraform/variables.tf