Skip to content

Commit a34142e

Browse files
authored
Merge pull request hashicorp#114 from AbbyDeng/master
update `go get` to `go install` command
2 parents 5a6f8d1 + 532f00b commit a34142e

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

README.md

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ to be broadly compatible with modules written for many different versions of
77
Terraform.
88

99
```
10-
$ go get github.com/hashicorp/terraform-config-inspect
10+
$ go install github.com/hashicorp/terraform-config-inspect@latest
1111
```
1212

1313
```go
@@ -39,28 +39,34 @@ information in either a Markdown-like format or in JSON format.
3939
```sh
4040
$ terraform-config-inspect path/to/module
4141
```
42+
4243
```markdown
4344
# Module `path/to/module`
4445

4546
Provider Requirements:
46-
* **null:** (any version)
47+
48+
- **null:** (any version)
4749

4850
## Input Variables
49-
* `a` (default `"a default"`)
50-
* `b` (required): The b variable
51+
52+
- `a` (default `"a default"`)
53+
- `b` (required): The b variable
5154

5255
## Output Values
53-
* `a`
54-
* `b`: I am B
56+
57+
- `a`
58+
- `b`: I am B
5559

5660
## Managed Resources
57-
* `null_resource.a` from `null`
58-
* `null_resource.b` from `null`
61+
62+
- `null_resource.a` from `null`
63+
- `null_resource.b` from `null`
5964
```
6065

6166
```sh
6267
$ terraform-config-inspect --json path/to/module
6368
```
69+
6470
```json
6571
{
6672
"path": "path/to/module",

0 commit comments

Comments
 (0)