Skip to content

Commit 37a4098

Browse files
authored
cdktf: update index.md,resources/uuid.md,resources/string.md,resources/shuffle.md,resources/pet.md,resources/password.md,resources/integer.md,resources/id.md,resources/bytes.md,ephemeral-resources/password.md (#709)
1 parent 939791f commit 37a4098

File tree

8 files changed

+24
-8
lines changed

8 files changed

+24
-8
lines changed

docs/cdktf/python/resources/bytes.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,11 @@ class MyConvertedCode(TerraformStack):
6464

6565
Import is supported using the following syntax:
6666

67+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
68+
6769
```shell
6870
# Random bytes can be imported by specifying the value as base64 string.
6971
terraform import random_bytes.basic "8/fu3q+2DcgSJ19i0jZ5Cw=="
7072
```
7173

72-
<!-- cache-key: cdktf-0.20.8 input-25dd9466f22fbe7d883503390ce1b83d66bac79809038270884f1aa9e1707016 -->
74+
<!-- cache-key: cdktf-0.20.8 input-1491898ea6dc5de206b80477becb8af7d16a65484aed4c2e657ee03553f3732b -->

docs/cdktf/python/resources/id.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ class MyConvertedCode(TerraformStack):
9191

9292
Import is supported using the following syntax:
9393

94+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
95+
9496
```shell
9597
# Random IDs can be imported using the b64_url with an optional prefix. This
9698
# can be used to replace a config value with a value interpolated from the
@@ -103,4 +105,4 @@ terraform import random_id.server p-9hUg
103105
$ terraform import random_id.server my-prefix-,p-9hUg
104106
```
105107

106-
<!-- cache-key: cdktf-0.20.8 input-5f91020093f3912bfcdaccf929f7d6b4f81c78dec85ef60164d34297667dd198 -->
108+
<!-- cache-key: cdktf-0.20.8 input-dba7eb7903c51c58e9ff55fba6c6d64a8342eddd04d55a863b71bc3e3a233c99 -->

docs/cdktf/python/resources/integer.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ class MyConvertedCode(TerraformStack):
7272

7373
Import is supported using the following syntax:
7474

75+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
76+
7577
```shell
7678
# Random integers can be imported using the result, min, and max, with an
7779
# optional seed. This can be used to replace a config value with a value
@@ -81,4 +83,4 @@ Import is supported using the following syntax:
8183
terraform import random_integer.priority 15390,1,50000
8284
```
8385

84-
<!-- cache-key: cdktf-0.20.8 input-14468c71f20ebc7d2a161542108e1cc214b9ae4d6f2c5008aa55d67bf9354ebf -->
86+
<!-- cache-key: cdktf-0.20.8 input-04a623631d19c9c19f96f265a4c72584ae8122078c454a5281bfaf35bd615ab2 -->

docs/cdktf/python/resources/uuid.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ class MyConvertedCode(TerraformStack):
5757

5858
Import is supported using the following syntax:
5959

60+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
61+
6062
```shell
6163
# Random UUID's can be imported. This can be used to replace a config
6264
# value with a value interpolated from the random provider without
@@ -65,4 +67,4 @@ Import is supported using the following syntax:
6567
terraform import random_uuid.main aabbccdd-eeff-0011-2233-445566778899
6668
```
6769

68-
<!-- cache-key: cdktf-0.20.8 input-28b6319e244b3425052c370a8691eaadb0c8a850033c058c030cffbcec995a1d -->
70+
<!-- cache-key: cdktf-0.20.8 input-a93e5a190f5a4ad5f4367c23ecfe2b327c5bdcf6a7367b97c92bed98db5e5050 -->

docs/cdktf/typescript/resources/bytes.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,11 @@ class MyConvertedCode extends TerraformStack {
7171

7272
Import is supported using the following syntax:
7373

74+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
75+
7476
```shell
7577
# Random bytes can be imported by specifying the value as base64 string.
7678
terraform import random_bytes.basic "8/fu3q+2DcgSJ19i0jZ5Cw=="
7779
```
7880

79-
<!-- cache-key: cdktf-0.20.8 input-25dd9466f22fbe7d883503390ce1b83d66bac79809038270884f1aa9e1707016 -->
81+
<!-- cache-key: cdktf-0.20.8 input-1491898ea6dc5de206b80477becb8af7d16a65484aed4c2e657ee03553f3732b -->

docs/cdktf/typescript/resources/id.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ class MyConvertedCode extends TerraformStack {
9494

9595
Import is supported using the following syntax:
9696

97+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
98+
9799
```shell
98100
# Random IDs can be imported using the b64_url with an optional prefix. This
99101
# can be used to replace a config value with a value interpolated from the
@@ -106,4 +108,4 @@ terraform import random_id.server p-9hUg
106108
$ terraform import random_id.server my-prefix-,p-9hUg
107109
```
108110

109-
<!-- cache-key: cdktf-0.20.8 input-5f91020093f3912bfcdaccf929f7d6b4f81c78dec85ef60164d34297667dd198 -->
111+
<!-- cache-key: cdktf-0.20.8 input-dba7eb7903c51c58e9ff55fba6c6d64a8342eddd04d55a863b71bc3e3a233c99 -->

docs/cdktf/typescript/resources/integer.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@ class MyConvertedCode extends TerraformStack {
8080

8181
Import is supported using the following syntax:
8282

83+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
84+
8385
```shell
8486
# Random integers can be imported using the result, min, and max, with an
8587
# optional seed. This can be used to replace a config value with a value
@@ -89,4 +91,4 @@ Import is supported using the following syntax:
8991
terraform import random_integer.priority 15390,1,50000
9092
```
9193

92-
<!-- cache-key: cdktf-0.20.8 input-14468c71f20ebc7d2a161542108e1cc214b9ae4d6f2c5008aa55d67bf9354ebf -->
94+
<!-- cache-key: cdktf-0.20.8 input-04a623631d19c9c19f96f265a4c72584ae8122078c454a5281bfaf35bd615ab2 -->

docs/cdktf/typescript/resources/uuid.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ class MyConvertedCode extends TerraformStack {
6060

6161
Import is supported using the following syntax:
6262

63+
The [`terraform import` command](https://developer.hashicorp.com/terraform/cli/commands/import) can be used, for example:
64+
6365
```shell
6466
# Random UUID's can be imported. This can be used to replace a config
6567
# value with a value interpolated from the random provider without
@@ -68,4 +70,4 @@ Import is supported using the following syntax:
6870
terraform import random_uuid.main aabbccdd-eeff-0011-2233-445566778899
6971
```
7072

71-
<!-- cache-key: cdktf-0.20.8 input-28b6319e244b3425052c370a8691eaadb0c8a850033c058c030cffbcec995a1d -->
73+
<!-- cache-key: cdktf-0.20.8 input-a93e5a190f5a4ad5f4367c23ecfe2b327c5bdcf6a7367b97c92bed98db5e5050 -->

0 commit comments

Comments
 (0)