Why deprecate passing arguments with an environmental variable #737
-
In version 0.29
It seems odd to me that you would deprecate an arguement you can pass on the command line in favor of only an environmental variable. This Breaks previous code and provides no real benefit - why not allow both (with the command line taking precedent)? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @jmstrupp-psjh 👋, We didn't remove the arg from the Now since the |
Beta Was this translation helpful? Give feedback.
Hi @jmstrupp-psjh 👋,
We didn't remove the arg from the
migrate-repo
command, we just removed it from thegenerate-script
command mainly because of security reasons so that the secret won't appear in the generated script. This is similar to--github-source-pat
and--github-traget-pat
args which are not supported ingenerate-script
command again for security reasons.Now since the
migrate-repo
command still accepts the--azure-storage-connection-string
as an option, it is possible to edit the generated script and manually add it to allmigrate-repo
commands.