我将SendGrid与Azure一起使用,并且具有一个ARM模板,该模板将SendGridAccount部署到Azure。但是,在部署它时,它并没有说我需要接受SendGrid的市场条款
我得到了接受市场条款的强大工具。
Get-AzureRmMarketplaceTerms -Publisher "SendGrid" -Product "SendGrid Email Delivery" -Name "Free" | Set-AzureRmMarketplaceTerms -Accept
但是,我无法找到SendGrid的正确发布者ID,产品和商品名称。我如何找到此信息?
答案 0 :(得分:0)
好吧,模板将其释放:
publisher: Sendgrid
product: sendgrid_azure
name: free
因此命令将是:
Get-AzureRmMarketplaceTerms -Publisher SendGrid -Product sendgrid_azure -Name Free