1

我在 Azure 中使用 SendGrid,并且有一个将 SendGridAccount 部署到 Azure 的 ARM 模板。但是,在部署时失败说我需要接受 SendGrid 的市场条款

我得到了接受市场条款的 powershell。 Get-AzureRmMarketplaceTerms -Publisher "SendGrid" -Product "SendGrid Email Delivery" -Name "Free" | Set-AzureRmMarketplaceTerms -Accept

但是,我无法为 SendGrid 找到正确的发布者 ID、产品和报价名称。我怎样才能找到这些信息?

4

1 回答 1

0

好吧,模板给出了它:

publisher: Sendgrid
product: sendgrid_azure
name: free

所以命令是:

Get-AzureRmMarketplaceTerms -Publisher SendGrid -Product sendgrid_azure -Name Free
于 2019-04-03T16:14:48.013 回答