Skip to content

Commit b7920e8

Browse files
author
Premdeep Saini
committed
docs: update usage section of doc to recognise hcl
1 parent d34d311 commit b7920e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This module creates following resources:
1313

1414

1515
### Usage
16-
```
16+
```hcl
1717
module "app_cluster" {
1818
source = "git::https://github.com/gaussb-labs/terraform-aws-ecs-cluster-module.git?ref=v1.1.2"
1919
environment = "production"
@@ -23,15 +23,15 @@ module "app_cluster" {
2323
name = "java_application"
2424
image_id = "ami-040d909ea4e56f8f3"
2525
instance_type = "t3a.medium"
26-
user_data_base64 = <base64 encoded userdata>
26+
user_data_base64 = ""
2727
iam_instance_profile_name = "ecs_agent_access_instance_profile"
2828
security_group_ids = ["sg-01", "sg-02"]
2929
},
3030
{
3131
name = "rails_application"
3232
image_id = "ami-040d909ea4e56f8f3"
3333
instance_type = "t3a.medium"
34-
user_data_base64 = <base64 encoded userdata>
34+
user_data_base64 = ""
3535
iam_instance_profile_name = "ecs_agent_access_instance_profile"
3636
security_group_ids = ["sg-03", "sg-04"]
3737
}

0 commit comments

Comments
 (0)