microsoft / terraform-provider-power-platform

Power Platform Terraform Provider
https://registry.terraform.io/providers/microsoft/power-platform/latest/docs
MIT License
35 stars 13 forks source link

`powerplatform_environment_group_ruleset` resource #423

Closed mattdot closed 4 weeks ago

mattdot commented 2 months ago

Description

Resource

Potential Terraform Configuration

# Sample Terraform config that describes how the new resource might look.

resource "powerplatform_environment_group_ruleset" {
  environment_group_id = var.environment_group_id

  rules = [{
     type = "Sharing"
     resource_type = "App"
     value = {
       CanShareWithSecurityGroups = "excludeSharingToSecurityGroups"
       IsGroupSharingDisabled = true
     }
  },
  {
     type = "AdminDigest"
     value = {
        IncludeOnHomePageInsights = false
        ExcludeEnvironmentFromAnalysis = false
     }
]

Definition of Done

Contributions

Do you plan to raise a PR to address this issue? YES / NO?

See the contributing guide for more information about what's expected for contributions.