Skip to content

Commit 0c7c86b

Browse files
committed
refactor: resolve old project name references
1 parent 5637685 commit 0c7c86b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/complete/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ locals {
3333
}
3434

3535
################################################################################
36-
# ECS EC2 Module
36+
# ECS Module
3737
################################################################################
3838

39-
module "ecs_ec2" {
39+
module "ecs" {
4040
source = "../../"
4141

4242
# Cluster

examples/complete/outputs.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,10 @@ output "public_subnets_cidr_blocks" {
4848

4949
output "ecs_cluster_arn" {
5050
description = "ARN of the ECS Cluster"
51-
value = module.ecs_ec2.cluster_arn
51+
value = module.ecs.cluster_arn
5252
}
5353

5454
output "ecs_service_id" {
5555
description = "Identifier of the ECS Service"
56-
value = module.ecs_ec2.service_id
56+
value = module.ecs.service_id
5757
}

0 commit comments

Comments
 (0)