Skip to content

Commit

Permalink
Merge pull request #1183 from hashicorp/TF-11720-terraform-provider-t…
Browse files Browse the repository at this point in the history
…fe-gh-issue-1182-provider-0-51-0-set-new-only-operates-on-computed-keys-organization-is-not-one-error-encountered-when-not-configuring-an-organization-argument-in-tfe-admin-organization-settings

'organization' resource schema should always be computed
  • Loading branch information
brandonc authored Dec 22, 2023
2 parents 8e8ac79 + ccac4c5 commit 86c9895
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# UNRELEASED

BUG FIXES:
* Fixed default provider organization usage for `r/tfe_admin_organization_settings`, by @brandonc [1183](https://github.com/hashicorp/terraform-provider-tfe/pull/1183)

# v0.51.0

DEPRECATIONS and BREAKING CHANGES:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ func resourceTFEAdminOrganizationSettings() *schema.Resource {
Type: schema.TypeString,
Optional: true,
ForceNew: true,
Computed: true,
},
"access_beta_tools": {
Type: schema.TypeBool,
Expand Down
4 changes: 0 additions & 4 deletions website/docs/r/admin_organization_settings.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,3 @@ The following arguments are supported:
## Attributes Reference

* `sso_enabled` - True if SSO is enabled in this organization

## Import

This resource does not manage the creation of an organization and there is no need to import it.

0 comments on commit 86c9895

Please sign in to comment.