Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e5a5a37

Browse files
committed
update all doc references
Signed-off-by: Edgar R. Sandi <[email protected]>
1 parent 98af4f1 commit e5a5a37

File tree

9 files changed

+33
-0
lines changed

9 files changed

+33
-0
lines changed

docs/reference/asciidoc-document.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,12 @@ generates the following output:
140140

141141
Version: 1.2.3
142142

143+
=== [[module_foobar]] <<module_foobar,foobar>>
144+
145+
Source: [email protected]:module/path
146+
147+
Version: v7.8.9
148+
143149
== Resources
144150

145151
The following resources are used by this module:

docs/reference/asciidoc-table.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ generates the following output:
125125
|[[module_bar]] <<module_bar,bar>>|baz|4.5.6
126126
|[[module_baz]] <<module_baz,baz>>|baz|4.5.6
127127
|[[module_foo]] <<module_foo,foo>>|bar|1.2.3
128+
|[[module_foobar]] <<module_foobar,foobar>>|[email protected]:module/path|v7.8.9
128129
|===
129130

130131
== Resources

docs/reference/json.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,11 @@ generates the following output:
315315
"name": "foo",
316316
"source": "bar",
317317
"version": "1.2.3"
318+
},
319+
{
320+
"name": "foobar",
321+
"source": "[email protected]:module/path",
322+
"version": "v7.8.9"
318323
}
319324
],
320325
"outputs": [

docs/reference/markdown-document.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,12 @@ generates the following output:
141141

142142
Version: 1.2.3
143143

144+
### <a name="module_foobar"></a> [foobar](#module\_foobar)
145+
146+
Source: [email protected]:module/path
147+
148+
Version: v7.8.9
149+
144150
## Resources
145151

146152
The following resources are used by this module:

docs/reference/markdown-table.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ generates the following output:
121121
| <a name="module_bar"></a> [bar](#module\_bar) | baz | 4.5.6 |
122122
| <a name="module_baz"></a> [baz](#module\_baz) | baz | 4.5.6 |
123123
| <a name="module_foo"></a> [foo](#module\_foo) | bar | 1.2.3 |
124+
| <a name="module_foobar"></a> [foobar](#module\_foobar) | [email protected]:module/path | v7.8.9 |
124125

125126
## Resources
126127

docs/reference/pretty.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ generates the following output:
106106
module.bar (baz,4.5.6)
107107
module.baz (baz,4.5.6)
108108
module.foo (bar,1.2.3)
109+
module.foobar ([email protected]:module/path,v7.8.9)
109110

110111

111112
resource.null_resource.foo (resource) (https://registry.terraform.io/providers/hashicorp/null/latest/docs/resources/resource)

docs/reference/toml.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,11 @@ generates the following output:
299299
source = "bar"
300300
version = "1.2.3"
301301

302+
[[modules]]
303+
name = "foobar"
304+
source = "[email protected]:module/path"
305+
version = "v7.8.9"
306+
302307
[[outputs]]
303308
name = "output-0.12"
304309
description = "terraform 0.12 only"

docs/reference/xml.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,11 @@ generates the following output:
315315
<source>bar</source>
316316
<version>1.2.3</version>
317317
</module>
318+
<module>
319+
<name>foobar</name>
320+
<source>[email protected]:module/path</source>
321+
<version>v7.8.9</version>
322+
</module>
318323
</modules>
319324
<outputs>
320325
<output>

docs/reference/yaml.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,9 @@ generates the following output:
288288
- name: foo
289289
source: bar
290290
version: 1.2.3
291+
- name: foobar
292+
source: [email protected]:module/path
293+
version: v7.8.9
291294
outputs:
292295
- name: output-0.12
293296
description: terraform 0.12 only

0 commit comments

Comments
 (0)