Coder Social home page Coder Social logo

jenkinsfile-vaultplugin's Introduction

Jenkins and Vault pipeline example

This is a pipeline example that using your secrets in a Vault instance it is able to:

  • Connects to your GitHub account by curlrequest to list your repos
  • Connects to Terraform Cloud to list your current workspaces in an Organization

The goal is about showing the Jenkins Vault Plugin in action with an easy pipeline execution

Prepare your Environment

You need to have an account in Terraform Cloud (TFC) and a Vault server running. I you don't, you can do the following:

  • Sign up into TFC/TFE and follow the process to create your first organization
  • For a quick shot just run Vault in development mode with (it will run on your localhost on port 9200):
    vault server -dev -dev-listen-address="127.0.0.1:9200" -dev-root-token-id="root"

NOTE: When you are running Vault in development mode everything is in memory, so data is not persisted. In that case you need to run Vault in server mode

Once you have TFC account and Vault running:

  • Create some tokens in your TFC Org:
  • Change the values in the included file secrets.json with your values (GitHub token, TFC tokens and TFC org name)
  • Create your secrets in Vault (here are the commands, but you can do it in the UI):
    export VAULT_ADDR="127.0.0.1:9200"
    vault login root
    vault secrets enable -path=kv -version=2 kv
    vault write kv/data/cicd @secrets.json

Configure your Jenkins with Vault Plugin installed. You can take a look at this repo using JCasC to configure from scratch. I adds the Jenkinsfile pipeline from this repo.

jenkinsfile-vaultplugin's People

Contributors

dcanadillas avatar

Watchers

James Cloos 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.