We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
data.powerplatform_environments
Enhance the powerplatform_environments data source to accept a filter to return a more targeted list of environments
data "powerplatform_environments" "get_by_id" { filter = "name eq <guid>" } data "powerplatform_environments" "get_default" { filter = "properties.isDefault eq true" } data "powerplatform_environments" "get_coe_envs" { filter = "contains(properties.displayName, 'CoE')" }
The text was updated successfully, but these errors were encountered:
This would be great!!! And terribly useful.
Sorry, something went wrong.
After looking at the limitations of the API I'm considering an alternative syntax
data "powerplatform_environments" "get_by_id" { filter = { environment_id = "<guid>" } } data "powerplatform_environments" "get_default" { filter = { sku = "Default" # Default | Production | Sandbox | Developer } } data "powerplatform_environments" "get_unprotected" { filter = { security_group_id = "00000000-0000-0000-0000-000000000000" } }
mattdot
When branches are created from issues, their pull requests are automatically linked.
Enhance the powerplatform_environments data source to accept a filter to return a more targeted list of environments
The text was updated successfully, but these errors were encountered: