kubeopsskills / cloud-secret-resolvers

Cloud Secret Resolvers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

codecov release License MIT Download

All Contributors

Cloud Secret Resolvers (CSR)

Cloud Secret Resolvers is a set of tools to help your applications (on Kubernetes) to retrieve any credentials from cloud managed vaults without the needed to write additional boilerplate code in your applications!

Installation

Cloud Secret Resolvers is available on Linux, ARM, macOS and Windows platforms.

  • Binaries for Linux, ARM, Windows and Mac are available as tarballs in the release page

Using on Kubernetes

  • AWS

    • Prerequisites:
      1. Enabled the OIDC provider on your EKS cluster (https://docs.aws.amazon.com/eks/latest/userguide/enable-iam-roles-for-service-accounts.html)
      2. Your application Kubernetes pod has a service account with the following privillege: policy.json
    • Update your application entrypoint as follows:
      #!/bin/bash
      eval $(csr)
      node ... # your application runtime command
    • Update your application Kubernetes config maps as follows:
      apiVersion: v1
      kind: ConfigMap
      metadata:
        name: [your config map name]
        namespace: [your config map namespace name]
      data:
      ...
      CLOUD_TYPE: "aws"
      AWS_REGION: "[your AWS region name]"
      AWS_SECRET_NAME: "[your AWS secret name]"
  • Azure

  • Google Cloud

    • Prerequisites:

      1. Enabled the Workload Identity on your GKE cluster (https://cloud.google.com/kubernetes-engine/docs/how-to/workload-identity)
      2. Your application Kubernetes pod has a service account with Secret Manager Secret Accessor permission
    • Update your application entrypoint as follows:

      #!/bin/bash
      eval $(csr)
      node ... # your application runtime command
    • Update your application Kubernetes config maps as follows:

      apiVersion: v1
      kind: ConfigMap
      metadata:
        name: [your config map name]
        namespace: [your config map namespace name]
      data:
      ...
      CLOUD_TYPE: "gcloud"
      GOOGLE_PROJECT_ID: "[your Google cloud project Id]"
  • Hashicorp Vault

    • Prerequisites:

      1. Enabled Kubernetes Authentication on your Vault (https://www.vaultproject.io/docs/auth/kubernetes)
      2. Your application Kubernetes pod has a service account with Read Only permission to the Vault secret path
    • Update your application entrypoint as follows:

      #!/bin/bash
      eval $(csr)
      node ... # your application runtime command
    • Update your application Kubernetes config maps as follows:

      apiVersion: v1
      kind: ConfigMap
      metadata:
        name: [your config map name]
        namespace: [your config map namespace name]
      data:
      ...
      CLOUD_TYPE: "vault"
      VAULT_ADDR: "[your vault addr]"
      VAULT_ROLE: "[your vault role]"
      VAULT_PATH: "[your vault secret path]"

How it works

The architecture looks like below.

Internally, the CSR find local environment variables in the Kubernetes Pod Container which have Cloud Vault key placeholders for example: export db_username=${db_username}, then the CSR will extract db_username as a key and ${db_username} as a value. Finally, the CSR will use ${db_username} to match cloud vault key, retrieve cloud vault value, and map the value with db_username local environment.

Diagram

Development

We use make commands for these developer operations.

  • make run for running CSR locally
  • make test for testing CSR
  • make test-coverage for export test coverage
  • make all for building CSR binary for all OSes
  • make clean for cleaning build for CSR binary

Contributing

We'd love your help! Please see CONTRIBUTING to learn about the kinds of contributions we're looking for.

Todo

Reporting issues and feedback

If you encounter any bugs with the tool please file an issue in the Issues section of our GitHub repo.

Contributors ✨

Thanks goes to these wonderful people (emoji key):


Nattapon Pondongnok

💻 ⚠️

Saritrat Jirakulphondchai

💻 ⚠️ 👀

Sirinat Paphatsirinatthi

💻 ⚠️ 👀

This project follows the all-contributors specification. Contributions of any kind welcome!

About

Cloud Secret Resolvers

License:MIT License


Languages

Language:Go 95.6%Language:Makefile 4.4%