Fix the paths of the modules in the manila shares.
This commit is contained in:
parent
28919e4d7f
commit
947d0e68c1
|
@ -4,7 +4,7 @@ terraform {
|
||||||
required_providers {
|
required_providers {
|
||||||
openstack = {
|
openstack = {
|
||||||
source = "terraform-provider-openstack/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"
|
backend = "local"
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
path = "../project-setup/terraform.tfstate"
|
path = "../../project-setup/terraform.tfstate"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -21,17 +21,17 @@ data "terraform_remote_state" "main_infrastructure" {
|
||||||
backend = "local"
|
backend = "local"
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
path = "../basic-infrastructure/terraform.tfstate"
|
path = "../../basic-infrastructure/terraform.tfstate"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# SSH settings
|
# SSH settings
|
||||||
module "ssh_settings" {
|
module "ssh_settings" {
|
||||||
source = "../../modules/ssh-key-ref"
|
source = "../../../modules/ssh-key-ref"
|
||||||
}
|
}
|
||||||
#
|
#
|
||||||
# Uses common_variables as module
|
# Uses common_variables as module
|
||||||
#
|
#
|
||||||
module "common_variables" {
|
module "common_variables" {
|
||||||
source = "../../modules/common_variables"
|
source = "../../../modules/common_variables"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue