Is possible to add powershell modules registered to the 7.1 runtime via bicep?
Current configuration:
resource moduleResources 'Microsoft.Automation/automationAccounts/modules@2020-01-13-preview' = [for m in modules: {
name: m.name
location: location
parent: automationAccount
properties: {
contentLink: {
uri: m.uri
}
}
}]