简体   繁体   中英

How to get azure market place publisher id and product information?

I am using SendGrid with Azure and have a ARM template that deploys SendGridAccount to Azure. However while deploying it fails saying that I need to accept market place terms for SendGrid

I got the powershell that accepts the market place terms. Get-AzureRmMarketplaceTerms -Publisher "SendGrid" -Product "SendGrid Email Delivery" -Name "Free" | Set-AzureRmMarketplaceTerms -Accept

However I am not able to find the correct publisher id, product and offer names for the SendGrid. How can I find this information?

well, the template gives it away:

publisher: Sendgrid
product: sendgrid_azure
name: free

so the command would be:

Get-AzureRmMarketplaceTerms -Publisher SendGrid -Product sendgrid_azure -Name Free

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM