Share via

Locating the pipeline environment parameter setting?

Kessler Kelly 0 Reputation points
2026-03-30T15:26:10.8533333+00:00

How do I locate the pipeline environment parameter setting?

Azure Data Factory
Azure Data Factory

An Azure service for ingesting, preparing, and transforming data at scale.

0 comments No comments

3 answers

Sort by: Most helpful
  1. Smaran Thoomu 34,795 Reputation points Microsoft External Staff Moderator
    2026-04-03T07:24:59.8233333+00:00

    Hi @Kessler Kelly
    In Azure Data Factory, the “environment” parameter is usually defined at the pipeline or global level.

    Check pipeline parameters

    Pass trigger information to pipeline - Azure Data Factory | Microsoft Learn

    Go to Author → Pipelines → Open your pipeline → Parameters tab

    Look for parameters like env or environment.

    Check Global Parameters

    https://learn.microsoft.com/en-us/azure/data-factory/media/author-global-parameters/create-global-parameter-1.png

    Go to Manage → Global parameters These are commonly used to store environment values (DEV / TEST / PROD).

    If you still don’t see it, it may be passed via a trigger or defined in the deployment (ARM template).

    Let me know if you want help locating it in your specific pipeline.

    0 comments No comments

  2. Pilladi Padma Sai Manisha 6,200 Reputation points Microsoft External Staff Moderator
    2026-03-30T22:52:10.9+00:00

    Hi Kessler Kelly,
    You’re on the right track,pipeline parameters are configured directly within the pipeline in Azure Data Factory.

    To locate them, open the pipeline in the ADF UI and go to the Parameters tab. This is where you can define parameters, set data types, and assign default values. These values can be overridden at runtime, and referenced inside activities using expressions like @pipeline().parameters.<parameterName>.

    However, if you are referring to environment-specific parameters (for example, different values for Dev, Test, and Prod), those are typically managed outside the pipeline using global parameters or ARM template parameterization during deployment, rather than within the pipeline itself.


  3. Q&A Assist
    2026-03-30T15:26:19.07+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    In Azure Data Factory, pipeline parameters are configured directly on the pipeline object.

    To locate and set them:

    1. Open the pipeline in the ADF (or Synapse) UI so its configuration tabs are visible.
    2. Select the Parameters tab for that pipeline.
    3. Use + New to add a parameter, then provide:
      • Name
      • Description (optional)
      • Data type (String, Int, Float, Bool, Array, Object, or SecureString)
      • Default value (optional)
    4. Before each pipeline run, set or override parameter values in the run pane; otherwise, the default or previously defined value is used.
    5. Inside activities, reference the parameter with the expression: @pipeline().parameters.<parameterName>

    This Parameters tab is the place where the “pipeline environment parameter” is defined and managed.


    References:

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.