1

As per documentation of Microsoft.Automation/automationAccounts/modules (https://learn.microsoft.com/en-us/azure/templates/microsoft.automation/automationaccounts/modules#ContentLink) it's expecting URI parameter. What exactly supposed to be at the end of that parameter? I want to push my custom module and it's possible through UI via ZIP file and I expected that I can specify ZIP with custom DSC resource but it did not work. There is no documentation I was able to find what shall appear in that URI.

4c74356b41
  • 69,186
  • 6
  • 100
  • 141
Gregory Suvalian
  • 3,566
  • 7
  • 37
  • 66

1 Answers1

2

You need to provide uri to your zipped dsc module ;) There are a bunch of article online that you can salvage data from. Like this.

Also, take a look here

4c74356b41
  • 69,186
  • 6
  • 100
  • 141
  • 1
    FYI, for anybody looking to implement this, it's not just ZIPped custom module, it does in fact requires some additional files. Details are available here (https://azure.microsoft.com/en-us/blog/authoring-integration-modules-for-azure-automation/) – Gregory Suvalian Mar 01 '18 at 21:12
  • Please note, however, that additional files are required only if you want to define a new Connection Type in the module. If you don't need that, just zip your custom module files. – Anatoli Beliaev Mar 02 '18 at 21:17