Is there a way to use storage account for azure au...
# azure
f
Is there a way to use storage account for azure automation module content link, rather than GitHub
Copy code
example_run_book = azure.automation.RunBook("exampleRunBook",
    location=example_resource_group.location,
    resource_group_name=example_resource_group.name,
    automation_account_name=example_account.name,
    log_verbose=True,
    log_progress=True,
    description="This is an example runbook",
    runbook_type="PowerShellWorkflow",
    publish_content_link=azure.automation.RunBookPublishContentLinkArgs(
        uri="<https://raw.githubusercontent.com/Azure/azure-quickstart-templates/c4935ffb69246a6058eb24f54640f53f69d3ac9f/101-automation-runbook-getvms/Runbooks/Get-AzureVMTutorial.ps1>",
    ))
From the original terraform, there seems to be a way to use local file Is there a way we can do that in Pulumi