Runtime configuration
The runtime configuration is an optional setup applied to individual runs instead of being global to the stack. It's defined in .spacelift/config.yml YAML file at the root of your repository. A single file is used to define settings for all stacks associated with its host Git repository, so the file structure looks like this:
version: "1"
stack_defaults:
runner_image: your/first:runner
# Note that tflint is not installed by
# default - this example assumes that your
# runner image has this available.
before_init:
- terraform fmt -check
- tflint
# Note that every field in the configuration is
# optional, and has a reasonable default. This file
# allows you to override those defaults, and you can
# merely override individual fields.
stacks:
# The key of is the immutable slug of your stack
# which you will find in the URL.
babys-first-stack: &shared
before_apply:
- hostname
project_root: infra
terraform_version: 0.12.4
babys-second-stack:
<<: *shared
terraform_version: 0.13.0
environment:
AWS_REGION: eu-west-1
The top level of the file contains three keys - version which in practice is currently ignored but may be useful in the future, stacks containing a mapping of immutable stack id to the stack configuration block and stack_defaults, containing the defaults common to all stacks using this source code repository. Note that corresponding stack-specific settings will override any stack defaults.
.
Purpose of runtime configuration
The whole concept of runtime configuration may initially sound unnecessary, but it ultimately allows flexibility that would otherwise be hard to achieve. In general, its purpose is to preview effects of changes not related to the source code (eg. Terraform or Pulumi version upgrades, variable changes etc.), before they become an established part of your infra.
While stack environment applies both to tracked and non-tracked branches, a runtime configuration change can be pushed to a feature branch, which triggers proposed runs allowing you to preview the changes before they have a chance to affect your state.
Stacks configuration block
Stacks configuration blockbefore_ and after_ hooks
before_ and after_ hooksThese scripts allow customizing the Spacelift workflow - see the relevant documentation here. The following are available:
before_initafter_initbefore_planafter_planbefore_applyafter_applybefore_performafter_performbefore_destroyafter_destroy
environment map
environment mapThe environment allows you to declaratively pass some environment variables to the runtime configuration of the Stack. In case of a conflict, these variables will override both the ones passed via attached Contexts and those directly set in Stack's environment.
project_root setting
project_root settingProject root is the path of your project directory inside the Hub repository. You can use this setting to point Spacelift to the right place if the repo contains source code for multiple stacks in various folders or serves multiple purposes like those increasingly popular monorepos combining infrastructure definitions with source code, potentially even for multiple applications.
runner_image setting
runner_image settingThe runner image is the Docker image used to run your workloads. By making it a runtime setting, Spacelift allows testing the image before it modifies your infrastructure.
terraform_version setting
terraform_version settingThis setting is only valid on Terraform stacks and specifies the Terraform version that the run will use. The main use case is testing a newer version of Terraform before you use it to change the state since the way back is very hard. This version can only be equal to or higher than the one already used to apply state changes. For more details on Terraform version management, please refer to its dedicated help section.
Pulumi version management is based on Docker images.
Last updated
Was this helpful?