adamant-autumn-75882
08/16/2024, 3:32 PMdry-keyboard-94795
08/16/2024, 3:40 PMpulumi up --replace 'random_password_urn'
. I forget if it's possible thoughadamant-autumn-75882
08/16/2024, 4:09 PMadamant-autumn-75882
08/16/2024, 4:09 PMadventurous-butcher-54166
08/16/2024, 5:37 PMkeepers
parameter if you want Pulumi to regenerate the random value.
Depending on your programming language but this would roughly be one way of doing that in Python..
import uuid;
from pulumi_random import RandomString
RandomString(
...
keepers = {
"trigger": uuid.uuid4().hex.upper()[0:6]
},
)