Hi, is this a bug or I'm doing something wrong: f...
# general
r
Hi, is this a bug or I'm doing something wrong: for the command: pulumi config --non-interactive set --plaintext --path "custom:sqlDatabase.maxSizeBytes" '-1' -s scus.stg I do get error message: error: unknown shorthand flag: '1' in -1 I do suppose you wrongly parse the value - or should I try something else? all I have tried ( "`"-1`"", "-1" ) has the same result. Only what works is: " -1" but the result is not what I do want - in configuration is:
Copy code
maxSizeBytes: ' -1'
instead of just -1
e
Does
pulumi config --non-interactive set --plaintext --path "custom:sqlDatabase.maxSizeBytes" -- '-1' -s scus.stg
work?
r
hi, not really :(
I'm using windows powershell, pulumi is in version v3.167.0
e
oh sorry messed that up a bit
Copy code
pulumi config --non-interactive set --plaintext --path "custom:sqlDatabase.maxSizeBytes" -s scus.stg -- '-1'
Do all flags then "--" then the -1
r
cool this works fine, thx a lot!