Skip to content

Commit d180f0b

Browse files
authored
docs: Correct examples in README to correct name -> cluster_name (#66)
1 parent f7d13f2 commit d180f0b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/antonbabenko/pre-commit-terraform
3-
rev: v1.72.1
3+
rev: v1.73.0
44
hooks:
55
- id: terraform_fmt
66
- id: terraform_validate

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Terraform module which creates ECS (Elastic Container Service) resources on AWS.
1616
module "ecs" {
1717
source = "terraform-aws-modules/ecs/aws"
1818
19-
name = "ecs-fargate"
19+
cluster_name = "ecs-fargate"
2020
2121
cluster_configuration = {
2222
execute_command_configuration = {
@@ -53,7 +53,7 @@ module "ecs" {
5353
module "ecs" {
5454
source = "terraform-aws-modules/ecs/aws"
5555
56-
name = "ecs-ec2"
56+
cluster_name = "ecs-ec2"
5757
5858
cluster_configuration = {
5959
execute_command_configuration = {
@@ -111,7 +111,7 @@ module "ecs" {
111111
module "ecs" {
112112
source = "terraform-aws-modules/ecs/aws"
113113
114-
name = "ecs-mixed"
114+
cluster_name = "ecs-mixed"
115115
116116
cluster_configuration = {
117117
execute_command_configuration = {

0 commit comments

Comments
 (0)