1

I am getting the following error when running az appconfig

az appconfig kv export: error: the following arguments are required: --destination/-d

az appconfig kv export -f bin\Debug\netcoreapp2.1\azureappconfig.json --format json --separator : --connection-string Endpoint=https://tvtestappconfig.azconfig.io;Id=fwef34rw432r32f43;Secret=123412341234123412344=

Extensions: appconfig 0.5.0

I was following instruction in this link https://docs.microsoft.com/en-us/azure/azure-app-configuration/integrate-ci-cd-pipeline

4

1 回答 1

1

看起来您正在尝试导出到文件。在这种情况下,您需要传递-d 文件--destination 文件的缩写)。

az appconfig kv export --destination file -f bin\Debug\netcoreapp2.1\azureappconfig.json --format json --separator : --connection-string {ConnectionString}

于 2019-06-17T15:39:22.163 回答