Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Environment Variables in Parameter.yml #160

Open
richbenmintz opened this issue Mar 14, 2025 · 5 comments
Open

Support Environment Variables in Parameter.yml #160

richbenmintz opened this issue Mar 14, 2025 · 5 comments
Assignees
Labels
enhancement New feature or request

Comments

@richbenmintz
Copy link

What is the feature?

Please allow Azure DevOps Pipeline and Release Variables to be used in the find_replace feature as key value pair:
replace with the value of the key defined in the yaml.
sorta like (sorry yaml not formatted 100%):

find_replace:
# SQL Connection Guid
"db52be81-c2b2-4261-84fa-840c67f4bbd0":
PPE: var_1
PROD: var_2

Additional context

No response

@richbenmintz richbenmintz added the enhancement New feature or request label Mar 14, 2025
@JacobKnightley JacobKnightley changed the title Feature Request Support Partial Replacements in File Mar 17, 2025
@JacobKnightley JacobKnightley changed the title Support Partial Replacements in File Support Environment Variables in Parameter.yml Mar 17, 2025
@JacobKnightley
Copy link
Collaborator

If there is a session environment variable of ENV:SQLServerConnection, then replace that reference in the yml file when processing. If we did take this on, it would need to be behind a feature flag so that default behavior is off. It would be fairly straight forward to implement, list all environment variables. If there's any matches in the yml file, blindly replace.

find_replace:
    - find_value: "db52be81-c2b2-4261-84fa-840c67f4bbd0"
      replace_value:
        PPE: ENV:SQLServerConnection
        PROD: ENV:SQLServerConnection

@JacobKnightley
Copy link
Collaborator

The question is more so where this sits in the larger priorities.

@richbenmintz
Copy link
Author

Would it be in the _refresh_parameter_file function? if so I could take a look at contributing the change.

@JacobKnightley
Copy link
Collaborator

@richbenmintz yep that's correct!

We have an ongoing refactor for parameterization so you would want to take a dependency on the output of Shira's work here. That we're targeting to ship this week.

#113
#128

In terms of implementation, you would need to integrate a new feature flag, and then update the find_replace. Example of how to use feature_flag

from fabric_cicd import feature_flag
# Define order to unpublish items
unpublish_order = []
for x in ["DataPipeline", "Report", "SemanticModel", "Notebook", "Environment", "MirroredDatabase", "Lakehouse"]:
if x in fabric_workspace_obj.item_type_in_scope and (
x != "Lakehouse" or "enable_lakehouse_unpublish" in feature_flag
):
unpublish_order.append(x)

@richbenmintz
Copy link
Author

Submitted a PR for this enhancement

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants