1Usage:
2
3Example of 'foo_bar' module in `foo_bar.tf`.
4
5- list item 1
6- list item 2
7
8Even inline **formatting** in _here_ is possible.
9and some [link](https://domain.com/)
10
11* list item 3
12* list item 4
13
14```
15module "foo_bar" {
16  source = "github.com/foo/bar"
17
18  id   = "1234567890"
19  name = "baz"
20
21  zones = ["us-east-1", "us-west-1"]
22
23  tags = {
24    Name         = "baz"
25    Created-By   = "first.last@email.com"
26    Date-Created = "20180101"
27  }
28}
29```
30
31Here is some trailing text after code block,
32followed by another line of text.
33
34| Name | Description     |
35|------|-----------------|
36| Foo  | Foo description |
37| Bar  | Bar description |