What is Dev Mode?
Before getting started with Boundary OSS, it's important to understand a few key concepts. Please consult our Boundary concepts page to familiarize yourself with Boundary's architecture and terminology.
Dev mode is a method for getting started with Boundary quickly for testing and learning purposes. As the name implies, dev mode is not a production installation method, and provides a way to get Boundary running with a Postgres database easily. Do not use dev mode in a production environment, see the Production Installation section for production-ready deployment methods.
Dev mode brings up a fully-functioning instance of Boundary, including:
- A controller server
- A worker server
- A Postgres database
These components should all be considered ephemeral - no data persistence occurs across dev mode restarts. Along with these external components, dev mode also creates several resources within Boundary to make it easier and faster to connect to your first target:
- An org scope and a project scope with a
default ID of
o_1234567890
andp_1234567890
respectively. - A password auth method with a
default auth method ID of
ampw_1234567890
. - An OIDC auth method with a
default auth method ID of
amoidc_1234567890
. - An admin user with login name
admin
and passwordpassword
. - An unprivileged user with login name
user
and passwordpassword
. - A static host catalog with a
default ID of
hcst_1234567890
. - A static host and host
set with default ID's of
hst_1234567890
andhsst_1234567890
respectively. - A TCP target with a default ID of
ttcp_1234567890
.
The default ID suffixes can be overwritten or randomly generated, and there are
many other dev mode controls. To see a complete list of these override flags,
consult boundary dev -h
.
If you plan on provisioning a large number of resources in dev mode, it's strongly recommended that users leverage our Terraform Provider for Boundary for managing configuration of Boundary. This will simplify starting up and shutting down your Boundary dev instance.
Requirements
There are a few requirements for running dev mode:
- Docker is installed
- A route to download the Postgres Docker image is available or a local image cache is available
- A Boundary binary in your
$PATH
- Optionally, an installation of Boundary Desktop if you want to use the desktop examples