-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathAzureVariables.cs
25 lines (24 loc) · 1.07 KB
/
AzureVariables.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
namespace Calamari.Azure
{
public static class AzureVariables
{
public static class Action
{
public static class Azure
{
/// <summary>
/// Expected Values:
/// Package,
/// Container,
/// </summary>
public static readonly string DeploymentType = "Octopus.Action.Azure.DeploymentType";
public static readonly string ResourceGroupName = "Octopus.Action.Azure.ResourceGroupName";
public static readonly string WebAppName = "Octopus.Action.Azure.WebAppName";
public static readonly string WebAppSlot = "Octopus.Action.Azure.DeploymentSlot";
public static readonly string AppSettings = "Octopus.Action.Azure.AppSettings";
public static readonly string ConnectionStrings = "Octopus.Action.Azure.ConnectionStrings";
public static readonly string AsyncZipDeploymentTimeout = "Octopus.Action.Azure.AsyncZipDeploymentTimeout";
}
}
}
}