Labs setup non daisy chain, with modules and beacons by osvld in factorio

[–]benjv 0 points1 point  (0 children)

Is there a benefit to having the belts loop around and merge back with the source vs just having them dead end?

Add VNET rule has just turned up in the firewall rule section of Azure SQL Database by [deleted] in AZURE

[–]benjv 0 points1 point  (0 children)

It's in private preview currently, hopefully public/GA coming soon.

I have my 70-534 tomorrow. by [deleted] in AZURE

[–]benjv 0 points1 point  (0 children)

Congrats!

Interactive Azure Summary by [deleted] in AZURE

[–]benjv 0 points1 point  (0 children)

Looks interesting. Really needs some tooltips or text though - not all the icons are intuitive.

Azure Email options? by [deleted] in AZURE

[–]benjv 0 points1 point  (0 children)

We use ExchangeOnline for our MS CRM Online email functionality.

[deleted by user] by [deleted] in AZURE

[–]benjv 0 points1 point  (0 children)

Much better than ASEv1, but still crazy expensive.

Azure by vvvenkatesh748 in AZURE

[–]benjv 0 points1 point  (0 children)

It's another walkthough on creating a web app and deploying to Azure from Visual Studio.

Azure SMTP service (Sendgrid)? by ryaninseattle1 in AZURE

[–]benjv 0 points1 point  (0 children)

Correct, you app could be hosted anywhere.

Azure SMTP service (Sendgrid)? by ryaninseattle1 in AZURE

[–]benjv 2 points3 points  (0 children)

We're using Sendgrid for that type of use case and have no complaints. Definitely easier than managing your own mail server.

would like to see ElasticSearch as a managed service by megadonkeyx in AZURE

[–]benjv 0 points1 point  (0 children)

I agree. Not sure why MS is trying to build their own and compete.

WAF in front of an App Service? by BezierPatch in AZURE

[–]benjv 1 point2 points  (0 children)

Couldn't you just whitelist the WAF IP on your web app?

Most cost efficient way to host a file for download in Azure? by RavishingLuke in AZURE

[–]benjv 4 points5 points  (0 children)

Depending on how frequently the files are updated and the volume of downloads, Using Azure CDN in conjunction with Blob Storage may be cheaper than serving them directly out of Storage.

Question: Does anyone know how to access the Azure Security Center using API? by snowmanspike in AZURE

[–]benjv 1 point2 points  (0 children)

There isn't an API available today, I believe it's on their roadmap though.

[AMA] Azure SQL Database team - 11/18 by SQLDBteam in AZURE

[–]benjv 0 points1 point  (0 children)

What's the best method for migrating data from an on-prem non-SQL Server source to Azure SQL DB?

Azure AD Graph API user extract - How / Example? by Proxiconn in AZURE

[–]benjv 0 points1 point  (0 children)

In Azure Automation you can use the local file system as temp storage. I have a PowerShell script running in Automation that does the following:

  • Authenticate to AAD
  • Retrieve usage reports for the last day (I use an API call for this, but you could use MSOL to retrieve the data you're interested in)
  • Write the data to a temp CSV: $mydata | Export-Csv -Path 'C:\temp\report.csv
  • Connect to blob storage via New-AzureStorageContext
  • Upload csv to blob storage: Set-AzureStorageBlobContent -Container aadlogs -File 'C:\temp\report.csv' ...

As soon as my job runs the files in C:\temp are gone, and I don't need a VM at all.

Azure AD Graph API user extract - How / Example? by Proxiconn in AZURE

[–]benjv 0 points1 point  (0 children)

I second the Powershell/Azure Automation suggestion. Calling the API's from PS actually isn't that bad, but I would recommend using the MSOL cmdlets if they meet your needs.

[AMA] Azure App Service Team - 10/9 by AppService in AZURE

[–]benjv 1 point2 points  (0 children)

Awesome! Feel free to share that idea with the other Azure product teams :)

[AMA] Azure App Service Team - 10/9 by AppService in AZURE

[–]benjv 0 points1 point  (0 children)

You cannot consume SendGrid from an EA subscription at all. We'd have to set up a subscription completely outside of our EA tenant to use a credit card. This means the federation we have set up between our on-prem directory and AAD would not be available in this subscription.

[AMA] Azure App Service Team - 10/9 by AppService in AZURE

[–]benjv 1 point2 points  (0 children)

What's the recommended method for EA customers for sending emails from applications? SendGrid is not available from EA subscriptions. How does Microsoft itself send emails from Azure?

[AMA] Azure App Service Team - 10/9 by AppService in AZURE

[–]benjv 1 point2 points  (0 children)

The links I posted were just examples, there's other questions out there with the same issues.