forked from pulumi/examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MyStack.cs
194 lines (181 loc) · 7.8 KB
/
MyStack.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
// Copyright 2016-2021, Pulumi Corporation. All rights reserved.
using System.Collections.Generic;
using Pulumi;
using Authorization = Pulumi.AzureNative.Authorization;
using DocumentDB = Pulumi.AzureNative.DocumentDB;
using Logic = Pulumi.AzureNative.Logic;
using Resources = Pulumi.AzureNative.Resources;
using Storage = Pulumi.AzureNative.Storage;
using Web = Pulumi.AzureNative.Web;
class MyStack : Stack
{
public MyStack()
{
// Create an Azure Resource Group
var resourceGroup = new Resources.ResourceGroup("resourceGroup");
// Create an Azure resource (Storage Account)
var storageAccount = new Storage.StorageAccount("logicappdemosa", new Storage.StorageAccountArgs
{
ResourceGroupName = resourceGroup.Name,
Sku = new Storage.Inputs.SkuArgs
{
Name = Storage.SkuName.Standard_LRS,
},
Kind = Storage.Kind.StorageV2,
});
// Cosmos DB Account
var cosmosdbAccount = new DocumentDB.DatabaseAccount("logicappdemo-cdb", new DocumentDB.DatabaseAccountArgs
{
ResourceGroupName = resourceGroup.Name,
DatabaseAccountOfferType = DocumentDB.DatabaseAccountOfferType.Standard,
Locations =
{
new DocumentDB.Inputs.LocationArgs
{
LocationName = resourceGroup.Location,
FailoverPriority = 0,
},
},
ConsistencyPolicy = new DocumentDB.Inputs.ConsistencyPolicyArgs
{
DefaultConsistencyLevel = DocumentDB.DefaultConsistencyLevel.Session,
},
});
// Cosmos DB Database
var db = new DocumentDB.SqlResourceSqlDatabase("sqldb", new DocumentDB.SqlResourceSqlDatabaseArgs
{
ResourceGroupName = resourceGroup.Name,
AccountName = cosmosdbAccount.Name,
Resource = new DocumentDB.Inputs.SqlDatabaseResourceArgs
{
Id = "sqldb",
},
});
// Cosmos DB SQL Container
var dbContainer = new DocumentDB.SqlResourceSqlContainer("container", new DocumentDB.SqlResourceSqlContainerArgs
{
ResourceGroupName = resourceGroup.Name,
AccountName = cosmosdbAccount.Name,
DatabaseName = db.Name,
Resource = new DocumentDB.Inputs.SqlContainerResourceArgs
{
Id = "container",
PartitionKey = new DocumentDB.Inputs.ContainerPartitionKeyArgs { Paths = {"/myPartitionKey" }, Kind = "Hash"},
},
});
var accountKeys = DocumentDB.ListDatabaseAccountKeys.Invoke(new DocumentDB.ListDatabaseAccountKeysInvokeArgs
{
AccountName = cosmosdbAccount.Name,
ResourceGroupName = resourceGroup.Name
});
var apiId = Output.Create(Authorization.GetClientConfig.InvokeAsync())
.Apply(clientConfig => Output.Format(
$"/subscriptions/{clientConfig.SubscriptionId}/providers/Microsoft.Web/locations/{resourceGroup.Location}/managedApis/documentdb"));
// API Connection to be used in a Logic App
var connection = new Web.Connection("cosmosdbConnection", new Web.ConnectionArgs
{
ResourceGroupName = resourceGroup.Name,
Properties = new Web.Inputs.ApiConnectionDefinitionPropertiesArgs
{
DisplayName = "cosmosdb_connection",
Api = new Web.Inputs.ApiReferenceArgs
{
Id = apiId,
},
ParameterValues =
{
{ "databaseAccount", cosmosdbAccount.Name },
{ "accessKey", accountKeys.Apply(accountKeys => accountKeys.PrimaryMasterKey) },
},
},
});
// Logic App with an HTTP trigger and Cosmos DB action
var workflow = new Logic.Workflow("httpToCosmos", new Logic.WorkflowArgs
{
ResourceGroupName = resourceGroup.Name,
Definition = new Dictionary<string, object>
{
{ "$schema", "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#" },
{ "contentVersion", "1.0.0.0" },
{ "parameters", new Dictionary<string, object>
{
{ "$connections",new Dictionary<string, object>
{
{ "defaultValue", new Dictionary<string, object>() },
{ "type", "Object" },
} },
} },
{ "triggers", new Dictionary<string, object>
{
{ "Receive_post", new Dictionary<string, object>
{
{ "type", "Request" },
{ "kind", "Http" },
{ "inputs", new Dictionary<string, object>
{
{ "method", "POST" },
{ "schema", new Dictionary<string, object>
{
{ "properties", new Dictionary<string, object>() },
{ "type", "object" },
} },
} },
} },
} },
{ "actions", new Dictionary<string, object>
{
{ "write_body", new Dictionary<string, object>
{
{ "type", "ApiConnection" },
{ "inputs", new Dictionary<string, object>
{
{ "body", new Dictionary<string, object>
{
{ "data", "@triggerBody()" },
{ "id", "@utcNow()" },
} },
{ "host", new Dictionary<string, object>
{
{ "$connection",new Dictionary<string, object>
{
{ "name", "@parameters('$connections')['documentdb']['connectionId']" },
} },
} },
{ "method", "post" },
{ "path", Output.Tuple(db.Name, dbContainer.Name).Apply(values =>
{
var dbName = values.Item1;
var dbContainerName = values.Item2;
return $"/dbs/{dbName}/colls/{dbContainerName}/docs";
}) },
} },
} },
} },
},
Parameters =
{
{ "$connections", new Logic.Inputs.WorkflowParameterArgs
{
Value = new Dictionary<string, object>
{
{ "documentdb", new Dictionary<string, object>
{
{ "connectionId", connection.Id },
{ "connectionName", "logicapp-cosmosdb-connection" },
{ "id", apiId },
} },
},
} },
},
});
var callbackUrls = Logic.ListWorkflowTriggerCallbackUrl.Invoke(new Logic.ListWorkflowTriggerCallbackUrlInvokeArgs
{
ResourceGroupName = resourceGroup.Name,
WorkflowName = workflow.Name,
TriggerName = "Receive_post",
});
this.Endpoint = callbackUrls.Apply(callbackUrls => callbackUrls.Value);
}
[Output("endpoint")]
public Output<string> Endpoint { get; set; }
}