Skip to content

Commit

Permalink
more realistic folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
schollii authored Dec 2, 2021
1 parent 330322e commit 498f61d
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,25 +30,26 @@ Example:
# your main.tf for the tfstate manager
module "tfstate_manager" {
source = "schollii/multi-stack-backends/aws"
version = "0.6.1"
stacks_map = {
stack-1 = {
network = {
path = "../stack1-network"
path = "../stack1/network"
}
cluster = {
path = "../stack1-cluster"
path = "../stack1/cluster"
}
},
stack-2 = {
network = {
path = "../stack2-network"
path = "../stack2/network"
}
fargate = {
path = "../stack2-fargate"
path = "../stack2/fargate"
}
databases = {
path = "../stack2-databases"
path = "../stack2/databases"
}
},
}
Expand Down

0 comments on commit 498f61d

Please sign in to comment.