Skip to content

Commit

Permalink
Change: moved modules to modules folder INPRO-358
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzlyn committed May 10, 2021
1 parent 9e4a48b commit ace5516
Show file tree
Hide file tree
Showing 13 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ terraform {

module "groups" {
for_each = var.groups
source = "./groups"
source = "./modules/groups"
providers = {
gsuite = gsuite
}
Expand All @@ -19,7 +19,7 @@ module "groups" {
module "groups_in_group" {
for_each = var.groups
depends_on = [module.groups]
source = "./groups_in_group"
source = "./modules/groups_in_group"
providers = {
gsuite = gsuite
}
Expand All @@ -30,7 +30,7 @@ module "groups_in_group" {
module "users" {
for_each = var.users
depends_on = [module.groups]
source = "./users"
source = "./modules/users"
providers = {
gsuite = gsuite
}
Expand All @@ -40,7 +40,7 @@ module "users" {
module "users_to_groups" {
for_each = var.users
depends_on = [module.users]
source = "./users_to_groups"
source = "./modules/users_to_groups"
providers = {
gsuite = gsuite
}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit ace5516

Please sign in to comment.