首页 > 解决方案 > Azure App Configuration Values referencing other Keys

问题描述

In Azure Devops Variable Groups you do something like:

FileRepo = 'FolderA' LogFile = '$(FileRepo)/Log.txt'

Is this possible in Azure App Configuration?

*UPDATE: When using the App Configration as an Azure Devops Task extenstion, $() references will work during pipelines.

标签: azureazure-devopsazure-app-configuration

解决方案


不,这是不可能的。设置是平面的,它们不支持引用其他设置值。您可以尝试以编程方式执行此操作,方法是用实际值替换您的标记,但没有什么是开箱即用的。


推荐阅读