Skip to content

Commit

Permalink
Rename to KeyVault.Acmebot (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
shibayan authored Aug 28, 2019
1 parent e6392aa commit c82e13e
Show file tree
Hide file tree
Showing 19 changed files with 28 additions and 27 deletions.
2 changes: 1 addition & 1 deletion AzureKeyVault.LetsEncrypt.sln → KeyVault.Acmebot.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28010.2036
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AzureKeyVault.LetsEncrypt", "AzureKeyVault.LetsEncrypt\AzureKeyVault.LetsEncrypt.csproj", "{81F62D09-D16D-4B0C-9DAE-C075580F5021}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KeyVault.Acmebot", "KeyVault.Acmebot\KeyVault.Acmebot.csproj", "{81F62D09-D16D-4B0C-9DAE-C075580F5021}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using Microsoft.Azure.WebJobs.Extensions.Http;
using Microsoft.Extensions.Logging;

namespace AzureKeyVault.LetsEncrypt
namespace KeyVault.Acmebot
{
public class AddCertificate
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using Microsoft.Azure.KeyVault.Models;
using Microsoft.Azure.WebJobs;

namespace AzureKeyVault.LetsEncrypt
namespace KeyVault.Acmebot
{
public interface ISharedFunctions
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

using ACMESharp.Crypto.JOSE;

namespace AzureKeyVault.LetsEncrypt.Internal
namespace KeyVault.Acmebot.Internal
{
internal class AccountKey
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

using Newtonsoft.Json;

namespace AzureKeyVault.LetsEncrypt.Internal
namespace KeyVault.Acmebot.Internal
{
public interface IAcmeProtocolClientFactory
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using Microsoft.Azure.Services.AppAuthentication;
using Microsoft.Rest;

namespace AzureKeyVault.LetsEncrypt.Internal
namespace KeyVault.Acmebot.Internal
{
internal class AppAuthenticationTokenProvider : ITokenProvider
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

using Microsoft.Azure.WebJobs.Extensions.DurableTask;

namespace AzureKeyVault.LetsEncrypt.Internal
namespace KeyVault.Acmebot.Internal
{
internal class InProcLifeCycleNotificationHelper : ILifeCycleNotificationHelper
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Runtime.Serialization;

namespace AzureKeyVault.LetsEncrypt.Internal
namespace KeyVault.Acmebot.Internal
{
[Serializable]
public class RetriableActivityException : Exception
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Microsoft.Extensions.Configuration;

namespace AzureKeyVault.LetsEncrypt.Internal
namespace KeyVault.Acmebot.Internal
{
internal class Settings
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Security.Cryptography.X509Certificates;

namespace AzureKeyVault.LetsEncrypt.Internal
namespace KeyVault.Acmebot.Internal
{
internal static class X509Certificate2Extensions
{
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using Microsoft.Azure.WebJobs;
using Microsoft.Extensions.Logging;

namespace AzureKeyVault.LetsEncrypt
namespace KeyVault.Acmebot
{
public class RenewCertificates
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using System;

using AzureKeyVault.LetsEncrypt.Internal;
using KeyVault.Acmebot.Internal;

namespace AzureKeyVault.LetsEncrypt
namespace KeyVault.Acmebot
{
public static class RetryStrategy
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
using ACMESharp.Authorizations;
using ACMESharp.Protocol;

using AzureKeyVault.LetsEncrypt.Internal;

using DnsClient;

using KeyVault.Acmebot.Internal;

using Microsoft.Azure.KeyVault;
using Microsoft.Azure.KeyVault.Models;
using Microsoft.Azure.Management.Dns;
using Microsoft.Azure.Management.Dns.Models;
using Microsoft.Azure.WebJobs;

namespace AzureKeyVault.LetsEncrypt
namespace KeyVault.Acmebot
{
public class SharedFunctions : ISharedFunctions
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using AzureKeyVault.LetsEncrypt.Internal;
using DnsClient;

using DnsClient;
using KeyVault.Acmebot;
using KeyVault.Acmebot.Internal;

using Microsoft.Azure.Functions.Extensions.DependencyInjection;
using Microsoft.Azure.KeyVault;
Expand All @@ -9,9 +10,9 @@
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Rest;

[assembly: FunctionsStartup(typeof(AzureKeyVault.LetsEncrypt.Startup))]
[assembly: FunctionsStartup(typeof(Startup))]

namespace AzureKeyVault.LetsEncrypt
namespace KeyVault.Acmebot
{
public class Startup : FunctionsStartup
{
Expand Down
File renamed without changes.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Azure Key Vault Let's Encrypt
# Key Vault Acmebot

[![Build Status](https://dev.azure.com/shibayan/azure-letsencrypt/_apis/build/status/Build%20azure-keyvault-letsencrypt?branchName=master)](https://dev.azure.com/shibayan/azure-letsencrypt/_build/latest?definitionId=29&branchName=master)
[![Release](https://img.shields.io/github/release/shibayan/azure-keyvault-letsencrypt.svg)](https://github.com/shibayan/azure-keyvault-letsencrypt/releases/latest)
[![License](https://img.shields.io/github/license/shibayan/azure-keyvault-letsencrypt.svg)](https://github.com/shibayan/azure-keyvault-letsencrypt/blob/master/LICENSE)
[![Build Status](https://dev.azure.com/shibayan/azure-acmebot/_apis/build/status/Build%20keyvault-acmebot?branchName=master)](https://dev.azure.com/shibayan/azure-acmebot/_build/latest?definitionId=38&branchName=master)
[![Release](https://img.shields.io/github/release/shibayan/keyvault-acmebot.svg)](https://github.com/shibayan/keyvault-acmebot/releases/latest)
[![License](https://img.shields.io/github/license/shibayan/keyvault-acmebot.svg)](https://github.com/shibayan/keyvault-acmebot/blob/master/LICENSE)

## Requirements

Expand All @@ -14,7 +14,7 @@

### 1. Deploy to Azure Functions

<a href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fshibayan%2Fazure-keyvault-letsencrypt%2Fmaster%2Fazuredeploy.json" target="_blank">
<a href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fshibayan%2Fkeyvault-acmebot%2Fmaster%2Fazuredeploy.json" target="_blank">
<img src="https://azuredeploy.net/deploybutton.png" />
</a>

Expand Down Expand Up @@ -63,4 +63,4 @@ curl https://YOUR-FUNCTIONS.azurewebsites.net/api/AddCertificate_HttpStart?code=

## License

This project is licensed under the [Apache License 2.0](https://github.com/shibayan/azure-keyvault-letsencrypt/blob/master/LICENSE)
This project is licensed under the [Apache License 2.0](https://github.com/shibayan/keyvault-acmebot/blob/master/LICENSE)
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ stages:
inputs:
command: 'publish'
publishWebProjects: false
arguments: '-c $(buildConfiguration) -o $(System.DefaultWorkingDirectory)/latest'
arguments: '-c $(buildConfiguration) -o $(Build.SourcesDirectory)/latest'

- publish: latest
artifact: function
Expand Down

0 comments on commit c82e13e

Please sign in to comment.