【发布时间】:2019-04-03 15:48:08
【问题描述】:
我在 Azure 中使用 SendGrid,并且有一个将 SendGridAccount 部署到 Azure 的 ARM 模板。但是,在部署时失败说我需要接受 SendGrid 的市场条款
我得到了接受市场条款的 powershell。
Get-AzureRmMarketplaceTerms -Publisher "SendGrid" -Product "SendGrid Email Delivery" -Name "Free" | Set-AzureRmMarketplaceTerms -Accept
但是,我无法为 SendGrid 找到正确的发布者 ID、产品和报价名称。我怎样才能找到这些信息?
【问题讨论】:
-
可以分享一下模板吗?
-
部署 SendGrid 帐户的部分看起来像这样
{ "name": "[variables('sendgrid_Account_Name')]", "type": "Sendgrid.Email/accounts", "location": "[parameters('Applocation')]", "apiVersion": "2015-01-01", "plan": { "name": "free", "publisher": "Sendgrid", "product": "sendgrid_azure", "promotionCode": "" }, "properties": { "password": "[parameters('sendgrid_Account_Password')]", "acceptMarketingEmails": false, "email": "[parameters('sendgrid_Account_Email')]" } }
标签: azure azure-devops sendgrid azure-marketplace