stremovsky / boundary-gitlab-runner

Dockefile for GitLab Runner + Hashicorp Boundary

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dockerized GitLab Runner with Hashicorp Boundary

This project provides a Docker image that combines Hashicorp Boundary and GitLab Runner, enabling secure access to servers within your GitLab pipelines through Boundary.

Benefits:

  • Centralized Access Control: Boundary acts as a central hub for managing access to servers, simplifying credential management and improving security.
  • Streamlined Workflows: GitLab pipelines can leverage Boundary to securely connect to servers, eliminating the need for manual credential management within scripts or runners.

Getting Started:

1. Prerequisites:

3.Environment Variables:

  • BOUNDARY_ADDR: (Required) The URL of your Boundary service (e.g., https://your-boundary-server.example.com).
  • BOUNDARY_USER: (Required) The username for authenticating with Boundary.
  • BOUNDARY_PASSWORD: (Required) The password associated with the BOUNDARY_USER account.
  • GITLAB_RUNNER_TOKEN: (Optional) The GitLab Runner registration token for connecting to your GitLab instance.

3.Running the Container:

docker run -d \
  -e BOUNDARY_ADDR=https://your-boundary-server.example.com \
  -e BOUNDARY_USER=your_username \
  -e BOUNDARY_PASSWORD=your_password \
  [other_gitlab_runner_env_vars] \
  <your_image_name>

How to use Boundary from CI/CD scripts

You can modify the following command for your needs. It runs the /root/script.sh on remote server.

echo "/root/script.sh" | boundary connect ssh -target-id tssh_xxmlOvaQDT

About

Dockefile for GitLab Runner + Hashicorp Boundary


Languages

Language:Shell 65.2%Language:Dockerfile 34.8%