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 (Resource) should support the refresh cadence, administration mode, and description parameters #417

Closed webstean closed 2 months ago

webstean commented 2 months ago

Description

Currently the powerplatform_environment (Resource) does not support neither the refresh cadence and description parameters. Both of which are supported in the Power Apps admin centre.

Resource

Potential Terraform Configuration

resource "powerplatform_environment" "development" {
  display_name     = "example_environment"
  description = "example description - to be added"
  cadence = "Frequent" ## or "Moderate"
  administration_mode = "enabled" ## or "disabled"
  location         = "europe"
  azure_region     = "northeurope"
  environment_type = "Sandbox"
}

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.

mawasile commented 2 months ago

Thanks, let me look into that

mattdot commented 2 months ago

@mawasile also add environment_group

webstean commented 2 months ago

@mawasile also add environment_group

Was going to add that as an issue, once the environment_group functionality is released. :-)