Skip to content

Commit abde228

Browse files
committed
Updated examples and docs for auth0_resource_server
1 parent 241abd0 commit abde228

File tree

4 files changed

+0
-28
lines changed

4 files changed

+0
-28
lines changed

docs/resources/resource_server_scope.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,6 @@ conjunction with the `auth0_resource_server_scopes` resource when managing scope
1818
resource "auth0_resource_server" "resource_server" {
1919
name = "Example Resource Server (Managed by Terraform)"
2020
identifier = "https://api.example.com"
21-
22-
# Until we remove the ability to operate changes on
23-
# the scopes field it is important to have this
24-
# block in the config, to avoid diffing issues.
25-
lifecycle {
26-
ignore_changes = [scopes]
27-
}
2821
}
2922
3023
resource "auth0_resource_server_scope" "read_posts" {

docs/resources/resource_server_scopes.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,6 @@ server id.
1919
resource "auth0_resource_server" "my_api" {
2020
name = "Example Resource Server (Managed by Terraform)"
2121
identifier = "https://api.example.com"
22-
23-
# Until we remove the ability to operate changes on
24-
# the scopes field it is important to have this
25-
# block in the config, to avoid diffing issues.
26-
lifecycle {
27-
ignore_changes = [scopes]
28-
}
2922
}
3023
3124
resource "auth0_resource_server_scopes" "my_api_scopes" {

examples/resources/auth0_resource_server_scope/resource.tf

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
resource "auth0_resource_server" "resource_server" {
22
name = "Example Resource Server (Managed by Terraform)"
33
identifier = "https://api.example.com"
4-
5-
# Until we remove the ability to operate changes on
6-
# the scopes field it is important to have this
7-
# block in the config, to avoid diffing issues.
8-
lifecycle {
9-
ignore_changes = [scopes]
10-
}
114
}
125

136
resource "auth0_resource_server_scope" "read_posts" {

examples/resources/auth0_resource_server_scopes/resource.tf

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
resource "auth0_resource_server" "my_api" {
22
name = "Example Resource Server (Managed by Terraform)"
33
identifier = "https://api.example.com"
4-
5-
# Until we remove the ability to operate changes on
6-
# the scopes field it is important to have this
7-
# block in the config, to avoid diffing issues.
8-
lifecycle {
9-
ignore_changes = [scopes]
10-
}
114
}
125

136
resource "auth0_resource_server_scopes" "my_api_scopes" {

0 commit comments

Comments
 (0)