--- layout: docs page_title: Controller - Configuration sidebar_title: controller description: |- The controller stanza configures controller-specifc parameters. --- # `controller` Stanza The `controller` stanza configures Boundary controller-specific parameters. ```hcl controller { name = "example-controller" description = "An example controller" database { url = "postgresql://:@10.0.0.1:5432/" } } ``` - `name` - Specifies a unique name of this controller within the Boundary controller cluster. - `description` - Specifies a friendly description of this controller. - `database` - Configuration block with one parameter, `url`, for connecting to Postgres.