thankful-byte-3518
09/05/2024, 8:56 AM{
"resources": [
{
"type": "random:index/randomPassword:RandomPassword",
"id": "myV3ryGoodPassword",
"name": "resource_pass"
},
{
"type": "azure-native:keyvault:Secret",
"id": "**redacted**",
"name": "resource_pass_secret"
}
]
}
this is the reource
const password = new random.RandomPassword(
`resource_pass`,
{
length: 20,
minLower: 1,
minUpper: 1,
minNumeric: 1,
minSpecial: 1,
special: true,
}
);
the problem is, it appears you cannot specify the parameters for password during import, which leads to the password being replaced on next pulumi up
the whole purpose of importing password is for it not to get replaced. Is there any way around this, am I missing something?thankful-byte-3518
09/05/2024, 9:31 AMminUpper: 1
for upper: true
and its fixed.
Thanks for your help 😄enough-garden-22763
09/05/2024, 2:21 PMambitious-school-30758
10/30/2024, 10:41 PM