Skip to content

Commit

Permalink
correct indentations for Azure option in build.fsx - fixes #102
Browse files Browse the repository at this point in the history
  • Loading branch information
theimowski committed Jun 7, 2018
1 parent bb2e334 commit e6c266d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions Content/build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,14 +143,14 @@ Target "ArmTemplate" (fun _ ->
let location = getBuildParamOrDefault "location" Region.EuropeWest.Name
let pricingTier = getBuildParamOrDefault "pricingTier" "F1"
{ DeploymentName = "SAFE-template-deploy"
ResourceGroup = New(resourceGroupName, Region.Create location)
ArmTemplate = IO.File.ReadAllText armTemplate
Parameters =
Simple
[ "environment", ArmString environment
"location", ArmString location
"pricingTier", ArmString pricingTier ]
DeploymentMode = Incremental }
ResourceGroup = New(resourceGroupName, Region.Create location)
ArmTemplate = IO.File.ReadAllText armTemplate
Parameters =
Simple
[ "environment", ArmString environment
"location", ArmString location
"pricingTier", ArmString pricingTier ]
DeploymentMode = Incremental }

deployment
|> deployWithProgress authCtx
Expand Down

0 comments on commit e6c266d

Please sign in to comment.