Search code examples
azureazure-devopssendgridazure-marketplace

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?


Solution

  • 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