You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/tfplugindocs/testdata/scripts/provider-build/generate/null_provider_success.txtar
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -232,12 +232,12 @@ class MyConvertedCode(TerraformStack):
232
232
### Optional
233
233
234
234
- `has_computed_default` (String) If set, its literal value will be stored and returned. If not, its value defaults to `"default"`. This argument exists primarily for testing and has little practical use.
235
-
- `inputs` (Map of String) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
235
+
- `inputs` (Map of Strings) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
236
236
237
237
### Read-Only
238
238
239
239
- `id` (String, Deprecated) This attribute is only present for some legacy compatibility issues and should not be used. It will be removed in a future version.
240
-
- `outputs` (Map of String) After the data source is "read", a copy of the `inputs` map.
240
+
- `outputs` (Map of Strings) After the data source is "read", a copy of the `inputs` map.
241
241
- `random` (String) A random value. This is primarily for testing and has little practical use; prefer the [hashicorp/random provider](https://registry.terraform.io/providers/hashicorp/random) for more practical random number use-cases.
242
242
243
243
@@ -342,7 +342,7 @@ class MyConvertedCode(TerraformStack):
342
342
343
343
### Optional
344
344
345
-
- `triggers` (Map of String) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
345
+
- `triggers` (Map of Strings) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
346
346
347
347
### Read-Only
348
348
@@ -460,12 +460,12 @@ class MyConvertedCode extends TerraformStack {
460
460
### Optional
461
461
462
462
- `hasComputedDefault` (String) If set, its literal value will be stored and returned. If not, its value defaults to `"default"`. This argument exists primarily for testing and has little practical use.
463
-
- `inputs` (Map of String) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
463
+
- `inputs` (Map of Strings) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
464
464
465
465
### Read-Only
466
466
467
467
- `id` (String, Deprecated) This attribute is only present for some legacy compatibility issues and should not be used. It will be removed in a future version.
468
-
- `outputs` (Map of String) After the data source is "read", a copy of the `inputs` map.
468
+
- `outputs` (Map of Strings) After the data source is "read", a copy of the `inputs` map.
469
469
- `random` (String) A random value. This is primarily for testing and has little practical use; prefer the [hashicorp/random provider](https://registry.terraform.io/providers/hashicorp/random) for more practical random number use-cases.
470
470
471
471
@@ -580,7 +580,7 @@ class MyConvertedCode extends TerraformStack {
580
580
581
581
### Optional
582
582
583
-
- `triggers` (Map of String) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
583
+
- `triggers` (Map of Strings) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
584
584
585
585
### Read-Only
586
586
@@ -667,12 +667,12 @@ output "all_server_ips" {
667
667
### Optional
668
668
669
669
- `has_computed_default` (String) If set, its literal value will be stored and returned. If not, its value defaults to `"default"`. This argument exists primarily for testing and has little practical use.
670
-
- `inputs` (Map of String) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
670
+
- `inputs` (Map of Strings) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
671
671
672
672
### Read-Only
673
673
674
674
- `id` (String, Deprecated) This attribute is only present for some legacy compatibility issues and should not be used. It will be removed in a future version.
675
-
- `outputs` (Map of String) After the data source is "read", a copy of the `inputs` map.
675
+
- `outputs` (Map of Strings) After the data source is "read", a copy of the `inputs` map.
676
676
- `random` (String) A random value. This is primarily for testing and has little practical use; prefer the [hashicorp/random provider](https://registry.terraform.io/providers/hashicorp/random) for more practical random number use-cases.
- `triggers` (Map of String) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
764
+
- `triggers` (Map of Strings) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
Copy file name to clipboardExpand all lines: cmd/tfplugindocs/testdata/scripts/schema-json/generate/framework_provider_success_all_framework_types.txtar
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -80,23 +80,23 @@ example resource
80
80
- `bool_attribute` (Boolean) example bool attribute
81
81
- `float64_attribute` (Number) example float64 attribute
82
82
- `int64_attribute` (Number) example int64 attribute
83
-
- `list_attribute` (List of String) example list attribute
83
+
- `list_attribute` (List of Strings) example list attribute
84
84
- `list_nested_block` (Block List) example list nested block (see [below for nested schema](#nestedblock--list_nested_block))
85
85
- `list_nested_block_sensitive_nested_attribute` (Block List) (see [below for nested schema](#nestedblock--list_nested_block_sensitive_nested_attribute))
86
-
- `map_attribute` (Map of String) example map attribute
86
+
- `map_attribute` (Map of Strings) example map attribute
87
87
- `number_attribute` (Number) example number attribute
88
88
- `object_attribute` (Object) example object attribute (see [below for nested schema](#nestedatt--object_attribute))
89
89
- `object_attribute_with_nested_object_attribute` (Object) example object attribute with nested object attribute (see [below for nested schema](#nestedatt--object_attribute_with_nested_object_attribute))
90
90
- `sensitive_bool_attribute` (Boolean, Sensitive) example sensitive bool attribute
91
91
- `sensitive_float64_attribute` (Number, Sensitive) example sensitive float64 attribute
92
92
- `sensitive_int64_attribute` (Number, Sensitive) example sensitive int64 attribute
93
-
- `sensitive_list_attribute` (List of String, Sensitive) example sensitive list attribute
94
-
- `sensitive_map_attribute` (Map of String, Sensitive) example sensitive map attribute
93
+
- `sensitive_list_attribute` (List of Strings, Sensitive) example sensitive list attribute
94
+
- `sensitive_map_attribute` (Map of Strings, Sensitive) example sensitive map attribute
95
95
- `sensitive_number_attribute` (Number, Sensitive) example sensitive number attribute
96
96
- `sensitive_object_attribute` (Object, Sensitive) example sensitive object attribute (see [below for nested schema](#nestedatt--sensitive_object_attribute))
97
-
- `sensitive_set_attribute` (Set of String, Sensitive) example sensitive set attribute
97
+
- `sensitive_set_attribute` (Set of Strings, Sensitive) example sensitive set attribute
98
98
- `sensitive_string_attribute` (String, Sensitive) example sensitive string attribute
99
-
- `set_attribute` (Set of String) example set attribute
99
+
- `set_attribute` (Set of Strings) example set attribute
100
100
- `set_nested_block` (Block Set) example set nested block (see [below for nested schema](#nestedblock--set_nested_block))
101
101
- `single_nested_block` (Block, Optional) example single nested block (see [below for nested schema](#nestedblock--single_nested_block))
102
102
- `single_nested_block_sensitive_nested_attribute` (Block, Optional) example sensitive single nested block (see [below for nested schema](#nestedblock--single_nested_block_sensitive_nested_attribute))
Copy file name to clipboardExpand all lines: cmd/tfplugindocs/testdata/scripts/schema-json/generate/null_provider_success.txtar
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -207,12 +207,12 @@ class MyConvertedCode(TerraformStack):
207
207
### Optional
208
208
209
209
- `has_computed_default` (String) If set, its literal value will be stored and returned. If not, its value defaults to `"default"`. This argument exists primarily for testing and has little practical use.
210
-
- `inputs` (Map of String) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
210
+
- `inputs` (Map of Strings) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
211
211
212
212
### Read-Only
213
213
214
214
- `id` (String, Deprecated) This attribute is only present for some legacy compatibility issues and should not be used. It will be removed in a future version.
215
-
- `outputs` (Map of String) After the data source is "read", a copy of the `inputs` map.
215
+
- `outputs` (Map of Strings) After the data source is "read", a copy of the `inputs` map.
216
216
- `random` (String) A random value. This is primarily for testing and has little practical use; prefer the [hashicorp/random provider](https://registry.terraform.io/providers/hashicorp/random) for more practical random number use-cases.
217
217
218
218
@@ -317,7 +317,7 @@ class MyConvertedCode(TerraformStack):
317
317
318
318
### Optional
319
319
320
-
- `triggers` (Map of String) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
320
+
- `triggers` (Map of Strings) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
321
321
322
322
### Read-Only
323
323
@@ -435,12 +435,12 @@ class MyConvertedCode extends TerraformStack {
435
435
### Optional
436
436
437
437
- `hasComputedDefault` (String) If set, its literal value will be stored and returned. If not, its value defaults to `"default"`. This argument exists primarily for testing and has little practical use.
438
-
- `inputs` (Map of String) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
438
+
- `inputs` (Map of Strings) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
439
439
440
440
### Read-Only
441
441
442
442
- `id` (String, Deprecated) This attribute is only present for some legacy compatibility issues and should not be used. It will be removed in a future version.
443
-
- `outputs` (Map of String) After the data source is "read", a copy of the `inputs` map.
443
+
- `outputs` (Map of Strings) After the data source is "read", a copy of the `inputs` map.
444
444
- `random` (String) A random value. This is primarily for testing and has little practical use; prefer the [hashicorp/random provider](https://registry.terraform.io/providers/hashicorp/random) for more practical random number use-cases.
445
445
446
446
@@ -555,7 +555,7 @@ class MyConvertedCode extends TerraformStack {
555
555
556
556
### Optional
557
557
558
-
- `triggers` (Map of String) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
558
+
- `triggers` (Map of Strings) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
559
559
560
560
### Read-Only
561
561
@@ -642,12 +642,12 @@ output "all_server_ips" {
642
642
### Optional
643
643
644
644
- `has_computed_default` (String) If set, its literal value will be stored and returned. If not, its value defaults to `"default"`. This argument exists primarily for testing and has little practical use.
645
-
- `inputs` (Map of String) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
645
+
- `inputs` (Map of Strings) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
646
646
647
647
### Read-Only
648
648
649
649
- `id` (String, Deprecated) This attribute is only present for some legacy compatibility issues and should not be used. It will be removed in a future version.
650
-
- `outputs` (Map of String) After the data source is "read", a copy of the `inputs` map.
650
+
- `outputs` (Map of Strings) After the data source is "read", a copy of the `inputs` map.
651
651
- `random` (String) A random value. This is primarily for testing and has little practical use; prefer the [hashicorp/random provider](https://registry.terraform.io/providers/hashicorp/random) for more practical random number use-cases.
- `triggers` (Map of String) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
739
+
- `triggers` (Map of Strings) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
Copy file name to clipboardExpand all lines: internal/schemamd/testdata/framework_types.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,23 +13,23 @@
13
13
-`bool_attribute` (Boolean) example bool attribute
14
14
-`float64_attribute` (Number) example float64 attribute
15
15
-`int64_attribute` (Number) example int64 attribute
16
-
-`list_attribute` (List of String) example list attribute
16
+
-`list_attribute` (List of Strings) example list attribute
17
17
-`list_nested_block` (Block List) example list nested block (see [below for nested schema](#nestedblock--list_nested_block))
18
18
-`list_nested_block_sensitive_nested_attribute` (Block List) (see [below for nested schema](#nestedblock--list_nested_block_sensitive_nested_attribute))
19
-
-`map_attribute` (Map of String) example map attribute
19
+
-`map_attribute` (Map of Strings) example map attribute
20
20
-`number_attribute` (Number) example number attribute
21
21
-`object_attribute` (Object) example object attribute (see [below for nested schema](#nestedatt--object_attribute))
22
22
-`object_attribute_with_nested_object_attribute` (Object) example object attribute with nested object attribute (see [below for nested schema](#nestedatt--object_attribute_with_nested_object_attribute))
23
23
-`sensitive_bool_attribute` (Boolean, Sensitive) example sensitive bool attribute
24
24
-`sensitive_float64_attribute` (Number, Sensitive) example sensitive float64 attribute
25
25
-`sensitive_int64_attribute` (Number, Sensitive) example sensitive int64 attribute
26
-
-`sensitive_list_attribute` (List of String, Sensitive) example sensitive list attribute
27
-
-`sensitive_map_attribute` (Map of String, Sensitive) example sensitive map attribute
26
+
-`sensitive_list_attribute` (List of Strings, Sensitive) example sensitive list attribute
27
+
-`sensitive_map_attribute` (Map of Strings, Sensitive) example sensitive map attribute
28
28
-`sensitive_number_attribute` (Number, Sensitive) example sensitive number attribute
29
29
-`sensitive_object_attribute` (Object, Sensitive) example sensitive object attribute (see [below for nested schema](#nestedatt--sensitive_object_attribute))
30
-
-`sensitive_set_attribute` (Set of String, Sensitive) example sensitive set attribute
30
+
-`sensitive_set_attribute` (Set of Strings, Sensitive) example sensitive set attribute
31
31
-`sensitive_string_attribute` (String, Sensitive) example sensitive string attribute
32
-
-`set_attribute` (Set of String) example set attribute
32
+
-`set_attribute` (Set of Strings) example set attribute
33
33
-`set_nested_block` (Block Set) example set nested block (see [below for nested schema](#nestedblock--set_nested_block))
34
34
-`single_nested_block` (Block, Optional) example single nested block (see [below for nested schema](#nestedblock--single_nested_block))
35
35
-`single_nested_block_sensitive_nested_attribute` (Block, Optional) example sensitive single nested block (see [below for nested schema](#nestedblock--single_nested_block_sensitive_nested_attribute))
0 commit comments