Skip to content

Commit 6109399

Browse files
authored
Merge pull request #3 from andig/typos
Fix typos
2 parents c773989 + 1c54aaa commit 6109399

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

examples/complete-ecs/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module "vpc" {
2727
single_nat_gateway = true
2828

2929
tags = {
30-
Environment = "${local.name}"
30+
Environment = "${local.environment}"
3131
Name = "${local.name}"
3232
}
3333
}
@@ -47,7 +47,7 @@ module "ec2-profile" {
4747

4848
module "hello-world" {
4949
source = "service-hello-world"
50-
cluser_id = "${module.ecs.this_ecs_cluster_id}"
50+
cluster_id = "${module.ecs.this_ecs_cluster_id}"
5151
}
5252

5353
#----- ECS Resources--------

examples/complete-ecs/service-hello-world/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ EOF
2828

2929
resource "aws_ecs_service" "hello_world" {
3030
name = "hello_world"
31-
cluster = "${var.cluser_id}"
31+
cluster = "${var.cluster_id}"
3232
task_definition = "${aws_ecs_task_definition.hello_world.arn}"
3333

3434
desired_count = 1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
variable "cluser_id" {
1+
variable "cluster_id" {
22
description = "The ECS cluster ID"
33
}

0 commit comments

Comments
 (0)