From 947d0e68c15c7fc06fb4eee4bf466ade744d8cb4 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Thu, 16 May 2024 11:38:36 +0200 Subject: [PATCH] Fix the paths of the modules in the manila shares. --- .../manila-swarm-shares/main.tf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/openstack-tf/d4s-production/manila-shares-used-by-swarm-stacks/manila-swarm-shares/main.tf b/openstack-tf/d4s-production/manila-shares-used-by-swarm-stacks/manila-swarm-shares/main.tf index 8741139..ca610cd 100644 --- a/openstack-tf/d4s-production/manila-shares-used-by-swarm-stacks/manila-swarm-shares/main.tf +++ b/openstack-tf/d4s-production/manila-shares-used-by-swarm-stacks/manila-swarm-shares/main.tf @@ -4,7 +4,7 @@ terraform { required_providers { openstack = { source = "terraform-provider-openstack/openstack" - version = "~> 1.53.0" + version = ">= 1.53.0" } } } @@ -13,7 +13,7 @@ data "terraform_remote_state" "privnet_dns_router" { backend = "local" config = { - path = "../project-setup/terraform.tfstate" + path = "../../project-setup/terraform.tfstate" } } @@ -21,17 +21,17 @@ data "terraform_remote_state" "main_infrastructure" { backend = "local" config = { - path = "../basic-infrastructure/terraform.tfstate" + path = "../../basic-infrastructure/terraform.tfstate" } } # SSH settings module "ssh_settings" { - source = "../../modules/ssh-key-ref" + source = "../../../modules/ssh-key-ref" } # # Uses common_variables as module # module "common_variables" { - source = "../../modules/common_variables" + source = "../../../modules/common_variables" }