pulumi-random 4.19.0a1763667599__py3-none-any.whl → 4.19.0a1764888436__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_random/pulumi-plugin.json +1 -1
- pulumi_random/random_id.py +6 -6
- pulumi_random/random_integer.py +10 -10
- pulumi_random/random_password.py +8 -8
- pulumi_random/random_pet.py +6 -6
- pulumi_random/random_shuffle.py +2 -2
- {pulumi_random-4.19.0a1763667599.dist-info → pulumi_random-4.19.0a1764888436.dist-info}/METADATA +1 -1
- pulumi_random-4.19.0a1764888436.dist-info/RECORD +18 -0
- pulumi_random-4.19.0a1763667599.dist-info/RECORD +0 -18
- {pulumi_random-4.19.0a1763667599.dist-info → pulumi_random-4.19.0a1764888436.dist-info}/WHEEL +0 -0
- {pulumi_random-4.19.0a1763667599.dist-info → pulumi_random-4.19.0a1764888436.dist-info}/licenses/LICENSE +0 -0
- {pulumi_random-4.19.0a1763667599.dist-info → pulumi_random-4.19.0a1764888436.dist-info}/top_level.txt +0 -0
pulumi_random/pulumi-plugin.json
CHANGED
pulumi_random/random_id.py
CHANGED
|
@@ -231,11 +231,11 @@ class RandomId(pulumi.CustomResource):
|
|
|
231
231
|
"ami_id": ami_id,
|
|
232
232
|
},
|
|
233
233
|
byte_length=8)
|
|
234
|
-
server_instance = aws.
|
|
234
|
+
server_instance = aws.index.Instance("server",
|
|
235
235
|
tags={
|
|
236
|
-
|
|
236
|
+
name: fweb-server {server.hex},
|
|
237
237
|
},
|
|
238
|
-
ami=server.keepers
|
|
238
|
+
ami=server.keepers.ami_id)
|
|
239
239
|
```
|
|
240
240
|
|
|
241
241
|
## Import
|
|
@@ -300,11 +300,11 @@ class RandomId(pulumi.CustomResource):
|
|
|
300
300
|
"ami_id": ami_id,
|
|
301
301
|
},
|
|
302
302
|
byte_length=8)
|
|
303
|
-
server_instance = aws.
|
|
303
|
+
server_instance = aws.index.Instance("server",
|
|
304
304
|
tags={
|
|
305
|
-
|
|
305
|
+
name: fweb-server {server.hex},
|
|
306
306
|
},
|
|
307
|
-
ami=server.keepers
|
|
307
|
+
ami=server.keepers.ami_id)
|
|
308
308
|
```
|
|
309
309
|
|
|
310
310
|
## Import
|
pulumi_random/random_integer.py
CHANGED
|
@@ -205,12 +205,12 @@ class RandomInteger(pulumi.CustomResource):
|
|
|
205
205
|
keepers={
|
|
206
206
|
"listener_arn": listener_arn,
|
|
207
207
|
})
|
|
208
|
-
main = aws.
|
|
209
|
-
listener_arn=priority.keepers
|
|
208
|
+
main = aws.index.AlbListenerRule("main",
|
|
209
|
+
listener_arn=priority.keepers.listener_arn,
|
|
210
210
|
priority=priority.result,
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
211
|
+
action=[{
|
|
212
|
+
type: forward,
|
|
213
|
+
targetGroupArn: target_group_arn,
|
|
214
214
|
}])
|
|
215
215
|
```
|
|
216
216
|
|
|
@@ -261,12 +261,12 @@ class RandomInteger(pulumi.CustomResource):
|
|
|
261
261
|
keepers={
|
|
262
262
|
"listener_arn": listener_arn,
|
|
263
263
|
})
|
|
264
|
-
main = aws.
|
|
265
|
-
listener_arn=priority.keepers
|
|
264
|
+
main = aws.index.AlbListenerRule("main",
|
|
265
|
+
listener_arn=priority.keepers.listener_arn,
|
|
266
266
|
priority=priority.result,
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
267
|
+
action=[{
|
|
268
|
+
type: forward,
|
|
269
|
+
targetGroupArn: target_group_arn,
|
|
270
270
|
}])
|
|
271
271
|
```
|
|
272
272
|
|
pulumi_random/random_password.py
CHANGED
|
@@ -486,11 +486,11 @@ class RandomPassword(pulumi.CustomResource):
|
|
|
486
486
|
length=16,
|
|
487
487
|
special=True,
|
|
488
488
|
override_special="!#$%&*()-_=+[]{}<>:?")
|
|
489
|
-
example = aws.
|
|
490
|
-
instance_class=
|
|
489
|
+
example = aws.index.DbInstance("example",
|
|
490
|
+
instance_class=db.t3.micro,
|
|
491
491
|
allocated_storage=64,
|
|
492
|
-
engine=
|
|
493
|
-
username=
|
|
492
|
+
engine=mysql,
|
|
493
|
+
username=someone,
|
|
494
494
|
password=password.result)
|
|
495
495
|
```
|
|
496
496
|
|
|
@@ -531,11 +531,11 @@ class RandomPassword(pulumi.CustomResource):
|
|
|
531
531
|
length=16,
|
|
532
532
|
special=True,
|
|
533
533
|
override_special="!#$%&*()-_=+[]{}<>:?")
|
|
534
|
-
example = aws.
|
|
535
|
-
instance_class=
|
|
534
|
+
example = aws.index.DbInstance("example",
|
|
535
|
+
instance_class=db.t3.micro,
|
|
536
536
|
allocated_storage=64,
|
|
537
|
-
engine=
|
|
538
|
-
username=
|
|
537
|
+
engine=mysql,
|
|
538
|
+
username=someone,
|
|
539
539
|
password=password.result)
|
|
540
540
|
```
|
|
541
541
|
|
pulumi_random/random_pet.py
CHANGED
|
@@ -189,11 +189,11 @@ class RandomPet(pulumi.CustomResource):
|
|
|
189
189
|
server = random.RandomPet("server", keepers={
|
|
190
190
|
"ami_id": ami_id,
|
|
191
191
|
})
|
|
192
|
-
server_instance = aws.
|
|
192
|
+
server_instance = aws.index.Instance("server",
|
|
193
193
|
tags={
|
|
194
|
-
|
|
194
|
+
name: fweb-server-{server.id},
|
|
195
195
|
},
|
|
196
|
-
ami=server.keepers
|
|
196
|
+
ami=server.keepers.ami_id)
|
|
197
197
|
```
|
|
198
198
|
|
|
199
199
|
:param str resource_name: The name of the resource.
|
|
@@ -227,11 +227,11 @@ class RandomPet(pulumi.CustomResource):
|
|
|
227
227
|
server = random.RandomPet("server", keepers={
|
|
228
228
|
"ami_id": ami_id,
|
|
229
229
|
})
|
|
230
|
-
server_instance = aws.
|
|
230
|
+
server_instance = aws.index.Instance("server",
|
|
231
231
|
tags={
|
|
232
|
-
|
|
232
|
+
name: fweb-server-{server.id},
|
|
233
233
|
},
|
|
234
|
-
ami=server.keepers
|
|
234
|
+
ami=server.keepers.ami_id)
|
|
235
235
|
```
|
|
236
236
|
|
|
237
237
|
:param str resource_name: The name of the resource.
|
pulumi_random/random_shuffle.py
CHANGED
|
@@ -204,7 +204,7 @@ class RandomShuffle(pulumi.CustomResource):
|
|
|
204
204
|
"us-west-1e",
|
|
205
205
|
],
|
|
206
206
|
result_count=2)
|
|
207
|
-
example = aws.
|
|
207
|
+
example = aws.index.Elb("example", availability_zones=az.results)
|
|
208
208
|
```
|
|
209
209
|
|
|
210
210
|
:param str resource_name: The name of the resource.
|
|
@@ -238,7 +238,7 @@ class RandomShuffle(pulumi.CustomResource):
|
|
|
238
238
|
"us-west-1e",
|
|
239
239
|
],
|
|
240
240
|
result_count=2)
|
|
241
|
-
example = aws.
|
|
241
|
+
example = aws.index.Elb("example", availability_zones=az.results)
|
|
242
242
|
```
|
|
243
243
|
|
|
244
244
|
:param str resource_name: The name of the resource.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
pulumi_random/__init__.py,sha256=8VkbhYkgH38VYz2jRS1n0ahW62d-oRIpLBQ6ln0WzS8,2002
|
|
2
|
+
pulumi_random/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
3
|
+
pulumi_random/provider.py,sha256=hzSVyYCQ254XI5qZuZO9Qdxur1HfiJT4eIpWGe60zeo,4518
|
|
4
|
+
pulumi_random/pulumi-plugin.json,sha256=0cFrskblndY8aDwluaL4_1AgB-s7QW_quLzp3dhUazk,83
|
|
5
|
+
pulumi_random/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
pulumi_random/random_bytes.py,sha256=DSSlcPEux1OivWbG7XZUaAyl6NcyFQwkX6hk9dPLATw,13521
|
|
7
|
+
pulumi_random/random_id.py,sha256=a72eUdeFhPChH39oTEtdluh8M0JPmdCZKV0lfnPwaNU,21036
|
|
8
|
+
pulumi_random/random_integer.py,sha256=2-zE7rSt0ZDP3EZykuOfABJEHgDBXIjf1xFvqUikS5g,16545
|
|
9
|
+
pulumi_random/random_password.py,sha256=RAtnKagNa11Kbrviw4g1xwBuRyQ-LK0n4dO6raTWJ9A,40428
|
|
10
|
+
pulumi_random/random_pet.py,sha256=szcBsv82ob8i9q-7a7h-h5xBND1qASdBvEqNpUweC20,14711
|
|
11
|
+
pulumi_random/random_shuffle.py,sha256=voymDAhcMer845GkGB58ARxZX-QHvqfhj9sAAFfqXsI,18287
|
|
12
|
+
pulumi_random/random_string.py,sha256=kqptjfTDV66MG01o5DkttLOvmPD36EtCLAGP1g7JEng,38931
|
|
13
|
+
pulumi_random/random_uuid.py,sha256=8PAvqu1RhVP3nIhxLtbwc9EFkjJHwcQS_BDlTOS9kjA,9426
|
|
14
|
+
pulumi_random-4.19.0a1764888436.dist-info/licenses/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
15
|
+
pulumi_random-4.19.0a1764888436.dist-info/METADATA,sha256=lFZO-6XddLfy5MLGKrbJPEzdIH67W00mye4LOfHVlVQ,3377
|
|
16
|
+
pulumi_random-4.19.0a1764888436.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
+
pulumi_random-4.19.0a1764888436.dist-info/top_level.txt,sha256=Fr908cjtyfvlU7ktTJrKv-Ztxn6dQpGlRqeNFVGEjL4,14
|
|
18
|
+
pulumi_random-4.19.0a1764888436.dist-info/RECORD,,
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
pulumi_random/__init__.py,sha256=8VkbhYkgH38VYz2jRS1n0ahW62d-oRIpLBQ6ln0WzS8,2002
|
|
2
|
-
pulumi_random/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
|
3
|
-
pulumi_random/provider.py,sha256=hzSVyYCQ254XI5qZuZO9Qdxur1HfiJT4eIpWGe60zeo,4518
|
|
4
|
-
pulumi_random/pulumi-plugin.json,sha256=wI4c0FYSXO94Ws73C8Q0rCIHFnLaqE_xchhYrB6yygk,83
|
|
5
|
-
pulumi_random/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
pulumi_random/random_bytes.py,sha256=DSSlcPEux1OivWbG7XZUaAyl6NcyFQwkX6hk9dPLATw,13521
|
|
7
|
-
pulumi_random/random_id.py,sha256=0WOecxl8Rer9JBRVUM-vc9Qj6Ahyh6hWVcyy1v8ABGc,21090
|
|
8
|
-
pulumi_random/random_integer.py,sha256=g0x_wNjw7Ka_mrn9XOsF_jD-OVUUdDB4d1HCtPgi12Y,16557
|
|
9
|
-
pulumi_random/random_password.py,sha256=kO4rTL61Ufsg1OCydJ0tWyF2_JrWB4ARQoAXdZc5mgw,40464
|
|
10
|
-
pulumi_random/random_pet.py,sha256=Kp5xYZV3bRJ5NCjHzkFEOXefoULj4B48RzLlKWFBsHg,14761
|
|
11
|
-
pulumi_random/random_shuffle.py,sha256=8f5j2D7VicaqYDntw9AHwEKjJeh-4YYf8CtId1LqJTw,18301
|
|
12
|
-
pulumi_random/random_string.py,sha256=kqptjfTDV66MG01o5DkttLOvmPD36EtCLAGP1g7JEng,38931
|
|
13
|
-
pulumi_random/random_uuid.py,sha256=8PAvqu1RhVP3nIhxLtbwc9EFkjJHwcQS_BDlTOS9kjA,9426
|
|
14
|
-
pulumi_random-4.19.0a1763667599.dist-info/licenses/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
|
15
|
-
pulumi_random-4.19.0a1763667599.dist-info/METADATA,sha256=AJ7HhiRR_TQIYDmeGUpIDYtw4ayFh-fhIRw_pVp8Nv8,3377
|
|
16
|
-
pulumi_random-4.19.0a1763667599.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
-
pulumi_random-4.19.0a1763667599.dist-info/top_level.txt,sha256=Fr908cjtyfvlU7ktTJrKv-Ztxn6dQpGlRqeNFVGEjL4,14
|
|
18
|
-
pulumi_random-4.19.0a1763667599.dist-info/RECORD,,
|
{pulumi_random-4.19.0a1763667599.dist-info → pulumi_random-4.19.0a1764888436.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|