Skip to content

Commit

Permalink
fix terraform setup test
Browse files Browse the repository at this point in the history
  • Loading branch information
djelusic committed Sep 29, 2021
1 parent bfccc38 commit ff13b11
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions terraform/testdata/setup.tf
Original file line number Diff line number Diff line change
Expand Up @@ -54,18 +54,18 @@ provider "aws" {
}

module "funcs" {
source = "../modules/backend-funcs"
source = "../../modules/backend-funcs"
functions = local.functions
s3_bucket = local.functions_bucket
}

module "iam" {
source = "../modules/backend-iam"
source = "../../modules/backend-iam"
backend_role_arn = module.funcs.role_arn
}

module "api" {
source = "../modules/api"
source = "../../modules/api"
name_prefix = "mantil"
functions_bucket = local.functions_bucket
integrations = [for f in module.funcs.functions :
Expand Down

0 comments on commit ff13b11

Please sign in to comment.