Uses the native Azure Provider running on .NET 5 and C# 9 to deploy containerized web applications.
using Pulumi;
await Deployment.RunAsync<MyStack>();
class MyStack : Stack
{
public MyStack()
{
var cluster = new AksCluster("aks");
var app = new WebApplication("hello", new()
{
Cluster = cluster,
AppFolder = "./app"
});
this.Endpoint = app.Endpoint;
}
[Output] public Output<string> Endpoint { get; set; }
}
git clone https://github.com/pulumi/examples
cd examples/azure-cs-net5-aks-webapp