我正在使用 Pulumi 部署几个 Azure 资源,效果很好。
我正在部署一个 TopicAuthorizationRule 并且我需要操作连接字符串以使其与 Azure 函数触发器一起使用。
const myPolicy = new azure.eventhub.TopicAuthorizationRule(...);
const myPolicyConnectionString = myPolicy.primaryConnectionString.get();
const goodConnectionString = myPolicyConnectionString .substr(0, myPolicyConnectionString .lastIndexOf(';EntityPath'));
我有这个错误:在更新或预览期间无法调用“.get”
如何进行此字符串操作以便在 AppSettings 中进行设置?