Skip to content
  • Blog
  • Events
  • Help
  • Careers
  • Contact
New Signature
  • About
      • Company

        Cognizant Microsoft Business Group is dedicated to changing the way businesses innovate, transform and run based on a unique cloud operating model. You will now be redirected to our new microsite to learn more.

        View Company

      • Awards

        As a company, we are regularly recognized within the IT industry as well as the communities we serve.

        View All Awards
      • News

        Read the most up-to-date corporate announcements, Microsoft technology updates, innovative business solutions and learn more about how the Cognizant Microsoft Business Group can take your business even farther.

        View News

      • Partners

        New Signature works with a number of outstanding technology companies to deliver the best experiences to our customers.

        View Partners
      • Leadership

        Cognizant Microsoft Business Group’s executive team is comprised of innovative leaders with proven experience and deep industry expertise. You will now be redirected to our new microsite to learn more.

        View Leadership

      • Industries

        Our solutions are tailored to empower organizations across a wide range
        of industries.

        View Industry Experience
    Close
  • Solutions
      • Intelligent Enterprise
        Solutions

        Going Digital
        Unleash cloud capability, deliver change and compete at speed with a Microsoft digital operating model, enabling you to work more efficiently as you transform your IT environment. Learn More

      • Featured Solution

        Secure Cloud
        In a world of constant threat, ensuring that your underlying cloud platform is protected is the first step on your organization’s journey towards a secure, compliant operating environment. Learn More
      • Intelligent Workplace
        Solutions

      • Secure Workplace

        Work Anywhere

        Endpoint Health

        Identity Health

        Teamwork Support



        VIEW WORKPLACE SOLUTIONS
      • Intelligent Cloud
        Solutions

      • App Factory

        Azure Accelerator

        Azure Launchpad

        Azure Launchpad for DevOps

        Application Health

        Platform Health

        VIEW ClOUD SOLUTIONS
    Close
  • Services
      • Begin your journey towards becoming a digital business with GO, our unique end-to-end framework based on the Microsoft Cloud Adoption Framework.

        GO DIGITAL OPERATING MODEL
      • Intelligent Enterprise

      • Consulting

        We go beyond just technology to help your organization understand how digital can help you uniquely differentiate and better serve your employees and customers.

        VIEW ENTERPRISE SERVICES
      • Intelligent Workplace

        • Identity

          Identity is your new first-line-of-defense. It’s vital to your users and clients that your identity platform is properly configured and secured.

          Endpoint

          Whether your devices are on-premises or remote, personal or business-owned, we can ensure they are properly managed and protected.

          Teamwork

          Today’s workforce is collaborating than ever before.  We can empower your current teams with tomorrow’s progressive technologies.

          VIEW WORKPLACE SERVICES
        • Intelligent Cloud

          • Platform

            The cloud is no longer some future-state. It’s the here and now. Adopting a cloud-first platform is one of the best ways to maintain a future-proofed competitive advantage.

            Applications

            We build cloud-native apps and modernize legacy systems with the power of Azure to give your organization a competitive edge.

            Data

            We can help your organization create secure, scalable data platforms to deliver simpler and more sophisticated insights to your business.

            VIEW CLOUD SERVICES
        Close
      • Client Stories
          • Case Studies

            Browse a comprehensive list of companies who have created successful partnerships and experienced transformative solutions with New Signature.

            View All Case Studies

          • Featured Case Study TalkTalk Modern Workplace

            New Signature worked with TalkTalk to define a new Modern Workplace solution based on Microsoft 365, which kept the user firmly at the center of the transformation.
            View Case Study

          • Testimonials

            We love transforming our customers businesses, take a look at what they have to say about New Signature.

            View Testimonials

          • Featured Testimonial Davis Construction

            With New Signature’s help, Davis was able to take a progressive step forward by migrating their private branch exchange (PBX) phone system to a Voice of Internet Protocol (VoIP) system.
            View Testimonial

        Close
      • Explore
          • Guides & Ebooks

            Dive deeper into education with your team by leveraging our expert-developed guides and eBooks.

            View All Guides & Ebooks

          • Infographics

            Rich with statistics and information, our infographics are great tools for quick but insightful learning.

            View All Infographics
          • Podcast: Office Explorers

            Join Kat and Rob monthly as they chat with New Signature experts and explore the world of O365.

            Listen to Podcasts

          • Videos

            Visit our videos stream to access recorded webinars, service information and to learn more about us.

            WATCH ALL VIDEOS
          • Flyers

            Searching for information about our services? Our flyers are a great takeaway for all those details.

            VIEW ALL FLYERS

          • Featured Stream

            Learn more about the tooling and expertise required to unlock productivity and mobilize your teams.

            MODERN WORKPLACE
        Close
        Close
      Blog

      Azure Key Vault: Your Key to Securing Your Cloud Apps

      New Signature / Blog / Azure Key Vault: Your Key to Securing Your Cloud Apps
      February 10, 2020February 10, 2020| New Signature

      Long story short: the Hawaii emergency agency password was written on a Post-it note and made it onto a photo that went viral on the Internet. Not the kind of notoriety any of us are hoping for.

      But we witness this type of risky behavior daily across many teams and organizations – passwords on Post-it notes stuck to desks and monitors, or, usernames and passwords shared on OneNote or sent via email as clear text. All it takes is for a photo to be posted on the Internet or someone’s computer getting compromised and before we know it, security breaches and data leaks make headlines.

      So how do teams share secure information – passwords, API Keys, cryptographic keys, certificates – in applications deployed on the cloud? The answer many teams came up with in the past was to check-in this information into source control. But this approach is fraught with the same risks as storing this secure information on individual computers, except on a larger scale. Ever heard of malicious bots that scan public repositories for secrets checked-in with code?

      Azure Key Vault is a software-as-a-service solution engineered with management of secrets as a primary goal. Azure Key Vault handles creation, storage, and sharing of secrets and keys and also provides certificate management. Unlike other Azure resources, where the data is stored in general storage, Azure Key Vault is backed by a Hardware Security Module (HSM).

      Azure Key Vault not only makes it easy for secret management but also applies security at both the management plane and the data plane. Creation and deletion of the key vault, access control to the key vault and setting key vault properties are handled at the management plane level and keys, secrets, and certificates are created, retrieved and deleted in the data plane. Both management and data planes are secured with Azure Active Directory (Azure AD) authentication. In the management plane, Role-Based Access Control (RBAC) is used for authorization while the data plane uses access policies for authorization.

      Azure Key Vault handles the following type of secrets:

      1. Keys: These are cryptographic keys in the format of JSON Web Key. Key Vaults support both soft keys and hard keys. Soft keys are processed by software but encrypted by a system key in an HSM. Hard keys are directly stored in an HSM.
      2. Secrets: Azure Key Vault stores secrets in the format of strings. One way to think about these secrets is secrets that are often stored in web.config or app.config files of ASP.NET apps like API keys, credentials, passwords and token symmetric keys. Secrets can be enabled to disabled at individual secret levels and set to be “good” for certain time intervals (if needed) as dictated by nbf and exp attributes which provides a lot of flexibility in controlling access to secrets.
      3. Certificates: Azure Key Vault stores self-signed or Certificate-Authority (CA) X509 certificates. A Key Vault certificate owner can implement secure storage and management of X509 certificates without interaction with private key material and manage the life-cycle of a certificate. Automatic renewal of certificates with selected issuers – Key Vault partner X509 certificate providers/certificate authorities is also supported.
      4. Storage Account Keys: Systems using Azure Storage can leverage Azure Key Vault to sync keys with a storage account that allows key exchange behind the scenes aka no keys in request-response type scenarios. Also, the Key Vault handles regeneration of keys periodically.

      So consider the standard scenario: you have an Azure web app that connects to an Azure SQL database. How does the password storage and exchange look in this scenario?

      Step 1: Add the database password to key vault (shown below). Bonus points: if you create the key vault with ARM template or Terraform and store the auto-generated password directly from your Azure DevOps pipeline into the key vault right after creation.

       

      Step 2: Hookup your Azure DevOps pipeline to Azure Key Vault.

       

      Step 3: Create your Azure SQL database using the password from the key vault. When this finishes executing you have an Azure SQL database with admin user password stored in key vault. The only people and applications accessing this password would have to be explicitly allowed (and audited) by the Azure Key Vault.

       

      Step 4: Turn on Managed Service Identity (MSI) for your web application.

      Step 5: Enable the web app to connect to the key vault using the MSI.

      Step 6: Profit. No. Seriously. At this point, you have a web application that has access to a key vault containing the password to connect to the database.

      If you made it this far, and want a TLDR; on this post let it be this:

      Don’t be like this guy. Use Azure Key Vault to secure and distribute your keys, secrets, and certificates, preferably in an automated repeatable manner with Azure DevOps.

      Whether your applications are on Azure or on-premises, you can leverage Azure Key Vault to enable greater security and having expert guidance never hurts. New Signature has the experts in-house to guide you along the way and provide help and training to ensure success.

      Categories
      Technical Reviews
      Contact New Signature

      Blog Posts

      • Agile Delivery for Large Scale Data Ingestion using Azure Data Explorer
      • Implementing Cloud Adoption Framework Across Vida Homeloan’s Organization
      • Cognizant Microsoft Business Group Achieves Microsoft Advanced Specialization for Windows Virtual Desktop
      • Cognizant’s Experience Lab for Continuous Testing with Azure

      Managed Services

      Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent fermentum, enim ac dignissim aliquet

      VIEW ALL MANAGED SERVICES

      Professional Services

      Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent fermentum, enim ac dignissim aliquet

      VIEW ALL PROFESSIONAL SERVICES

      New Signature

      About

      • Company
      • Awards
      • News
      • Leadership
      • Partners
      • Industries

      Solutions

      • Intelligent Enterprise Solutions
      • Intelligent Workplace Solutions
      • Intelligent Cloud Solutions

      Services

      • GO
      • Intelligent Enterprise
      • Intelligent Workplace
      • Intelligent Cloud

      Client Stories

      • Client Stories
      • Testimonials

      Explore

      • Guides & Ebooks
      • Podcasts
      • Flyers
      • Infographics
      • Videos
      Copyright © 2023 New Signature
      • Blog
      • Events
      • Careers
      • Help
      • Anti Slavery
      • Privacy Policy
      • Contact
      • About
        • Company
        • Awards
        • News
        • Leadership
        • Partners
        • Industries
      • Services
        • GO
        • Intelligent Enterprise
        • Intelligent Workplace
        • Intelligent Cloud
      • Client Stories
        • Case Studies
        • Testimonials
      • Technologies
      • Explore
        • Guides & Ebooks
        • Infographics
        • Podcast: Office Explorers
        • Videos
        • Flyers
      • Blog
      • Events
      • Careers
      • Contact
      • Search
      Cookie Settings
      New Signature uses "Required Cookies" to run our website, "Functional Cookies" used by third parties to personalise marketing, including social media features.

      Change your preferences by clicking the “Cookie Settings” link at the bottom of every page. Learn more about cookies in our Cookie Policy and our Privacy Policy. By clicking the “Accept Cookies” button below, you consent to our use of cookies.

      Please note that “Required Cookies” will be set regardless of your consent.
      Cookie SettingsAccept Cookies
      Privacy & Cookies Policy

      Privacy Overview

      This website uses cookies to improve your experience while you navigate through the website. Out of these cookies, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may have an effect on your browsing experience.
      Targeting

      Targeting Cookies are used to capture user information in order for New Signature to deliver better user experiences.

      Performance

      Performance Cookies provide Content Delivery Network assets that deliver faster site content delivery capabilities.

      Required

      These cookies are required mainly in order to deliver Multilanguage site capabilities.

      Functional

      Functional Cookies allow us to provided advanced media capabilities including videos, surveys and other multimedia capabilities.

      Disabling Functional cookies will block the playing of videos and other multimedia site components.

      Save & Accept