diff --git a/arm-template.json b/arm-template.json index fca6a2c..39df4f7 100644 --- a/arm-template.json +++ b/arm-template.json @@ -14,10 +14,10 @@ }, "variables": { "environment": "[toLower(parameters('environment'))]", - "prefix": "[concat('safe-', variables('environment'))]", + "prefix": "[concat('lunchrun-', variables('environment'))]", "appServicePlan": "[concat(variables('prefix'), '-web-host')]", "web": "[concat(variables('prefix'), '-web')]", - "storage": "[concat('safe', variables('environment'), 'storage')]", + "storage": "[concat('lunchrun', variables('environment'), 'storage')]", "insights": "[concat(variables('prefix'), '-insights')]" }, "resources": [ diff --git a/build.fsx b/build.fsx index 2abec3b..84c1a27 100644 --- a/build.fsx +++ b/build.fsx @@ -132,7 +132,7 @@ let mutable deploymentOutputs : ArmOutput option = None Target.create "ArmTemplate" (fun _ -> let environment = Environment.environVarOrDefault "environment" (Guid.NewGuid().ToString().ToLower().Split '-' |> Array.head) let armTemplate = @"arm-template.json" - let resourceGroupName = "safe-" + environment + let resourceGroupName = "lunchrun-" + environment let authCtx = // You can safely replace these with your own subscription and client IDs hard-coded into this script. diff --git a/paket.dependencies b/paket.dependencies index 06557b0..bde9090 100644 --- a/paket.dependencies +++ b/paket.dependencies @@ -1,3 +1,4 @@ +version 5.216.0 group Server source https://api.nuget.org/v3/index.json framework: netcoreapp2.2