-
Notifications
You must be signed in to change notification settings - Fork 14
powerplatform environment support for creating environment without dataverese #255
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
Merged
leighatami
merged 21 commits into
main
from
mawasile/235-resource-powerplatform_environment-without-dataverse
Apr 11, 2024
Merged
powerplatform environment support for creating environment without dataverese #255
leighatami
merged 21 commits into
main
from
mawasile/235-resource-powerplatform_environment-without-dataverse
Apr 11, 2024
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit 08f8476 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Apr 10 08:17:36 2024 +0200 Bump github.com/Azure/azure-sdk-for-go/sdk/azidentity (#254) Bumps [github.com/Azure/azure-sdk-for-go/sdk/azidentity](https://github.com/Azure/azure-sdk-for-go) from 1.5.1 to 1.5.2. - [Release notes](https://github.com/Azure/azure-sdk-for-go/releases) - [Changelog](https://github.com/Azure/azure-sdk-for-go/blob/main/documentation/release.md) - [Commits](Azure/azure-sdk-for-go@sdk/internal/v1.5.1...sdk/internal/v1.5.2) --- updated-dependencies: - dependency-name: github.com/Azure/azure-sdk-for-go/sdk/azidentity dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit e255409 Author: mawasile <[email protected]> Date: Mon Apr 8 18:47:07 2024 +0200 Adding powerplatform_environment_settings resource and datasource (#250) * Add new Environment Settings data source * adding unit tests * Add environment settings resource and data source * adding unit tests * Squashed commit of the following: commit 34468d7 Author: Engin Polat <[email protected]> Date: Fri Mar 22 10:16:34 2024 -0700 creating languages data source (#237) * creating language data source * adding languages data source to provider * changing languages data source example to use cli to authenticate * updating model and api for languages * adding documentation * adding tests * Update ProtoV6ProviderFactories in unit test * Update ProtoV6ProviderFactories in unit test * Refactor API calls in environment settings tests * Update user.md and resource_user.go with additional resources * Refactor power platform environment settings * Add power_apps_component_framework_for_canvas_apps feature to powerplatform_environment_settings resource and datasource * Update ImportState function to use environment_id instead of id * Delete import.tf file --------- Co-authored-by: Matt Dotson <[email protected]> commit 0223f4b Author: Matt Dotson <[email protected]> Date: Thu Apr 4 11:02:52 2024 -0700 more precise login command (#253) commit 8f6a60e Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Apr 4 11:01:33 2024 -0700 Bump github.com/Azure/azure-sdk-for-go/sdk/azcore from 1.11.0 to 1.11.1 (#251) Bumps [github.com/Azure/azure-sdk-for-go/sdk/azcore](https://github.com/Azure/azure-sdk-for-go) from 1.11.0 to 1.11.1. - [Release notes](https://github.com/Azure/azure-sdk-for-go/releases) - [Changelog](https://github.com/Azure/azure-sdk-for-go/blob/main/documentation/release.md) - [Commits](Azure/azure-sdk-for-go@sdk/azcore/v1.11.0...sdk/azcore/v1.11.1) --- updated-dependencies: - dependency-name: github.com/Azure/azure-sdk-for-go/sdk/azcore dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
10 tasks
mattdot
approved these changes
Apr 11, 2024
leighatami
approved these changes
Apr 11, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
breaking change
data source
data source
enhancement
New feature or request
go
Pull requests that update Go code
resource
terraform resource
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes changes to the Power Platform provider for Terraform. The changes mainly focus on updating the structure of environment settings and improving the documentation. The most important changes include adding a
dataverse
attribute to the environment resource, updating the structure ofpowerplatform_environment_settings
in the documentation, and correcting theaz login
command in the Azure CLI instructions.Changes to environment resource:
examples/resources/powerplatform_environment/resource.tf
: Theenvironment_type
attribute has been moved to the main resource block, and adataverse
attribute block has been added. This block includeslanguage_code
,currency_code
,domain
, andsecurity_group_id
.Changes to documentation:
docs/data-sources/environment_settings.md
: Added a comprehensive description of thepowerplatform_environment_settings
data source, including its schema and an example of its usage.docs/data-sources/tenant_application_packages.md
: Added a comprehensive description of thepowerplatform_tenant_application_packages
data source, including its schema and an example of its usage.docs/resources/environment_settings.md
: Added a comprehensive description of thepowerplatform_environment_settings
resource, including its schema and an example of its usage.docs/index.md
: Corrected theaz login
command in the Azure CLI instructions.Changes to examples:
examples/data-sources/powerplatform_environment_settings/datasource.tf
: Added a complete example of how to use thepowerplatform_environment_settings
data source.examples/data-sources/powerplatform_environment_settings/outputs.tf
: Added an output for thepowerplatform_environment_settings
data source.examples/resources/powerplatform_environment/outputs.tf
: Updated the output for the URL of the environment to use thedataverse
attribute.