Skip to content

Instantly share code, notes, and snippets.

View SidneyAndrewsOpsgility's full-sized avatar

Sidney Andrews SidneyAndrewsOpsgility

View GitHub Profile
@SidneyAndrewsOpsgility
SidneyAndrewsOpsgility / AzureDev.ps1
Last active March 2, 2021 19:29
Azure Resource Manager Template to create a Development VM using PowerShell Desired State Configuration (DSC) and Web Platform Installer (WPI)
Configuration AzureDev
{
Node localhost
{
#Install IIS
WindowsFeature IIS
{
Ensure = “Present”
Name = “Web-Server”
}
1
00:00:00,020 --> 00:00:00,520
Let's.
2
00:00:01,670 --> 00:00:04,560
Briefly look at how you can use github to ...
3
00:00:04,560 --> 00:00:07,510
@SidneyAndrewsOpsgility
SidneyAndrewsOpsgility / ClockService.svc
Created September 10, 2015 19:05
This is a WCF service hosted in ASP.NET (using an SVC file) that can be used with Service Bus Relay. You must add the Service Bus NuGet packages to get this to work
<%@ ServiceHost Language="C#" Debug="true" Service="WcfTest.Services.ClockService" CodeBehind="ClockService.svc.cs" %>
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"VirtualNetworkPrefix": {
"type": "string",
"metadata": {
"description": "Name for the virtual network"
}
}