Code Monkey home page Code Monkey logo

key-vault-connector-for-logic-apps's Introduction

Key Vault Connector for Logic Apps

This provides a custom Key Vault API Connector for Logic Apps.

Background

Currently Microsoft Logic App doesn't provide a Logic App connector for Azure Key Vault. Although there is a workaround to get access to Key Vault directly from the Logic App, it would be easier to use an API connection like any other connectors.

Therefore, this repository offers a custom API using Azure Functions to access to Key Vault.

More Readings

  • 한국어: TBD
  • English: TBD

Getting Started

This consists of several components using Azure products/services:

  • Azure Storage Account
  • Azure Application Insights
  • Azure Consumption Plan
  • Azure Functions
  • Azure Logic Apps Custom Connector
  • Azure API Connection - Custom Connector
  • Azure Logic App
  • Azure Key Vault

NOTE: The Logic App instance is for testing purpose.

Deployment through Azure Portal

Click the button below to deploy the ARM template through Azure Portal:

Deployment through Azure PowerShell

Alternatively, deploy it through Azure PowerShell.

  1. Login to Azure Resource Manager through PowerShell.

    Login-AzureRmAccount
  2. Create a resource group.

    New-AzureRmResourceGroup `
        -Name "[RESOURCE_GROUP_NAME]" `
        -Location "[LOCATION]"
  3. Update azuredeploy.parameters.json.

  4. Deploy the ARM template.

    New-AzureRmResourceGroupDeployment `
        -Name KeyVaultConnector `
        -ResourceGroupName "[RESOURCE_GROUP_NAME]" `
        -TemplateFile "azuredeploy.json" `
        -TemplateParameterFile "azuredeploy.parameters.json" `
        -Verbose

Deployment through Azure CLI

You can also use Azure CLI for ARM template deployment.

  1. Login to Azure Resource Manager through Azure CLI.

    az login
  2. Create a resource group.

    az group create \
        --name [RESOURCE_GROUP_NAME] \
        --location [LOCATION]
  3. Update azuredeploy.parameters.json.

  4. Deploy the ARM template.

    az group deployment create \
        --name KeyVaultConnector \
        --resource-group [RESOURCE_GROUP_NAME] \
        --template-file azuredeploy.json \
        --parameters @azuredeploy.parameters.json \
        --verbose

NOTE: This is using nested ARM template deployment. If you are not sure how it works, deploy each ARM template individually in the following order:

  1. src/KeyVaultConnector.Resources/StorageAccount.json
  2. src/KeyVaultConnector.Resources/ApplicationInsights.json
  3. src/KeyVaultConnector.Resources/ConsumptionPlan.json
  4. src/KeyVaultConnector.Resources/FunctionApp.json
  5. src/KeyVaultConnector.Resources/CustomApi-KeyVault.json
  6. src/KeyVaultConnector.Resources/ApiConnection-KeyVault.json
  7. src/KeyVaultConnector.Resources/LogicApp.json
  8. src/KeyVaultConnector.Resources/KeyVault.json

Deploy Azure Functions Application

Once all Azure resources are deployed, deploy the Azure Functions application through Visual Studio, Visual Studio Code, Azure CLI or CI/CD pipeline.

Create Secrets onto Key Vault

If there is no secrets on Azure Key Vault, create some. It may require to add your credentials to Key Vault access policies.

Authorise API Connection with Azure Function Host Key

Get the host key for Azure Functions from the settings and authorise the API connection.

Test Custom Connector

Use the Logic App instance deployed, simply run it with the payload below:

{
  "secretName": "[SECRET_NAME]"
}

Contribution

Your contributions are always welcome! All your work should be done in your forked repository. Once you finish your work with corresponding tests, please send us a pull request onto our dev branch for review.

License

Key Vault Connector for Logic Apps is released under MIT License

The MIT License (MIT)

Copyright (c) 2018 aliencube.org

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

key-vault-connector-for-logic-apps's People

Contributors

justinyoo avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.