Slide 13
Slide 13 text
Resource Deployer
FunctionName("AldoResourceDeployer")]
public async Task Run([QueueTrigger("azure-resource-deploy" ...
[Queue("project-deploy" ...)
{
var azure = await azureService.Authenticate(conf.ClientId,
conf.ClientSecret, conf.TenantId);
var deploy = await deploymentService.Deploy(azure,
deployOptions, ard.AzureResource);
if(deploy.IsSuccess)
{
var message = ...
await notificationService.SendUserNotification(user,message);
}
...
}