Define inputs for configuration added with include

  • Tier: Free, Premium, Ultimate
  • Offering: GitLab.com, GitLab Self-Managed, GitLab Dedicated
History

Use inputs to increase the flexibility of CI/CD configuration files that are designed to be reused.

Inputs can use CI/CD variables, but have the same variable limitations as the include keyword.

Define input parameters with spec:inputs

Use spec:inputs to define parameters that can be populated in reusable CI/CD configuration files when added to a pipeline. Then use include:inputs to add the configuration to a project’s pipeline and set the values for the parameters.

For example, in a file named custom_website_scan.yml:

YAML Copy to clipboard
spec:
  inputs:
    job-stage:
    environment:
---

scan-website:
  stage: $[[ inputs.job-stage ]]
  script: ./scan-website $[[ inputs.environment ]]

In this example, the inputs are job-stage and environment. Then, in a .gitlab-ci.yml file, you can add this configuration and set the input values:

YAML Copy to clipboard
include:
  - local: 'custom_website_scan.yml'
    inputs:
      job-stage: 'my-test-stage'
      environment: 'my-environment'

Specs must be declared at the top of a configuration file, in a header section separated from the rest of the configuration with ---. Use the $[[ inputs.input-id ]] interpolation format outside the header section to declare where to use the inputs.

With spec:inputs:

  • Inputs are mandatory by default.
  • Inputs are evaluated and populated when the configuration is fetched during pipeline creation, before the configuration is merged with the contents of the .gitlab-ci.yml file.
  • A string containing an input must be less than 1 MB.
  • A string inside an input must be less than 1 KB.

Additionally, use:

  • spec:inputs:default to define default values for inputs when not specified. When you specify a default, the inputs are no longer mandatory.
  • spec:inputs:description to give a description to a specific input. The description does not affect the input, but can help people understand the input details or expected values.
  • spec:inputs:options to specify a list of allowed values for an input.
  • spec:inputs:regex to specify a regular expression that the input must match.
  • spec:inputs:type to force a specific input type, which can be string (default when not specified), array, number, or boolean.

Define inputs with multiple parameters

You can define multiple inputs per CI/CD configuration file, and each input can have multiple configuration parameters.

For example, in a file named scan-website-job.yml:

YAML Copy to clipboard
spec:
  inputs:
    job-prefix:     # Mandatory string input
      description: "Define a prefix for the job name"
    job-stage:      # Optional string input with a default value when not provided
      default: test
    environment:    # Mandatory input that must match one of the options
      options: ['test', 'staging', 'production']
    concurrency:
      type: number  # Optional numeric input with a default value when not provided
      default: 1
    version:        # Mandatory string input that must match the regular expression
      type: string
      regex: ^v\d\.\d+(\.\d+)$
    export_results: # Optional boolean input with a default value when not provided
      type: boolean
      default: true
---

"$[[ inputs.job-prefix ]]-scan-website":
  stage: $[[ inputs.job-stage ]]
  script:
    - echo "scanning website -e $[[ inputs.environment ]] -c $[[ inputs.concurrency ]] -v $[[ inputs.version ]]"
    - if $[[ inputs.export_results ]]; then echo "export results"; fi

In this example:

  • job-prefix is a mandatory string input and must be defined.
  • job-stage is optional. If not defined, the value is test.
  • environment is a mandatory string input that must match one of the defined options.
  • concurrency is an optional numeric input. When not specified, it defaults to 1.
  • version is a mandatory string input that must match the specified regular expression.
  • export_results is an optional boolean input. When not specified, it defaults to true.

Input types

You can specify that an input must use a specific type with the optional spec:inputs:type keyword.

The input types are:

  • array
  • boolean
  • number
  • string (default when not specified)

When an input replaces an entire YAML value in the CI/CD configuration, it is interpolated into the configuration as its specified type. For example:

YAML Copy to clipboard
spec:
  inputs:
    array_input:
      type: array
    boolean_input:
      type: boolean
    number_input:
      type: number
    string_input:
      type: string
---

test_job:
  allow_failure: $[[ inputs.boolean_input ]]
  needs: $[[ inputs.array_input ]]
  parallel: $[[ inputs.number_input ]]
  script: $[[ inputs.string_input ]]

When an input is inserted into a YAML value as part of a larger string, the input is always interpolated as a string. For example:

YAML Copy to clipboard
spec:
  inputs:
    port:
      type: number
---

test_job:
  script: curl "https://gitlab.com:$[[ inputs.port ]]"

Array type

History

The content of the items in an array type can be any valid YAML map, sequence, or scalar. More complex YAML features like !reference cannot be used.

YAML Copy to clipboard
spec:
  inputs:
    rules-config:
      type: array
      default:
        - if: $CI_PIPELINE_SOURCE == "merge_request_event"
          when: manual
        - if: $CI_PIPELINE_SOURCE == "schedule"
---

test_job:
  rules: $[[ inputs.rules-config ]]
  script: ls

Multi-line input string values

Inputs support different value types. You can pass multi-string values using the following format:

YAML Copy to clipboard
spec:
  inputs:
    closed_message:
      description: Message to announce when an issue is closed.
      default: 'Hi {{author}} :wave:,

        Based on the policy for inactive issues, this is now being closed.

        If this issue requires further attention, please reopen this issue.'
---

Set input values when using include

History

Use include:inputs to set the values for the parameters when the included configuration is added to the pipeline.

For example, to include the scan-website-job.yml in the example above:

YAML Copy to clipboard
include:
  - local: 'scan-website-job.yml'
    inputs:
      job-prefix: 'some-service-'
      environment: 'staging'
      concurrency: 2
      version: 'v1.3.2'
      export_results: false

In this example, the inputs for the included configuration are:

InputValueDetails
job-prefixsome-service-Must be explicitly defined.
job-stagetestNot defined in include:inputs, so the value comes from spec:inputs:default in the included configuration.
environmentstagingMust be explicitly defined, and must match one of the values in spec:inputs:options in the included configuration.
concurrency2Must be a numeric value to match the spec:inputs:type set to number in the included configuration. Overrides the default value.
versionv1.3.2Must be explicitly defined, and must match the regular expression in the spec:inputs:regex in the included configuration.
export_resultsfalseMust be either true or false to match the spec:inputs:type set to boolean in the included configuration. Overrides the default value.

Use include:inputs with multiple files

inputs must be specified separately for each included file. For example:

YAML Copy to clipboard
include:
  - component: $CI_SERVER_FQDN/the-namespace/the-project/the-component@1.0
    inputs:
      stage: my-stage
  - local: path/to/file.yml
    inputs:
      stage: my-stage

Use inputs with downstream pipelines

You can pass inputs to downstream pipelines, if the downstream pipeline’s configuration file uses spec:inputs. For example:

YAML Copy to clipboard
trigger-job:
  trigger:
    strategy: depend
    include:
      - local: path/to/child-pipeline.yml
        inputs:
          job-name: "defined"
  rules:
    - if: $CI_PIPELINE_SOURCE == 'merge_request_event'

Specify functions to manipulate input values

History

You can specify predefined functions in the interpolation block to manipulate the input value. The format supported is the following:

YAML Copy to clipboard
$[[ input.input-id | <function1> | <function2> | ... <functionN> ]]

With functions:

  • Only predefined interpolation functions are permitted.
  • A maximum of 3 functions may be specified in a single interpolation block.
  • The functions are executed in the sequence they are specified.
YAML Copy to clipboard
spec:
  inputs:
    test:
      default: 'test $MY_VAR'
---

test-job:
  script: echo $[[ inputs.test | expand_vars | truncate(5,8) ]]

In this example, assuming the input uses the default value and $MY_VAR is an unmasked project variable with value my value:

  1. First, the function expand_vars expands the value to test my value.
  2. Then truncate applies to test my value with a character offset of 5 and length 8.
  3. The output of script would be echo my value.

Predefined interpolation functions

expand_vars

History

Use expand_vars to expand CI/CD variables in the input value.

Only variables you can use with the include keyword and which are not masked can be expanded. Nested variable expansion is not supported.

Example:

YAML Copy to clipboard
spec:
  inputs:
    test:
      default: 'test $MY_VAR'
---

test-job:
  script: echo $[[ inputs.test | expand_vars ]]

In this example, if $MY_VAR is unmasked (exposed in job logs) with a value of my value, then the input would expand to test my value.

truncate

History

Use truncate to shorten the interpolated value. For example:

  • truncate(<offset>,<length>)
NameTypeDescription
offsetIntegerNumber of characters to offset by.
lengthIntegerNumber of characters to return after the offset.

Example:

YAML Copy to clipboard
$[[ inputs.test | truncate(3,5) ]]

Assuming the value of inputs.test is 0123456789, then the output would be 34567.

Troubleshooting

YAML syntax errors when using inputs

CI/CD variable expressions in rules:if expect a comparison of a CI/CD variable with a string, otherwise a variety of syntax errors could be returned.

You must ensure that expressions remain properly formatted after input values are inserted into the configuration, which might require the use of additional quote characters.

For example:

YAML Copy to clipboard
spec:
  inputs:
    branch:
      default: $CI_DEFAULT_BRANCH
---

job-name:
  rules:
    - if: $CI_COMMIT_REF_NAME == $[[ inputs.branch ]]

In this example:

  • Using include: inputs: branch: $CI_DEFAULT_BRANCH is valid. The if: clause evaluates to if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH, which is a valid variable expression.
  • Using include: inputs: branch: main is invalid. The if: clause evaluates to if: $CI_COMMIT_REF_NAME == main, which is invalid because main is a string but is not quoted.

Alternatively, add quotes to resolve some variable expression issues. For example:

YAML Copy to clipboard
spec:
  inputs:
    environment:
      default: "$ENVIRONMENT"
---

$[[ inputs.environment | expand_vars ]] job:
  script: echo
  rules:
    - if: '"$[[ inputs.environment | expand_vars ]]" == "production"'

In this example, quoting the input block and also the entire variable expression ensures valid if: syntax after the input is evaluated. The internal and external quotes in the expression must not be the same character. You can use " for the internal quotes and ' for the external quotes, or the inverse. On the other hand, the job name does not require any quoting.