-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
59 lines (51 loc) · 2.15 KB
/
Program.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
using System.Collections.Generic;
using System.Threading.Tasks;
using Microsoft.Azure.Storage;
using Microsoft.Azure.Storage.Blob;
using Microsoft.Azure.Storage.Shared.Protocol;
using Pulumi;
using Pulumi.Azure.Core;
using Pulumi.Azure.Storage;
class Program
{
static Task<int> Main()
{
return Deployment.RunAsync(() => {
// Create an Azure Resource Group
var resourceGroup = new ResourceGroup("mystaticsite");
// Create an Azure Storage Account
var storageAccount = new Account("mysite", new AccountArgs
{
ResourceGroupName = resourceGroup.Name,
EnableHttpsTrafficOnly = true,
AccountReplicationType = "LRS",
AccountTier = "Standard",
AccountKind = "StorageV2",
AccessTier = "Hot",
});
// We can't enable static sites using Pulumi (it's not exposed in the ARM API).
// Therefore we have to invoke the Azure SDK from within the Pulumi code to enable the static sites
// The code in the Apply method must be idempotent.
if (!Deployment.Instance.IsDryRun)
storageAccount.PrimaryBlobConnectionString.Apply(async v => await EnableStaticSites(v) );
// Export the Web address string for the storage account
return new Dictionary<string, object>
{
{ "Site-Url", storageAccount.PrimaryWebEndpoint },
};
});
static async Task EnableStaticSites(string connectionString)
{
CloudStorageAccount sa = CloudStorageAccount.Parse(connectionString);
var blobClient = sa.CreateCloudBlobClient();
ServiceProperties blobServiceProperties = new ServiceProperties();
blobServiceProperties.StaticWebsite = new StaticWebsiteProperties
{
Enabled = true,
IndexDocument = "index.html",
// ErrorDocument404Path = "404.html"
};
await blobClient.SetServicePropertiesAsync(blobServiceProperties);
}
}
}