Skip to content

Commit

Permalink
Format terraform main.tf file
Browse files Browse the repository at this point in the history
```
$ terraform fmt main.tf
```

similar PR: ine-labs/GCPGoat#3
  • Loading branch information
za committed Mar 24, 2023
1 parent 1763652 commit d1e0e6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/module-2/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -377,8 +377,8 @@ data "template_file" "user_data" {
}

resource "aws_ecs_task_definition" "task_definition" {
container_definitions = data.template_file.task_definition_json.rendered
family = "ECS-Lab-Task-definition"
container_definitions = data.template_file.task_definition_json.rendered
family = "ECS-Lab-Task-definition"
network_mode = "bridge"
memory = "512"
cpu = "512"
Expand Down

0 comments on commit d1e0e6e

Please sign in to comment.