{"id":23459459,"url":"https://github.com/devkimchi/key-vault-from-logic-apps","last_synced_at":"2026-02-03T10:32:11.424Z","repository":{"id":84269887,"uuid":"154294830","full_name":"devkimchi/Key-Vault-from-Logic-Apps","owner":"devkimchi","description":"This provides a sample code that Azure Logic App can access to Key Vault using Managed Identity","archived":false,"fork":false,"pushed_at":"2018-10-25T11:05:59.000Z","size":15,"stargazers_count":2,"open_issues_count":1,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-23T19:46:48.351Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devkimchi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-10-23T08:51:20.000Z","updated_at":"2019-03-06T14:30:20.000Z","dependencies_parsed_at":"2023-05-26T16:15:46.019Z","dependency_job_id":null,"html_url":"https://github.com/devkimchi/Key-Vault-from-Logic-Apps","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/devkimchi/Key-Vault-from-Logic-Apps","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devkimchi%2FKey-Vault-from-Logic-Apps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devkimchi%2FKey-Vault-from-Logic-Apps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devkimchi%2FKey-Vault-from-Logic-Apps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devkimchi%2FKey-Vault-from-Logic-Apps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devkimchi","download_url":"https://codeload.github.com/devkimchi/Key-Vault-from-Logic-Apps/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devkimchi%2FKey-Vault-from-Logic-Apps/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29041342,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T10:09:22.136Z","status":"ssl_error","status_checked_at":"2026-02-03T10:09:16.814Z","response_time":96,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-24T06:14:34.696Z","updated_at":"2026-02-03T10:32:11.406Z","avatar_url":"https://github.com/devkimchi.png","language":null,"readme":"# Key Vault from Logic Apps #\n\nThis provides a sample code that [Azure Logic App can access to Key Vault using Managed Identity](https://docs.microsoft.com/en-us/azure/logic-apps/create-managed-service-identity).\n\n\n## More Readings ##\n\n* 한국어: [애저 로직앱에서 키 저장소로 직접 접근하기](https://blog.aliencube.org/ko/2018/10/24/accessing-key-vault-from-logic-apps-with-managed-identity/)\n* English: [Accessing Key Vault from Logic App with Managed Identity](https://devkimchi.com/2018/10/24/accessing-key-vault-from-logic-apps-with-managed-identity/)\n\n\n## Getting Started ##\n\nThe ARM template consists of two resources \u0026ndash; Logic App and Key Vault.\n\n\n### Deployment through Azure Portal ###\n\nClick the button below to deploy the ARM template through Azure Portal:\n\n\u003ca href=\"https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2Fdevkimchi%2FKey-Vault-from-Logic-Apps%2Fmaster%2Fazuredeploy.json\" target=\"_blank\"\u003e\n  \u003cimg src=\"https://azuredeploy.net/deploybutton.png\" /\u003e\n\u003c/a\u003e\n\n\n### Deployment through Azure PowerShell ###\n\nAlternatively, deploy it through Azure PowerShell.\n\n1. Login to Azure Resource Manager through PowerShell.\n\n    ```powershell\n    Login-AzureRmAccount\n    ```\n1. Create a resource group.\n\n    ```powershell\n    New-AzureRmResourceGroup `\n        -Name \"[RESOURCE_GROUP_NAME]\" `\n        -Location \"[LOCATION]\"\n    ```\n\n1. Update `azuredeploy.parameters.json`.\n1. Deploy the ARM template. Once deployed, it will return both Azure Functions application URL and ACI endpoint URL.\n\n    ```powershell\n    New-AzureRmResourceGroupDeployment `\n        -Name RequestBin `\n        -ResourceGroupName \"[RESOURCE_GROUP_NAME]\" `\n        -TemplateFile \"azuredeploy.json\" `\n        -TemplateParameterFile \"azuredeploy.parameters.json\" `\n        -Verbose\n    ```\n\n\n### Key Vault Secret ###\n\n1. Once both Azure resources are ready, [create a secret on the Key Vault instance](https://docs.microsoft.com/en-us/azure/key-vault/quick-create-portal#add-a-secret-to-key-vault).\n\n1. Send an HTTP request to Azure Logic Apps to get the secret value. The request payload is:\n\n    ```json\n    {\n      \"name\": \"[KEY_VAULT_SECRET_NAME]\"\n    }\n    ```\n\n   If the payload is omitted, all list of secrets will be returned.\n\n\n## Contribution ##\n\nYour 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 `master` branch for review.\n\n\n## License ##\n\nThis is released under [MIT License](http://opensource.org/licenses/MIT)\n\n\u003e The MIT License (MIT)\n\u003e\n\u003e Copyright (c) 2018 [Dev Kimchi](https://devkimchi.com)\n\u003e \n\u003e 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:\n\u003e \n\u003e The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\u003e \n\u003e 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.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevkimchi%2Fkey-vault-from-logic-apps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevkimchi%2Fkey-vault-from-logic-apps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevkimchi%2Fkey-vault-from-logic-apps/lists"}