From f329fcf91e6a1e94a0f4ee5bbbb18899a8c89968 Mon Sep 17 00:00:00 2001 From: LeoDiazL <116020815+LeoDiazL@users.noreply.github.com> Date: Mon, 9 Sep 2024 17:08:17 -0300 Subject: [PATCH] Fixing module names --- operations/deployment/terraform/aws/bitovi_main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/operations/deployment/terraform/aws/bitovi_main.tf b/operations/deployment/terraform/aws/bitovi_main.tf index b800a02b..1caf6db4 100644 --- a/operations/deployment/terraform/aws/bitovi_main.tf +++ b/operations/deployment/terraform/aws/bitovi_main.tf @@ -24,7 +24,7 @@ module "ec2" { aws_resource_identifier = var.aws_resource_identifier aws_resource_identifier_supershort = var.aws_resource_identifier_supershort ec2_tags = local.ec2_tags - depends_on = [module.vpc,module.route53] + depends_on = [module.vpc,module.aws_route53] providers = { aws = aws.ec2 @@ -97,7 +97,7 @@ module "aws_route53" { providers = { aws = aws.r53 } - depends_on = [ module.certificates ] + depends_on = [ module.aws_certificates ] } module "aws_elb" {