Skip to content

Commit

Permalink
Add changelog for v0.41.0 (#422)
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiught authored Dec 20, 2022
1 parent d9ffca1 commit 33f3c12
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 0.41.0

BREAKING CHANGES:

- `resource/auth0_connection`: Removed `enabled_clients` field ([#421](https://github.com/auth0/terraform-provider-auth0/pull/421))
- It is necessary to migrate all `enabled_clients` on the `auth0_connection` resource to the [auth0_connection_client](https://registry.terraform.io/providers/auth0/auth0/latest/docs/resources/connection_client) resource.


## 0.40.1

FEATURES:
Expand Down
3 changes: 0 additions & 3 deletions docs/resources/connection_client.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,12 @@
page_title: "Resource: auth0_connection_client"
description: |-
With this resource, you can manage enabled clients on a connection.
~> Avoid using the enabledclients property on the "auth0connection" if making use of this resource, to avoid unexpected behavior.
---

# Resource: auth0_connection_client

With this resource, you can manage enabled clients on a connection.

~> Avoid using the enabled_clients property on the "auth0_connection" if making use of this resource, to avoid unexpected behavior.

## Example Usage

```terraform
Expand Down
4 changes: 1 addition & 3 deletions internal/provider/resource_auth0_connection_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,7 @@ func newConnectionClient() *schema.Resource {
Importer: &schema.ResourceImporter{
StateContext: importConnectionClient,
},
Description: `With this resource, you can manage enabled clients on a connection.
~> Avoid using the enabled_clients property on the "auth0_connection" if making use of this resource, to avoid unexpected behavior.`,
Description: "With this resource, you can manage enabled clients on a connection.",
}
}

Expand Down

0 comments on commit 33f3c12

Please sign in to comment.