DenevCloud.AspNetCore.Services.Azure 0.1.2-preview.1

This is a prerelease version of DenevCloud.AspNetCore.Services.Azure.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package DenevCloud.AspNetCore.Services.Azure --version 0.1.2-preview.1
NuGet\Install-Package DenevCloud.AspNetCore.Services.Azure -Version 0.1.2-preview.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DenevCloud.AspNetCore.Services.Azure" Version="0.1.2-preview.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DenevCloud.AspNetCore.Services.Azure --version 0.1.2-preview.1
#r "nuget: DenevCloud.AspNetCore.Services.Azure, 0.1.2-preview.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install DenevCloud.AspNetCore.Services.Azure as a Cake Addin
#addin nuget:?package=DenevCloud.AspNetCore.Services.Azure&version=0.1.2-preview.1&prerelease

// Install DenevCloud.AspNetCore.Services.Azure as a Cake Tool
#tool nuget:?package=DenevCloud.AspNetCore.Services.Azure&version=0.1.2-preview.1&prerelease

DenevCloud.AspNetCore.Services.Azure

Easy to use and ready-to-go ASP.NET Core services for Azure

Usage / Sample

Startup.cs

public void ConfigureServices(IServiceCollection services)
{
    services.AddDenevCloudAzure(Configuration)
                    .UseVirtualMachines(Configuration)
                    .UseKeyVaults(Configuration)
                    .UseAzureDNS(Configuration);
}

appsettings.json

"DenevCloud": {
    "tenant_id": "tenant_id",
    "subscriptionId": "subscriptionId",
    "VMclient_id": "VMclient_id",
    "VMclient_sercet": "VMclient_sercet",
    "VMresource": "https://management.core.windows.net/",
    "VMResourceGroup": "VMResourceGroup",
    "KeyVault_clientId": "KeyVault_clientId",
    "KeyVault_clientSecret": "KeyVault_clientSecret",
    "KeyVault_endpoint": "KeyVault_endpoint"
  }

Note: In KeyVault_endpoint you should enter only the endpoint name not the whole link (https://my-endpoint.vault.azure.net/ ⇒ KeyVault_endpoint : my-endpoint) Note: It's recommended to use different App Registration for each resource

Index.cshtml

@using DenevCloud.AspNetCore.Services.Azure.VirtualMachines
@using DenevCloud.AspNetCore.Services.Azure.VirtualMachines.NetworkInterfaces

@inject IVMManager vmManager
@inject INetworkInterfaceManager netManager

@{
    ViewData["Title"] = "Home Page";
    var vm = vmManager.GetVirtualMachine("Your_VM_Name");
}

<div class="text-center">
    <h1 class="display-4">Welcome</h1>

    <p>Name: @vm.Name</p>
    <p>Location: @vm.Location</p>

    <p>Public Ipv4: @netManager.GetListPublicIpv4(vm).First()</p>
    <p>Public Ipv6: @netManager.GetListPublicIpv6(vm).First()</p>

    <p>Private Ipv4: @netManager.GetListPrivateIpv4(vm).First()</p>
    <p>Private Ipv6: @netManager.GetListPrivateIpv6(vm).First()</p>

    <div>
        <form class="form-inline" asp-action="SaveSecret" asp-controller="Home" method="post">
            <div class="form-group">
                <label class="mr-2">Secret Name</label>
                <input class="form-control" name="SecretName" value="" />
            </div>
            <div class="form-group">
                <label class="mr-2">Secret Value</label>
                <input class="form-control" name="SecretValue" type="password" value="" />
            </div>
            <button class="btn btn-secondary" type="submit">Submit</button>
        </form>
    </div>

    @if (ViewBag.SecretSaved == true)
    {
        <p class="text-success">Saved</p>
    }

</div>

HomeController.cs

private readonly IKeyVaultManager keyVaultManager;

public HomeController(IKeyVaultManager keyVaultManager)
{
    this.keyVaultManager = keyVaultManager;
}

[HttpPost("SaveSecret")]
public IActionResult SaveSecret(string SecretName, string SecretValue)
{
    keyVaultManager.SetNewSecret(SecretName, SecretValue);
    ViewBag.SecretSaved = true;
    return RedirectToAction("Index");
}

List of available functionality

  • IVMManager ⇒ A set of Virtual Machine functions
  • INetworkInterfaceManager ⇒ A set of Network Interface functions including getting public and private IPv4 / IPv6
  • IKeyVaultManager ⇒ A set of Key Vault functions

Note: All of the above include Async functionality too

Coming Soon

  • Instead of appsettings.json , an option to use Azure Key Vault will be supported
  • Azure Key Vault Manager (further improvement and set of functions)
  • Azure Virtual Machines (further improvement and set of functions)
  • Network Interfaces (further improvement and set of functions)
  • Azure Analytics Workspace Manager (with special futures for IIS and Azure CDN Logs)
  • Azure DNS Manager

Azure Configuration

Please visit github for more information.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.1.5-preview.1 93 1/15/2024
0.1.3-preview.1 184 9/7/2021
0.1.2-preview.1 156 8/10/2021
0.1.1-preview.2 171 8/9/2021
0.1.1-preview.1 149 8/9/2021