Fix the paths of the modules in the manila shares.

This commit is contained in:
Andrea Dell'Amico 2024-05-16 11:38:36 +02:00
parent 28919e4d7f
commit 947d0e68c1
Signed by: andrea.dellamico
GPG Key ID: 147ABE6CEB9E20FF
1 changed files with 5 additions and 5 deletions

View File

@ -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"
}