Skip to content

Commit

Permalink
refactor: resolve old project name references
Browse files Browse the repository at this point in the history
  • Loading branch information
saumitra-dev committed Jul 11, 2024
1 parent 5637685 commit 0c7c86b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ locals {
}

################################################################################
# ECS EC2 Module
# ECS Module
################################################################################

module "ecs_ec2" {
module "ecs" {
source = "../../"

# Cluster
Expand Down
4 changes: 2 additions & 2 deletions examples/complete/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 0c7c86b

Please sign in to comment.