Skip to content

Commit

Permalink
Merge pull request #9 from balukambala/dev
Browse files Browse the repository at this point in the history
Fixed the RegisterAzureAutomationDscNode cmdlet
  • Loading branch information
balukambala committed Nov 9, 2015
2 parents b30b857 + 0b126a9 commit 4c5410b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -809,6 +809,7 @@ public void RegisterDscNode(string resourceGroupName,
templateParameters.Add("rebootNodeIfNeeded", rebootFlag);
templateParameters.Add("actionAfterReboot", actionAfterReboot);
templateParameters.Add("allowModuleOverwrite", moduleOverwriteFlag);
templateParameters.Add("timestamp", DateTimeOffset.UtcNow.ToString("o"));

// invoke the New-AzureRmResourceGroupDeployment cmdlet
using (Pipeline pipe = Runspace.DefaultRunspace.CreateNestedPipeline())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ public class AutomationAccountState
public const int PsCommandValueDepth = 10;

// The template file is a json
public const string TemplateFile = @"https://eus2oaasibizamarketprod1.blob.core.windows.net/automationdscpreview/azuredeploy.json";
public const string TemplateFile = @"https://eus2oaasibizamarketprod1.blob.core.windows.net/automationdscpreview/azuredeployV2.json";

// The metaconfig file
public const string ModulesUrl = @"https://eus2oaasibizamarketprod1.blob.core.windows.net/automationdscpreview/RegistrationMetaConfig.zip";
public const string ModulesUrl = @"https://eus2oaasibizamarketprod1.blob.core.windows.net/automationdscpreview/RegistrationMetaConfigV2.zip";

public const string ConfigurationFunction = @"RegistrationMetaConfig.ps1\RegistrationMetaConfig";
public const string ConfigurationFunction = @"RegistrationMetaConfigV2.ps1\RegistrationMetaConfigV2";


public static class RunbookType
Expand Down

0 comments on commit 4c5410b

Please sign in to comment.