Panfactum LogoPanfactum
ConfigurationTerragrunt Variables

Terragrunt Variables

Folder Setup

Your environments folder at environments_dir must have three levels of scoping for the configuration-as-code:

  • environment: A separation of your deployments according to your SDLC conventions (e.g., development, staging, production, etc.)

    • region: A separation of your deployments according to their physical location (e.g., us-west-2)

      • module: A separation of your deployments based on the specific infrastructures module being deployed

Accordingly, there are four levels of configuration for parameterizing the behavior of panfactum.hcl:

  • global.yaml: Found at the root of environments_dir

  • environment.yaml: Found at the root of each environment subdirectory

  • region.yaml: Found at the root of each region subdirectory

  • module.yaml: Found in each module subdirectory

A few rules about these files:

  • These files are optional, but you will use them to configure your providers and other behavior.

  • They can each contain any and every key found below.

  • You should commit these files to version control.

  • Conflicts are resolved via specificity (e.g., conflicting module.yaml values will override region.yaml values which in turn will override environment.yaml values, etc.).

  • Each file has an optional, user-specific counterpart named *.user.yaml (e.g., region.user.yaml).

    • Values in these files override the values in their counterparts for local development purposes (e.g., region.user.yaml overrides values in region.yaml).

    • These files are not committed to version-control; each user will have their own set of values.

Ultimately your environments folder should look something like this:

- environments/
    - global.yaml
    - panfactum.hcl
    - providers/
      - aws.tftpl
      - kubernetes.tftpl
      ***
    - [environment_1]/
      - environment.yaml
      - environment.user.yaml
      - [region_1]/
        - region.yaml
        - region.user.yaml
        - [module_1]/
          - module.yaml
        - [module_2]/
          - module.yaml
      - [region_2]/
        ***
    - [environment_2]/
      - environment.yaml
      - [region_1]/
         ***
      - [region_2]/
        ***

Variables

These are variables that can be found in the global.yaml, environment.yaml, region.yaml or module.yaml files (or their *.user.yaml counterparts) inside the environments directory.

Metadata

Used for consistency across labels and tags.

VariableTypeDescriptionRecommended File
environmentstringThe name of the environmentenvironment.yaml
regionstringThe name of the regionregion.yaml
extra_tagsmap(string)An object containing extra tags to add to all resources in the current scopeAny

Inputs

Used to pass extra inputs to all modules in the scope.

VariableTypeDescriptionRecommended File
extra_inputsmap(any)An object containing extra inputs to pass to all modules in the current scopeAny

Module Source

Used to configure the terraform.source option when deploying a module.

VariableTypeDescriptionRecommended File
versionstringConfigures include.panfactum.locals.source. The version of the local modules from the iac_dir directory you are using. Must be a valid git ref in your infrastructure repo (repo_url in panfactum.yaml) or local to indicate you want to deploy the local version of the code.environment.yaml
pf_stack_versionstringConfigures include.panfactum.locals.pf_stack_source. The version of the Panfactum stack you are using. Must be a valid git ref in the Panfactum Stack repo.environment.yaml
modulestringIf using include.panfactum.locals.source, defines which module from the iac_dir directory to use. If using, include.panfactum.locals.pf_stack_source, defines which module from packages/infrastructure to use. Defaults to the name of the module directory.module.yaml

State Backend Setup

Each environment will have its own, independent OpenTofu backend for storing information about the tracked infrastructure resources. We utilize the S3 backend and store the state for each environment inside of that environment's AWS account.

VariableTypeDescriptionRecommended File
tf_state_account_idstringThe AWS account ID for the account containing the S3 backendenvironment.yaml
tf_state_profilestringThe AWS profile to use for authenticating with the S3 backendenvironment.yaml
tf_state_regionstringThe AWS region to use for the S3 bucketenvironment.yaml
tf_state_bucketstringThe name of the state bucketenvironment.yaml
tf_state_lock_tablestringThe name of the DynamoDB table for the state locksenvironment.yaml

Providers

Some providers have additional configuration values that must be set.

aws Provider

VariableTypeDescriptionRecommended File
aws_account_idstringThe AWS account ID to use for the providerenvironment.yaml
aws_profilestringThe AWS profile that will be used for provider authenticationenvironment.yaml
aws_regionstringThe AWS region to use for the providerregion.yaml
aws_secondary_account_idstringThe AWS account ID to use for the secondary providerenvironment.yaml
aws_secondary_profilestringThe AWS profile that will be used for secondary provider authenticationenvironment.yaml
aws_secondary_regionstringThe AWS region to use for the secondary providerregion.yaml

Note: The aws provider is actually a set of two different aws provider configurations: a primary and secondary. The secondary is used in some Panfactum modules to configure things like backups in a secondary region.

kubernetes Provider

VariableTypeDescriptionRecommended File
kube_api_serverstringThe https URL of the Kubernetes API server the provider should connect toregion.yaml
kube_config_contextstringThe name of the context the provider should use in your repo's kubeconfig fileregion.yaml
kubectl_versionstring(Optional) The version of the alekc/kubectl IaC Provider to use. Defaults to 2.0.4.environment.yaml

vault Provider

VariableTypeDescriptionRecommended File
vault_addrstringThe https URL of the Vault server the provider should connect toregion.yaml

authentik Provider

VariableTypeDescriptionRecommended File
authentik_urlstringThe https URL of the Authenik server the provider should connect toglobal.yaml
authentik_versionstring(Optional) The version of the goauthentik/authentik IaC Provider to use. Defaults to 2024.2.0.environment.yaml