Remove redundant dependencies
Co-authored-by: Ezequiel Bellver <ebellver@itba.edu.ar>
This commit is contained in:
parent
51062b4255
commit
020fab482e
|
@ -5,11 +5,6 @@ module "apigw" {
|
|||
aws = aws.aws
|
||||
}
|
||||
|
||||
depends_on = [
|
||||
module.lambda,
|
||||
module.sqs
|
||||
]
|
||||
|
||||
name = "AWSAPIGateway-g3"
|
||||
|
||||
lambda = {
|
||||
|
|
|
@ -6,12 +6,6 @@ module "cloudfront" {
|
|||
aws = aws.aws
|
||||
}
|
||||
|
||||
depends_on = [
|
||||
module.s3,
|
||||
module.apigw,
|
||||
module.acm
|
||||
]
|
||||
|
||||
enabled = true
|
||||
web_acl_id = try(each.value.web_acl_id, null)
|
||||
aliases = each.value.aliases
|
||||
|
|
|
@ -1,10 +1,6 @@
|
|||
module "cognito" {
|
||||
source = "../modules/cognito"
|
||||
|
||||
depends_on = [
|
||||
module.lambda
|
||||
]
|
||||
|
||||
providers = {
|
||||
aws = aws.aws
|
||||
}
|
||||
|
|
|
@ -6,10 +6,6 @@ module "lambda" {
|
|||
aws = aws.aws
|
||||
}
|
||||
|
||||
depends_on = [
|
||||
module.vpc
|
||||
]
|
||||
|
||||
function_name = each.value.function_name
|
||||
handler = each.value.handler
|
||||
runtime = each.value.runtime
|
||||
|
|
|
@ -5,10 +5,6 @@ module "route53" {
|
|||
aws = aws.aws
|
||||
}
|
||||
|
||||
depends_on = [
|
||||
module.cloudfront
|
||||
]
|
||||
|
||||
zone_name = local.domain
|
||||
|
||||
records = {
|
||||
|
|
|
@ -5,10 +5,6 @@ module "sqs" {
|
|||
aws = aws.aws
|
||||
}
|
||||
|
||||
depends_on = [
|
||||
module.lambda
|
||||
]
|
||||
|
||||
name = "AWS-SQS-g3"
|
||||
lambda_name = module.lambda["lambdaSQS"].function_name
|
||||
|
||||
|
|
Loading…
Reference in New Issue