Home

Awesome

<h1> PUG <a title="This tool is Tool of The Week on Terminal Trove, The $HOME of all things in the terminal" href="https://terminaltrove.com/"> <img align="right" src="https://terminaltrove.com/assets/media/terminal_trove_tool_of_the_week_green_on_dark_grey_bg.png" alt="Terminal Trove Tool of The Week" height="40"></a></h1>

A terminal user interface for terraform power users.

Demo

Install instructions

With go:

go install github.com/leg100/pug@latest

Homebrew:

brew install leg100/tap/pug

Or download and unzip a GitHub release for your system and architecture.

Getting started

Pug requires terraform to be installed on your system.

The first time you run pug, it'll recursively search sub-directories in the current working directory for terraform root modules.

To get started with some pre-existing root modules, clone this repo, change into the ./demos/getting_started directory, and start pug:

git clone https://github.com/leg100/pug.git
cd pug
cd demos/getting_started
pug

Configuration

Pug can be configured with - in order of precedence - flags, environment variables, and a config file.

Flags:

> pug -h
NAME
  pug

FLAGS
  -p, --program STRING               The default program to use with pug. (default: terraform)
  -w, --workdir STRING               The working directory containing modules. (default: .)
  -t, --max-tasks INT                The maximum number of parallel tasks. (default: 32)
      --data-dir STRING              Directory in which to store plan files. (default: /home/louis/.pug)
  -e, --env STRING                   Environment variable to pass to terraform process. Can set more than once.
  -a, --arg STRING                   CLI arg to pass to terraform process. Can set more than once.
  -f, --first-page STRING            The first page to open on startup. (default: modules)
  -d, --debug                        Log bubbletea messages to messages.log
  -v, --version                      Print version.
  -c, --config STRING                Path to config file. (default: /home/louis/.pug.yaml)
      --disable-reload-after-apply   Disable automatic reload of state following an apply.
  -l, --log-level STRING             Logging level (valid: info,debug,error,warn). (default: info)

Environment variables are specified by prefixing the value with PUG_ and appending the equivalent flag value, replacing hyphens with underscores, e.g. --max-tasks 100 is set via PUG_MAX_TASKS=100.

The config file by default is expected to be found at $HOME/.pug.yaml. Override the default using the flag -c or environment variable PUG_CONFIG. The config uses YAML format. Set values in the config file by removing the -- prefix from the equivalent flag value, e.g. --max-tasks 100 is set like so in the config file:

max-tasks: 100

Workspace Variables

Pug automatically loads variables from a .tfvars file. It looks for a file named <workspace>.tfvars in the module directory, where <workspace> is the name of the workspace. For example, if the workspace is named dev then it'll look for dev.tfvars. If the file exists then it'll pass the name to terraform plan, e.g. for a workspace named dev, it'll invoke terraform plan -vars-file=dev.tfvars.

Pages

Modules

Modules screenshot

Press m to go to the modules page.

Note: what Pug calls a module is equivalent to a root module, i.e. a directory containing terraform configuration, including a state backend. It is not to be confused with a child module.

Key bindings

KeyDescriptionMulti-select
iRun terraform init
fRun terraform fmt
vRun terraform validate
pRun terraform plan
PRun terraform plan -destroy
aRun terraform apply
dRun terraform apply -destroy
eOpen module in editor
Ctrl+rReload all modules-
Ctrl+wReload module's workspaces

Workspaces

Workspaces screenshot

Press w to go to the workspaces page.

Note: A workspace is directly equivalent to a terraform workspace.

Key bindings

KeyDescriptionMulti-select
iRun terraform init
fRun terraform fmt
vRun terraform validate
pRun terraform plan
PRun terraform plan -destroy
aRun terraform apply
dRun terraform apply -destroy
CRun terraform workspace select

State

State screenshot

Press s to go to the state page, listing a workspace's resources.

Key bindings

KeyDescriptionMulti-select
pRun terraform plan -target
PRun terraform plan -destroy -target
DRun terraform state rm
MRun terraform state mv
Ctrl+tRun terraform taint
URun terraform untaint
Ctrl+rRun terraform state pull-

Tasks

Tasks screenshot

Press t to go to the tasks page.

Key bindings

KeyDescriptionMulti-select
cCancel task
rRetry task
EnterFull screen task output
SToggle split screen-
+Increase split screen top pane-
-Decrease split screen top pane-
tabSwitch split screen pane focus-
IToggle task info sidebar-

Task Group

Task group screenshot

Creating multiple tasks, via a selection, creates a task group, and takes you to the task group page.

Key bindings

KeyDescriptionMulti-select
cCancel task
rRetry task
EnterFull screen task output
SToggle split screen-
+Increase split screen top pane-
-Decrease split screen top pane-
tabSwitch split screen pane focus-
IToggle task info sidebar-

Task Groups Listing

Task groups screenshot

Press T to go to the tasks groups page, which lists all task groups.

Logs

Logs screenshot

Press l to go to the logs page.

Common Key bindings

Global

These keys are valid on any page.

KeyDescription
?Open help pane
Ctrl+cQuit
EscGo to previous page
mGo to modules page
wGo to workspaces page
sGo to state page*
tGo to tasks page
TGo to task groups page
lGo to logs
Ctrl+sToggle auto-scrolling of terraform output

* Only where the workspace can be ascertained.

Selections

Items can be added or removed from a selection. Once selected, actions are carried out on the selected items if the action supports multiple selection.

KeyDescription
<space>Toggle selection
Ctrl+aSelect all
Ctrl+\Clear selection
Ctrl+<space>Select range

Filtering

Filter mode screenshot

Items can be filtered to those containing a sub-string.

KeyDescription
/Open and focus filter prompt
EnterUnfocus filter prompt
EscClear and close filter prompt

Navigation

Common vim key bindings are supported for navigation.

KeyDescription
Up/kUp one row
Down/jDown one row
PgUpUp one page
PgDownDown one page
Ctrl+uUp half page
Ctrl+dDown half page
Home/gGo to top
End/GGo to bottom

Reference

Module

A module is a directory of terraform configuration with a backend configuration. When Pug starts up, it looks recursively within the working directory, walking each directory and parsing any terraform configuration it finds. If the configuration contains a state backend definition then Pug loads the directory as a module.

Each module has zero or more workspaces. Following successful initialization the module has at least one workspace, named default. One workspace is set as the current workspace for the module. When you run a plan or apply on a module, it is created on its current workspace.

If you add/remove modules outside of Pug, you can instruct Pug to reload modules by pressing Ctrl-r on the modules listing.

Workspace

Workspaces are parsed from the output of terraform workspace list, which is automatically run when:

Task

Each invocation of terraform is represented as a task.

A task is either non-blocking or blocking. Blocking tasks block their workspace or module, and prevent from further tasks from being enqueued until the blocking task has finished. For example, an init task, a blocking task, runs on module "A". Another init task for module "A", created immediately afterwards, would be blocked until the former task has completed. Or a plan task created afterwards on workspace "default" on module "A", would also be blocked. Blocking tasks in this manner prevent concurrent writes to resources that don't permit concurrent writes, such as the terraform state.

A task starts in the pending state. It enters the queued state only if it is unblocked (see above). It remains in the queued state until there is available capacity, at which point it enters the running state. Capacity determines the maximum number of running tasks, and defaults to twice the number of cores on your system and can be overridden using --max-tasks.

An exception to this rule are tasks which are classified as immediate. Immediate tasks enter the running state regardless of available capacity. At time of writing only the terraform workspace select task is classified as such.

A task can further be classed as exclusive. These tasks are globally mutually exclusive and cannot run concurrently. The only task classified as such is the init task, and only when you have enabled the provider plugin cache (the plugin cache does not permit concurrent writes).

A task can be canceled at any stage. If it is running then the current terraform process is sent a termination signal. Otherwise, in any other non-terminated state, the task is immediately set as canceled.

State

When a workspace is loaded into Pug for the first time, a task is created to invoke terraform state pull, which retrieves workspace's state, and then the state is loaded into Pug. The task is also triggered after any task that alters the state, such as an apply or moving a resource in the state.

Tofu support

To use tofu, set --program=tofu. Ensure it is installed first.

Terragrunt support

To use terragrunt, set --program=terragrunt. Ensure it is installed first.

When terragrunt is specified as the program executable, Pug enables "terragrunt mode":