We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5637685 commit 0c7c86bCopy full SHA for 0c7c86b
examples/complete/main.tf
@@ -33,10 +33,10 @@ locals {
33
}
34
35
################################################################################
36
-# ECS EC2 Module
+# ECS Module
37
38
39
-module "ecs_ec2" {
+module "ecs" {
40
source = "../../"
41
42
# Cluster
examples/complete/outputs.tf
@@ -48,10 +48,10 @@ output "public_subnets_cidr_blocks" {
48
49
output "ecs_cluster_arn" {
50
description = "ARN of the ECS Cluster"
51
- value = module.ecs_ec2.cluster_arn
+ value = module.ecs.cluster_arn
52
53
54
output "ecs_service_id" {
55
description = "Identifier of the ECS Service"
56
- value = module.ecs_ec2.service_id
+ value = module.ecs.service_id
57
0 commit comments