diff --git a/examples/complete/main.tf b/examples/complete/main.tf index 95f7ea4..562c60f 100644 --- a/examples/complete/main.tf +++ b/examples/complete/main.tf @@ -33,10 +33,10 @@ locals { } ################################################################################ -# ECS EC2 Module +# ECS Module ################################################################################ -module "ecs_ec2" { +module "ecs" { source = "../../" # Cluster diff --git a/examples/complete/outputs.tf b/examples/complete/outputs.tf index ad14229..a37aa57 100644 --- a/examples/complete/outputs.tf +++ b/examples/complete/outputs.tf @@ -48,10 +48,10 @@ output "public_subnets_cidr_blocks" { output "ecs_cluster_arn" { description = "ARN of the ECS Cluster" - value = module.ecs_ec2.cluster_arn + value = module.ecs.cluster_arn } output "ecs_service_id" { description = "Identifier of the ECS Service" - value = module.ecs_ec2.service_id + value = module.ecs.service_id }