This pull request includes several updates to the quickstarts/201-D365-finance-environment Terraform module and a minor fix to the README.md file. The most important changes involve updating provider versions, modifying resource definitions, and adjusting output and variable configurations.
Updates to Terraform Module:
Provider Version Update:
Updated the powerplatform provider to version 2.7.0-preview in main.tf.
Resource Configuration Changes:
Modified the dataverse block within the powerplatform_environment resource to use variables for security_group_id and removed hardcoded values.
Output Adjustments:
Corrected the resource name prefix from power-platform_environment to powerplatform_environment in outputs.tf.
Variable Adjustments:
Removed unnecessary variables (client_id, secret, tenant_id) and added a new variable security_group_id in variables.tf. [1][2]
Documentation Fix:
README.md:
Fixed the order of quickstart examples by moving 101-hello-power-platform to the correct position.
This pull request includes several updates to the
quickstarts/201-D365-finance-environment
Terraform module and a minor fix to theREADME.md
file. The most important changes involve updating provider versions, modifying resource definitions, and adjusting output and variable configurations.Updates to Terraform Module:
Provider Version Update:
powerplatform
provider to version2.7.0-preview
inmain.tf
.Resource Configuration Changes:
dataverse
block within thepowerplatform_environment
resource to use variables forsecurity_group_id
and removed hardcoded values.Output Adjustments:
power-platform_environment
topowerplatform_environment
inoutputs.tf
.Variable Adjustments:
client_id
,secret
,tenant_id
) and added a new variablesecurity_group_id
invariables.tf
. [1] [2]Documentation Fix:
101-hello-power-platform
to the correct position.