From 94db0ace0023400c00bf4fc4178a93df88e2c728 Mon Sep 17 00:00:00 2001 From: Rajat Bajaj Date: Wed, 11 Sep 2024 14:26:57 +0530 Subject: [PATCH 1/5] Add changelog for v1.6.1 (#1022) * Added changelog * linting fixes * Update CHANGELOG.md Co-authored-by: KunalOfficial <35455566+developerkunal@users.noreply.github.com> --------- Co-authored-by: KunalOfficial <35455566+developerkunal@users.noreply.github.com> --- CHANGELOG.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2527bab6..88a391aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,18 +1,29 @@ +## v1.6.1 + +BUG FIXES: + +- `resource/auth0_client`: Fixed an issue where the `default_organization` plan failed due to `ConflictsWith` and `RequiredWith` clauses in the schema ([#1021](https://github.com/auth0/terraform-provider-auth0/pull/1021)) + + ## v1.6.0 FEATURES: + - `resource/auth0_prompt_screen_partial`: Add new resource to manage customized sign up and login experience. (1:1) ([#1013](https://github.com/auth0/terraform-provider-auth0/pull/1013)) - `resource/auth0_prompt_screen_partials`: Add new resource to manage customized sign up and login experience. (1:many) ([#1013](https://github.com/auth0/terraform-provider-auth0/pull/1013)) - `data_source/auth0_prompt_screen_partials`: Add new data source to retrieve prompt screen partials. ([#1013](https://github.com/auth0/terraform-provider-auth0/pull/1013)) -- ENHANCEMENTS: +ENHANCEMENTS: + - `resource/auth0_client`: Add Organizations for Client Credentials. ([#1009](https://github.com/auth0/terraform-provider-auth0/pull/1009)) - `resource/auth0_prompt_custom_text`: Add support for fetching the language list from a CDN for prompt custom text. ([#1006](https://github.com/auth0/terraform-provider-auth0/pull/1016)) BUG FIXES: + - `resource/auth0_connection`: Remove MinItems validation for precedence. ([#1017](https://github.com/auth0/terraform-provider-auth0/pull/1017)) NOTES: + - `resource/auth0_prompt_partials`: Deprecated in favor of `resource/auth0_prompt_screen_partial` and `resource/auth0_prompt_screen_partials`. ([#1013](https://github.com/auth0/terraform-provider-auth0/pull/1013)) From e70dc2a82680a3cc86b924c754339f8da1cd3620 Mon Sep 17 00:00:00 2001 From: "A. Craig West" Date: Fri, 20 Sep 2024 09:16:41 -0400 Subject: [PATCH 2/5] Add HRI related changes to Terraform provider (#1015) * Add HRI related changes to Terraform provider * Fix broken HasChange behaviour * Change ConflictWith to explicit validation in code * Move validation to plan instead of apply * Fix validation for default resources --- docs/data-sources/client.md | 103 +- docs/data-sources/resource_server.md | 45 +- docs/data-sources/tenant.md | 14 + docs/resources/client.md | 7 +- docs/resources/client_credentials.md | 150 +- docs/resources/resource_server.md | 70 +- docs/resources/tenant.md | 14 + examples/resources/auth0_client/resource.tf | 3 + .../auth0_client_credentials/resource.tf | 53 + .../auth0_resource_server/resource.tf | 23 + internal/auth0/client/data_source.go | 237 +- internal/auth0/client/expand.go | 2 + internal/auth0/client/flatten.go | 229 +- internal/auth0/client/resource.go | 25 +- internal/auth0/client/resource_credentials.go | 617 ++- .../auth0/client/resource_credentials_test.go | 1001 ++++- internal/auth0/resourceserver/expand.go | 184 + internal/auth0/resourceserver/flatten.go | 76 +- internal/auth0/resourceserver/resource.go | 289 +- .../auth0/resourceserver/resource_test.go | 190 +- internal/auth0/tenant/data_source_test.go | 84 +- internal/auth0/tenant/expand.go | 102 +- internal/auth0/tenant/flatten.go | 26 + internal/auth0/tenant/flatten_test.go | 53 + internal/auth0/tenant/resource.go | 109 +- internal/auth0/tenant/resource_test.go | 186 +- internal/value/value.go | 17 + internal/value/value_test.go | 20 + .../TestAccAllowUpdatingTheClientSecret.yaml | 155 +- ...ntAuthenticationMethodsPrivateKeyJWT.yaml} | 901 ++-- ...icationMethodsSelfSignedTLSClientAuth.yaml | 1904 +++++++++ ...henticationMethodsSignedRequestObject.yaml | 3661 +++++++++++++++++ ...entAuthenticationMethodsTLSClientAuth.yaml | 2643 ++++++++++++ ...ClientCanSetDefaultAuthMethodOnCreate.yaml | 512 ++- .../TestAccClientCredentialsImport.yaml | 470 +-- test/data/recordings/TestAccClientGrant.yaml | 967 +++-- .../TestAccDataSourceResourceServer.yaml | 413 +- .../recordings/TestAccDataSourceRole.yaml | 1168 ++---- .../recordings/TestAccDataSourceTenant.yaml | 357 +- .../recordings/TestAccDataSourceUser.yaml | 529 ++- .../recordings/TestAccResourceServer.yaml | 579 ++- .../TestAccResourceServerScope.yaml | 960 +++-- .../TestAccResourceServerScopes.yaml | 756 ++-- .../recordings/TestAccRolePermission.yaml | 1635 ++++---- .../recordings/TestAccRolePermissions.yaml | 1833 ++++----- test/data/recordings/TestAccTenant.yaml | 532 --- .../recordings/TestAccTenantDefaults.yaml | 321 +- test/data/recordings/TestAccTenant_Main.yaml | 674 +++ .../recordings/TestAccUserPermission.yaml | 1469 +++---- .../recordings/TestAccUserPermissions.yaml | 1641 ++++---- 50 files changed, 20159 insertions(+), 7850 deletions(-) rename test/data/recordings/{TestAccClientAuthenticationMethods.yaml => TestAccClientAuthenticationMethodsPrivateKeyJWT.yaml} (63%) create mode 100644 test/data/recordings/TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth.yaml create mode 100644 test/data/recordings/TestAccClientAuthenticationMethodsSignedRequestObject.yaml create mode 100644 test/data/recordings/TestAccClientAuthenticationMethodsTLSClientAuth.yaml delete mode 100644 test/data/recordings/TestAccTenant.yaml create mode 100644 test/data/recordings/TestAccTenant_Main.yaml diff --git a/docs/data-sources/client.md b/docs/data-sources/client.md index 0ca68187..c4460c75 100644 --- a/docs/data-sources/client.md +++ b/docs/data-sources/client.md @@ -39,8 +39,10 @@ data "auth0_client" "some-client-by-id" { - `app_type` (String) Type of application the client represents. Possible values are: `native`, `spa`, `regular_web`, `non_interactive`, `sso_integration`. Specific SSO integrations types accepted as well are: `rms`, `box`, `cloudbees`, `concur`, `dropbox`, `mscrm`, `echosign`, `egnyte`, `newrelic`, `office365`, `salesforce`, `sentry`, `sharepoint`, `slack`, `springcm`, `zendesk`, `zoom`. - `callbacks` (List of String) URLs that Auth0 may call back to after a user authenticates for the client. Make sure to specify the protocol (https://) otherwise the callback may fail in some cases. With the exception of custom URI schemes for native clients, all callbacks should use protocol https://. - `client_aliases` (List of String) List of audiences/realms for SAML protocol. Used by the wsfed addon. +- `client_authentication_methods` (Set of Object) Defines client authentication methods. (see [below for nested schema](#nestedatt--client_authentication_methods)) - `client_metadata` (Map of String) Metadata associated with the client, in the form of an object with string values (max 255 chars). Maximum of 10 metadata properties allowed. Field names (max 255 chars) are alphanumeric and may only include the following special characters: `:,-+=_*?"/\()<>@ [Tab] [Space]`. - `client_secret` (String, Sensitive) Secret for the client. Keep this private. To access this attribute you need to add the `read:client_keys` scope to the Terraform client. Otherwise, the attribute will contain an empty string. +- `compliance_level` (String) Defines the compliance level for this client, which may restrict it's capabilities. Can be one of `none`, `fapi1_adv_pkj_par`, `fapi1_adv_mtls_par`. - `cross_origin_auth` (Boolean) Whether this client can be used to make cross-origin authentication requests (`true`) or it is not allowed to make such requests (`false`). - `cross_origin_loc` (String) URL of the location in your site where the cross-origin verification takes place for the cross-origin auth flow when performing authentication in your own domain instead of Auth0 Universal Login page. - `custom_login_page` (String) The content (HTML, CSS, JS) of the custom login page. @@ -63,11 +65,13 @@ data "auth0_client" "some-client-by-id" { - `organization_require_behavior` (String) Defines how to proceed during an authentication transaction when `organization_usage = "require"`. Can be `no_prompt` (default), `pre_login_prompt` or `post_login_prompt`. - `organization_usage` (String) Defines how to proceed during an authentication transaction with regards to an organization. Can be `deny` (default), `allow` or `require`. - `refresh_token` (List of Object) Configuration settings for the refresh tokens issued for this client. (see [below for nested schema](#nestedatt--refresh_token)) +- `require_proof_of_possession` (Boolean) Makes the use of Proof-of-Possession mandatory for this client. - `require_pushed_authorization_requests` (Boolean) Makes the use of Pushed Authorization Requests mandatory for this client. This feature currently needs to be enabled on the tenant in order to make use of it. +- `signed_request_object` (Set of Object) Configuration for JWT-secured Authorization Requests(JAR). (see [below for nested schema](#nestedatt--signed_request_object)) - `signing_keys` (List of Map of String) List containing a map of the public cert of the signing key and the public cert of the signing key in PKCS7. - `sso` (Boolean) Applies only to SSO clients and determines whether Auth0 will handle Single Sign-On (true) or whether the identity provider will (false). - `sso_disabled` (Boolean) Indicates whether or not SSO is disabled. -- `token_endpoint_auth_method` (String) The authentication method for the token endpoint. Results include `none` (public client without a client secret), `client_secret_post` (client uses HTTP POST parameters), `client_secret_basic` (client uses HTTP Basic). Managing a client's authentication method can be done via the `auth0_client_credentials` resource. +- `token_endpoint_auth_method` (String) The authentication method for the token endpoint. Results include `none` (public client without a client secret), `client_secret_post` (client uses HTTP POST parameters), `client_secret_basic` (client uses HTTP Basic), Managing a client's authentication method can be done via the `auth0_client_credentials` resource. - `web_origins` (List of String) URLs that represent valid web origins for use with web message response mode. @@ -403,6 +407,80 @@ Read-Only: + +### Nested Schema for `client_authentication_methods` + +Read-Only: + +- `private_key_jwt` (Set of Object) (see [below for nested schema](#nestedobjatt--client_authentication_methods--private_key_jwt)) +- `self_signed_tls_client_auth` (Set of Object) (see [below for nested schema](#nestedobjatt--client_authentication_methods--self_signed_tls_client_auth)) +- `tls_client_auth` (Set of Object) (see [below for nested schema](#nestedobjatt--client_authentication_methods--tls_client_auth)) + + +### Nested Schema for `client_authentication_methods.private_key_jwt` + +Read-Only: + +- `credentials` (List of Object) (see [below for nested schema](#nestedobjatt--client_authentication_methods--private_key_jwt--credentials)) + + +### Nested Schema for `client_authentication_methods.private_key_jwt.credentials` + +Read-Only: + +- `algorithm` (String) +- `created_at` (String) +- `credential_type` (String) +- `expires_at` (String) +- `id` (String) +- `key_id` (String) +- `name` (String) +- `updated_at` (String) + + + + +### Nested Schema for `client_authentication_methods.self_signed_tls_client_auth` + +Read-Only: + +- `credentials` (List of Object) (see [below for nested schema](#nestedobjatt--client_authentication_methods--self_signed_tls_client_auth--credentials)) + + +### Nested Schema for `client_authentication_methods.self_signed_tls_client_auth.credentials` + +Read-Only: + +- `created_at` (String) +- `credential_type` (String) +- `id` (String) +- `name` (String) +- `updated_at` (String) + + + + +### Nested Schema for `client_authentication_methods.tls_client_auth` + +Read-Only: + +- `credentials` (List of Object) (see [below for nested schema](#nestedobjatt--client_authentication_methods--tls_client_auth--credentials)) + + +### Nested Schema for `client_authentication_methods.tls_client_auth.credentials` + +Read-Only: + +- `created_at` (String) +- `credential_type` (String) +- `id` (String) +- `name` (String) +- `subject_dn` (String) +- `updated_at` (String) + + + + ### Nested Schema for `default_organization` @@ -490,3 +568,26 @@ Read-Only: - `token_lifetime` (Number) + +### Nested Schema for `signed_request_object` + +Read-Only: + +- `credentials` (List of Object) (see [below for nested schema](#nestedobjatt--signed_request_object--credentials)) +- `required` (Boolean) + + +### Nested Schema for `signed_request_object.credentials` + +Read-Only: + +- `algorithm` (String) +- `created_at` (String) +- `credential_type` (String) +- `expires_at` (String) +- `id` (String) +- `key_id` (String) +- `name` (String) +- `updated_at` (String) + + diff --git a/docs/data-sources/resource_server.md b/docs/data-sources/resource_server.md index fdc5c082..56941292 100644 --- a/docs/data-sources/resource_server.md +++ b/docs/data-sources/resource_server.md @@ -33,18 +33,41 @@ data "auth0_resource_server" "some-resource-server-by-id" { ### Read-Only - `allow_offline_access` (Boolean) Indicates whether refresh tokens can be issued for this resource server. +- `authorization_details` (List of Object) Authorization details for this resource server. (see [below for nested schema](#nestedatt--authorization_details)) +- `consent_policy` (String) Consent policy for this resource server. Options include `transactional-authorization-with-mfa`, or `null` to disable. - `enforce_policies` (Boolean) If this setting is enabled, RBAC authorization policies will be enforced for this API. Role and permission assignments will be evaluated during the login transaction. - `id` (String) The ID of this resource. - `name` (String) Friendly name for the resource server. Cannot include `<` or `>` characters. +- `proof_of_possession` (List of Object) Configuration settings for proof-of-possession for this resource server. (see [below for nested schema](#nestedatt--proof_of_possession)) - `scopes` (Set of Object) List of permissions (scopes) used by this resource server. (see [below for nested schema](#nestedatt--scopes)) -- `signing_alg` (String) Algorithm used to sign JWTs. Options include `HS256` and `RS256`. +- `signing_alg` (String) Algorithm used to sign JWTs. Options include `HS256`, `RS256`, and `PS256`. - `signing_secret` (String) Secret used to sign tokens when using symmetric algorithms (HS256). - `skip_consent_for_verifiable_first_party_clients` (Boolean) Indicates whether to skip user consent for applications flagged as first party. - `token_dialect` (String) Dialect of access tokens that should be issued for this resource server. Options include `access_token`, `rfc9068_profile`, `access_token_authz`, and `rfc9068_profile_authz`. `access_token` is a JWT containing standard Auth0 claims. `rfc9068_profile` is a JWT conforming to the IETF JWT Access Token Profile. `access_token_authz` is a JWT containing standard Auth0 claims, including RBAC permissions claims. `rfc9068_profile_authz` is a JWT conforming to the IETF JWT Access Token Profile, including RBAC permissions claims. RBAC permissions claims are available if RBAC (`enforce_policies`) is enabled for this API. For more details, refer to [Access Token Profiles](https://auth0.com/docs/secure/tokens/access-tokens/access-token-profiles). +- `token_encryption` (List of Object) Configuration for JSON Web Encryption(JWE) of tokens for this resource server. (see [below for nested schema](#nestedatt--token_encryption)) - `token_lifetime` (Number) Number of seconds during which access tokens issued for this resource server from the token endpoint remain valid. - `token_lifetime_for_web` (Number) Number of seconds during which access tokens issued for this resource server via implicit or hybrid flows remain valid. Cannot be greater than the `token_lifetime` value. - `verification_location` (String) URL from which to retrieve JWKs for this resource server. Used for verifying the JWT sent to Auth0 for token introspection. + +### Nested Schema for `authorization_details` + +Read-Only: + +- `disable` (Boolean) +- `type` (String) + + + +### Nested Schema for `proof_of_possession` + +Read-Only: + +- `disable` (Boolean) +- `mechanism` (String) +- `required` (Boolean) + + ### Nested Schema for `scopes` @@ -54,3 +77,23 @@ Read-Only: - `name` (String) + +### Nested Schema for `token_encryption` + +Read-Only: + +- `disable` (Boolean) +- `encryption_key` (List of Object) (see [below for nested schema](#nestedobjatt--token_encryption--encryption_key)) +- `format` (String) + + +### Nested Schema for `token_encryption.encryption_key` + +Read-Only: + +- `algorithm` (String) +- `kid` (String) +- `name` (String) +- `pem` (String) + + diff --git a/docs/data-sources/tenant.md b/docs/data-sources/tenant.md index 1a79dfc8..12c909e2 100644 --- a/docs/data-sources/tenant.md +++ b/docs/data-sources/tenant.md @@ -19,12 +19,14 @@ data "auth0_tenant" "my_tenant" {} ### Read-Only +- `acr_values_supported` (Set of String) List of supported ACR values. - `allow_organization_name_in_authentication_api` (Boolean) Whether to accept an organization name instead of an ID on auth endpoints. - `allowed_logout_urls` (List of String) URLs that Auth0 may redirect to after logout. - `customize_mfa_in_postlogin_action` (Boolean) Whether to enable flexible factors for MFA in the PostLogin action. - `default_audience` (String) API Audience to use by default for API Authorization flows. This setting is equivalent to appending the audience to every authorization request made to the tenant for every application. - `default_directory` (String) Name of the connection to be used for Password Grant exchanges. Options include `auth0-adldap`, `ad`, `auth0`, `email`, `sms`, `waad`, and `adfs`. - `default_redirection_uri` (String) The default absolute redirection URI. Must be HTTPS or an empty string. +- `disable_acr_values_supported` (Boolean) Disable list of supported ACR values. - `domain` (String) Your Auth0 domain name. - `enabled_locales` (List of String) Supported locales for the user interface. The first locale in the list will be used to set the default locale. - `flags` (List of Object) Configuration settings for tenant flags. (see [below for nested schema](#nestedatt--flags)) @@ -32,7 +34,9 @@ data "auth0_tenant" "my_tenant" {} - `id` (String) The ID of this resource. - `idle_session_lifetime` (Number) Number of hours during which a session can be inactive before the user must log in again. - `management_api_identifier` (String) The identifier value of the built-in Management API resource server, which can be used as an audience when configuring client grants. +- `mtls` (List of Object) Configuration for mTLS. (see [below for nested schema](#nestedatt--mtls)) - `picture_url` (String) URL of logo to be shown for the tenant. Recommended size is 150px x 150px. If no URL is provided, the Auth0 logo will be used. +- `pushed_authorization_requests_supported` (Boolean) Enable pushed authorization requests. - `sandbox_version` (String) Selected sandbox version for the extensibility environment, which allows you to use custom scripts to extend parts of Auth0's functionality. - `session_cookie` (List of Object) Alters behavior of tenant's session cookie. Contains a single `mode` property. (see [below for nested schema](#nestedatt--session_cookie)) - `session_lifetime` (Number) Number of hours during which a session will stay valid. @@ -66,11 +70,21 @@ Read-Only: - `enable_sso` (Boolean) - `mfa_show_factor_list_on_enrollment` (Boolean) - `no_disclose_enterprise_connections` (Boolean) +- `remove_alg_from_jwks` (Boolean) - `require_pushed_authorization_requests` (Boolean) - `revoke_refresh_token_grant` (Boolean) - `use_scope_descriptions_for_consent` (Boolean) + +### Nested Schema for `mtls` + +Read-Only: + +- `disable` (Boolean) +- `enable_endpoint_aliases` (Boolean) + + ### Nested Schema for `session_cookie` diff --git a/docs/resources/client.md b/docs/resources/client.md index 3c72992d..3f3709c7 100644 --- a/docs/resources/client.md +++ b/docs/resources/client.md @@ -15,6 +15,7 @@ resource "auth0_client" "my_client" { name = "Application - Acceptance Test" description = "Test Applications Long Description" app_type = "non_interactive" + compliance_level = "none" custom_login_page_on = true is_first_party = true is_token_endpoint_ip_header_trusted = true @@ -23,6 +24,8 @@ resource "auth0_client" "my_client" { allowed_origins = ["https://example.com"] allowed_logout_urls = ["https://example.com"] web_origins = ["https://example.com"] + require_proof_of_possession = false + grant_types = [ "authorization_code", "http://auth0.com/oauth/grant-type/password-realm", @@ -96,6 +99,7 @@ resource "auth0_client" "my_client" { - `callbacks` (List of String) URLs that Auth0 may call back to after a user authenticates for the client. Make sure to specify the protocol (https://) otherwise the callback may fail in some cases. With the exception of custom URI schemes for native clients, all callbacks should use protocol https://. - `client_aliases` (List of String) List of audiences/realms for SAML protocol. Used by the wsfed addon. - `client_metadata` (Map of String) Metadata associated with the client, in the form of an object with string values (max 255 chars). Maximum of 10 metadata properties allowed. Field names (max 255 chars) are alphanumeric and may only include the following special characters: `:,-+=_*?"/\()<>@ [Tab] [Space]`. +- `compliance_level` (String) Defines the compliance level for this client, which may restrict it's capabilities. Can be one of `none`, `fapi1_adv_pkj_par`, `fapi1_adv_mtls_par`. - `cross_origin_auth` (Boolean) Whether this client can be used to make cross-origin authentication requests (`true`) or it is not allowed to make such requests (`false`). - `cross_origin_loc` (String) URL of the location in your site where the cross-origin verification takes place for the cross-origin auth flow when performing authentication in your own domain instead of Auth0 Universal Login page. - `custom_login_page` (String) The content (HTML, CSS, JS) of the custom login page. @@ -117,6 +121,7 @@ resource "auth0_client" "my_client" { - `organization_require_behavior` (String) Defines how to proceed during an authentication transaction when `organization_usage = "require"`. Can be `no_prompt` (default), `pre_login_prompt` or `post_login_prompt`. - `organization_usage` (String) Defines how to proceed during an authentication transaction with regards to an organization. Can be `deny` (default), `allow` or `require`. - `refresh_token` (Block List, Max: 1) Configuration settings for the refresh tokens issued for this client. (see [below for nested schema](#nestedblock--refresh_token)) +- `require_proof_of_possession` (Boolean) Makes the use of Proof-of-Possession mandatory for this client. - `require_pushed_authorization_requests` (Boolean) Makes the use of Pushed Authorization Requests mandatory for this client. This feature currently needs to be enabled on the tenant in order to make use of it. - `sso` (Boolean) Applies only to SSO clients and determines whether Auth0 will handle Single Sign-On (true) or whether the identity provider will (false). - `sso_disabled` (Boolean) Indicates whether or not SSO is disabled. @@ -464,7 +469,7 @@ Optional: Optional: -- `alg` (String) Algorithm used to sign JWTs. +- `alg` (String) Algorithm used to sign JWTs. Can be one of `HS256`, `RS256`, `PS256`. - `lifetime_in_seconds` (Number) Number of seconds during which the JWT will be valid. - `scopes` (Map of String) Permissions (scopes) included in JWTs. - `secret_encoded` (Boolean) Indicates whether the client secret is Base64-encoded. diff --git a/docs/resources/client_credentials.md b/docs/resources/client_credentials.md index 4a5c7eba..a0bfd288 100644 --- a/docs/resources/client_credentials.md +++ b/docs/resources/client_credentials.md @@ -65,6 +65,59 @@ EOF } } +# Configuring tls_client_auth as an authentication method with a PEM certificate. +resource "auth0_client_credentials" "test" { + client_id = auth0_client.my_client.id + + authentication_method = "tls_client_auth" + + tls_client_auth { + credentials { + name = "Testing Credentials 1" + credential_type = "cert_subject_dn" + pem = < +### Nested Schema for `self_signed_tls_client_auth` + +Required: + +- `credentials` (Block List, Min: 1) Credentials that will be enabled on the client for mTLS authentication utilizing self-signed certificates. (see [below for nested schema](#nestedblock--self_signed_tls_client_auth--credentials)) + + +### Nested Schema for `self_signed_tls_client_auth.credentials` + +Required: + +- `pem` (String) PEM-formatted X509 certificate. Must be JSON escaped. + +Optional: + +- `credential_type` (String) Credential type. Supported types: `x509_cert`. +- `name` (String) Friendly name for a credential. + +Read-Only: + +- `created_at` (String) The ISO 8601 formatted date the credential was created. +- `expires_at` (String) The ISO 8601 formatted date representing the expiration of the credential. +- `id` (String) The ID of the client credential. +- `thumbprint_sha256` (String) The X509 certificate's SHA256 thumbprint. +- `updated_at` (String) The ISO 8601 formatted date the credential was updated. + + + + +### Nested Schema for `signed_request_object` + +Required: + +- `credentials` (Block List, Min: 1) Client credentials for use with JWT-secured authorization requests. (see [below for nested schema](#nestedblock--signed_request_object--credentials)) + +Optional: + +- `required` (Boolean) Require JWT-secured authorization requests. + + +### Nested Schema for `signed_request_object.credentials` + +Required: + +- `credential_type` (String) Credential type. Supported types: `public_key`. +- `pem` (String) PEM-formatted public key (SPKI and PKCS1) or X509 certificate. Must be JSON escaped. + +Optional: + +- `algorithm` (String) Algorithm which will be used with the credential. Can be one of `RS256`, `RS384`, `PS256`. If not specified, `RS256` will be used. +- `expires_at` (String) The ISO 8601 formatted date representing the expiration of the credential. It is not possible to set this to never expire after it has been set. Recreate the certificate if needed. +- `name` (String) Friendly name for a credential. +- `parse_expiry_from_cert` (Boolean) Parse expiry from x509 certificate. If true, attempts to parse the expiry date from the provided PEM. If also the `expires_at` is set the credential expiry will be set to the explicit `expires_at` value. + +Read-Only: + +- `created_at` (String) The ISO 8601 formatted date the credential was created. +- `id` (String) The ID of the client credential. +- `key_id` (String) The key identifier of the credential, generated on creation. +- `updated_at` (String) The ISO 8601 formatted date the credential was updated. + + + + +### Nested Schema for `tls_client_auth` + +Required: + +- `credentials` (Block List, Min: 1) Credentials that will be enabled on the client for CA-based mTLS authentication. (see [below for nested schema](#nestedblock--tls_client_auth--credentials)) + + +### Nested Schema for `tls_client_auth.credentials` + +Required: + +- `credential_type` (String) Credential type. Supported types: `cert_subject_dn`. + +Optional: + +- `name` (String) Friendly name for a credential. +- `pem` (String) PEM-formatted X509 certificate. Must be JSON escaped. Mutually exlusive with `subject_dn` property. +- `subject_dn` (String) Subject Distinguished Name. Mutually exlusive with `pem` property. + +Read-Only: + +- `created_at` (String) The ISO 8601 formatted date the credential was created. +- `id` (String) The ID of the client credential. +- `updated_at` (String) The ISO 8601 formatted date the credential was updated. + ## Import Import is supported using the following syntax: diff --git a/docs/resources/resource_server.md b/docs/resources/resource_server.md index 6562f257..8a29bd3e 100644 --- a/docs/resources/resource_server.md +++ b/docs/resources/resource_server.md @@ -19,6 +19,29 @@ resource "auth0_resource_server" "my_resource_server" { allow_offline_access = true token_lifetime = 8600 skip_consent_for_verifiable_first_party_clients = true + consent_policy = "transactional-authorization-with-mfa" + token_encryption { + format = "compact-nested-jwe" + encryption_key { + name = "keyname" + algorithm = "RSA-OAEP-256" + pem = <` characters. -- `signing_alg` (String) Algorithm used to sign JWTs. Options include `HS256` and `RS256`. +- `proof_of_possession` (Block List, Max: 1) Configuration settings for proof-of-possession for this resource server. (see [below for nested schema](#nestedblock--proof_of_possession)) +- `signing_alg` (String) Algorithm used to sign JWTs. Options include `HS256`, `RS256`, and `PS256`. - `signing_secret` (String) Secret used to sign tokens when using symmetric algorithms (HS256). - `skip_consent_for_verifiable_first_party_clients` (Boolean) Indicates whether to skip user consent for applications flagged as first party. - `token_dialect` (String) Dialect of access tokens that should be issued for this resource server. Options include `access_token`, `rfc9068_profile`, `access_token_authz`, and `rfc9068_profile_authz`. `access_token` is a JWT containing standard Auth0 claims. `rfc9068_profile` is a JWT conforming to the IETF JWT Access Token Profile. `access_token_authz` is a JWT containing standard Auth0 claims, including RBAC permissions claims. `rfc9068_profile_authz` is a JWT conforming to the IETF JWT Access Token Profile, including RBAC permissions claims. RBAC permissions claims are available if RBAC (`enforce_policies`) is enabled for this API. For more details, refer to [Access Token Profiles](https://auth0.com/docs/secure/tokens/access-tokens/access-token-profiles). +- `token_encryption` (Block List, Max: 1) Configuration for JSON Web Encryption(JWE) of tokens for this resource server. (see [below for nested schema](#nestedblock--token_encryption)) - `token_lifetime` (Number) Number of seconds during which access tokens issued for this resource server from the token endpoint remain valid. - `token_lifetime_for_web` (Number) Number of seconds during which access tokens issued for this resource server via implicit or hybrid flows remain valid. Cannot be greater than the `token_lifetime` value. - `verification_location` (String) URL from which to retrieve JWKs for this resource server. Used for verifying the JWT sent to Auth0 for token introspection. @@ -46,6 +73,47 @@ resource "auth0_resource_server" "my_resource_server" { - `id` (String) The ID of this resource. + +### Nested Schema for `authorization_details` + +Optional: + +- `disable` (Boolean) Disable authorization details. +- `type` (String) Type of authorization details. + + + +### Nested Schema for `proof_of_possession` + +Optional: + +- `disable` (Boolean) Disable proof-of-possession. +- `mechanism` (String) Mechanism used for proof-of-possession. Only `mtls` is supported. +- `required` (Boolean) Indicates whether proof-of-possession is required with this resource server. + + + +### Nested Schema for `token_encryption` + +Optional: + +- `disable` (Boolean) Disable token encryption. +- `encryption_key` (Block List, Max: 1) Authorization details for this resource server. (see [below for nested schema](#nestedblock--token_encryption--encryption_key)) +- `format` (String) Format of the token encryption. Only `compact-nested-jwe` is supported. + + +### Nested Schema for `token_encryption.encryption_key` + +Required: + +- `algorithm` (String) Algorithm used to encrypt the token. +- `pem` (String) PEM-formatted public key. Must be JSON escaped. + +Optional: + +- `kid` (String) Key ID. +- `name` (String) Name of the encryption key. + ## Import Import is supported using the following syntax: diff --git a/docs/resources/tenant.md b/docs/resources/tenant.md index 55159ab5..20dcbccc 100644 --- a/docs/resources/tenant.md +++ b/docs/resources/tenant.md @@ -49,17 +49,21 @@ resource "auth0_tenant" "my_tenant" { ### Optional +- `acr_values_supported` (Set of String) List of supported ACR values. - `allow_organization_name_in_authentication_api` (Boolean) Whether to accept an organization name instead of an ID on auth endpoints. - `allowed_logout_urls` (List of String) URLs that Auth0 may redirect to after logout. - `customize_mfa_in_postlogin_action` (Boolean) Whether to enable flexible factors for MFA in the PostLogin action. - `default_audience` (String) API Audience to use by default for API Authorization flows. This setting is equivalent to appending the audience to every authorization request made to the tenant for every application. - `default_directory` (String) Name of the connection to be used for Password Grant exchanges. Options include `auth0-adldap`, `ad`, `auth0`, `email`, `sms`, `waad`, and `adfs`. - `default_redirection_uri` (String) The default absolute redirection URI. Must be HTTPS or an empty string. +- `disable_acr_values_supported` (Boolean) Disable list of supported ACR values. - `enabled_locales` (List of String) Supported locales for the user interface. The first locale in the list will be used to set the default locale. - `flags` (Block List, Max: 1) Configuration settings for tenant flags. (see [below for nested schema](#nestedblock--flags)) - `friendly_name` (String) Friendly name for the tenant. - `idle_session_lifetime` (Number) Number of hours during which a session can be inactive before the user must log in again. +- `mtls` (Block List, Max: 1) Configuration for mTLS. (see [below for nested schema](#nestedblock--mtls)) - `picture_url` (String) URL of logo to be shown for the tenant. Recommended size is 150px x 150px. If no URL is provided, the Auth0 logo will be used. +- `pushed_authorization_requests_supported` (Boolean) Enable pushed authorization requests. - `sandbox_version` (String) Selected sandbox version for the extensibility environment, which allows you to use custom scripts to extend parts of Auth0's functionality. - `session_cookie` (Block List, Max: 1) Alters behavior of tenant's session cookie. Contains a single `mode` property. (see [below for nested schema](#nestedblock--session_cookie)) - `session_lifetime` (Number) Number of hours during which a session will stay valid. @@ -97,11 +101,21 @@ Optional: - `enable_sso` (Boolean) Flag indicating whether users will not be prompted to confirm log in before SSO redirection. This flag applies to existing tenants only; new tenants have it enforced as true. - `mfa_show_factor_list_on_enrollment` (Boolean) Used to allow users to pick which factor to enroll with from the list of available MFA factors. - `no_disclose_enterprise_connections` (Boolean) Do not Publish Enterprise Connections Information with IdP domains on the lock configuration file. +- `remove_alg_from_jwks` (Boolean) Remove `alg` from jwks(JSON Web Key Sets). - `require_pushed_authorization_requests` (Boolean, Deprecated) This Flag is not supported by the Auth0 Management API and will be removed in the next major release. - `revoke_refresh_token_grant` (Boolean) Delete underlying grant when a refresh token is revoked via the Authentication API. - `use_scope_descriptions_for_consent` (Boolean) Indicates whether to use scope descriptions for consent. + +### Nested Schema for `mtls` + +Optional: + +- `disable` (Boolean) Disable mTLS settings. +- `enable_endpoint_aliases` (Boolean) Enable mTLS endpoint aliases. + + ### Nested Schema for `session_cookie` diff --git a/examples/resources/auth0_client/resource.tf b/examples/resources/auth0_client/resource.tf index 43142a85..ad7f3ebf 100644 --- a/examples/resources/auth0_client/resource.tf +++ b/examples/resources/auth0_client/resource.tf @@ -2,6 +2,7 @@ resource "auth0_client" "my_client" { name = "Application - Acceptance Test" description = "Test Applications Long Description" app_type = "non_interactive" + compliance_level = "none" custom_login_page_on = true is_first_party = true is_token_endpoint_ip_header_trusted = true @@ -10,6 +11,8 @@ resource "auth0_client" "my_client" { allowed_origins = ["https://example.com"] allowed_logout_urls = ["https://example.com"] web_origins = ["https://example.com"] + require_proof_of_possession = false + grant_types = [ "authorization_code", "http://auth0.com/oauth/grant-type/password-realm", diff --git a/examples/resources/auth0_client_credentials/resource.tf b/examples/resources/auth0_client_credentials/resource.tf index 973a438a..8c4af1ae 100644 --- a/examples/resources/auth0_client_credentials/resource.tf +++ b/examples/resources/auth0_client_credentials/resource.tf @@ -49,6 +49,59 @@ EOF } } +# Configuring tls_client_auth as an authentication method with a PEM certificate. +resource "auth0_client_credentials" "test" { + client_id = auth0_client.my_client.id + + authentication_method = "tls_client_auth" + + tls_client_auth { + credentials { + name = "Testing Credentials 1" + credential_type = "cert_subject_dn" + pem = < 0 { + for key, method := range authenticationMethods[0] { + if method != nil { + result = multierror.Append(result, data.Set("authentication_method", key)) + } + result = multierror.Append(result, data.Set(key, method)) + } + } else { + result = multierror.Append( + result, + data.Set("private_key_jwt", nil), + data.Set("tls_client_auth", nil), + data.Set("self_signed_tls_client_auth", nil), + ) + + if client.GetTokenEndpointAuthMethod() == "" { + switch client.GetAppType() { + case "native", "spa": + result = multierror.Append(result, data.Set("authentication_method", "none")) + case "regular_web", "non_interactive": + result = multierror.Append(result, data.Set("authentication_method", "client_secret_post")) + default: + result = multierror.Append(result, data.Set("authentication_method", "client_secret_basic")) + } + } else { + result = multierror.Append(result, data.Set("authentication_method", client.GetTokenEndpointAuthMethod())) + } + } + return result.ErrorOrNil() } + +func flattenClientAuthenticationMethods( + ctx context.Context, + api *management.Management, + data *schema.ResourceData, + isResource bool, + authMethods *management.ClientAuthenticationMethods, +) ([]map[string]interface{}, error) { + if authMethods == nil { + return nil, nil + } + + resultMap := map[string]interface{}{ + "private_key_jwt": nil, + "tls_client_auth": nil, + "self_signed_tls_client_auth": nil, + } + + if authMethods.GetPrivateKeyJWT() != nil { + if credentials, err := flattenCredentials( + ctx, api, data, isResource, "private_key_jwt", + authMethods.GetPrivateKeyJWT().GetCredentials(), + ); err != nil { + return nil, err + } else if credentials != nil { + resultMap["private_key_jwt"] = []interface{}{ + map[string]interface{}{ + "credentials": credentials, + }, + } + } + } + + if authMethods.GetTLSClientAuth() != nil { + if credentials, err := flattenCredentials( + ctx, api, data, isResource, "tls_client_auth", + authMethods.GetTLSClientAuth().GetCredentials(), + ); err != nil { + return nil, err + } else if credentials != nil { + resultMap["tls_client_auth"] = []interface{}{ + map[string]interface{}{ + "credentials": credentials, + }, + } + } + } + + if authMethods.GetSelfSignedTLSClientAuth() != nil { + if credentials, err := flattenCredentials( + ctx, api, data, isResource, "self_signed_tls_client_auth", + authMethods.GetSelfSignedTLSClientAuth().GetCredentials(), + ); err != nil { + return nil, err + } else if credentials != nil { + resultMap["self_signed_tls_client_auth"] = []interface{}{ + map[string]interface{}{ + "credentials": credentials, + }, + } + } + } + + if len(resultMap) == 0 { + return nil, nil + } + + return []map[string]interface{}{resultMap}, nil +} + +func flattenSignedRequestObject( + ctx context.Context, + api *management.Management, + data *schema.ResourceData, + isResource bool, + sro *management.ClientSignedRequestObject, +) ([]interface{}, error) { + if sro == nil { + return nil, nil + } + + if credentials, err := flattenCredentials( + ctx, api, data, isResource, "signed_request_object", + sro.GetCredentials(), + ); err != nil { + return nil, err + } else if credentials != nil { + return []interface{}{ + map[string]interface{}{ + "required": sro.GetRequired(), + "credentials": credentials, + }, + }, nil + } + return nil, nil +} + +func flattenCredentials( + ctx context.Context, + api *management.Management, + data *schema.ResourceData, + isResource bool, + attribute string, + credentials []management.Credential, +) ([]interface{}, error) { + if credentials == nil { + return nil, nil + } + + const timeRFC3339WithMilliseconds = "2006-01-02T15:04:05.000Z07:00" + + stateCredentials := make([]interface{}, 0) + for index, cred := range credentials { + credential, err := api.Client.GetCredential(ctx, data.Id(), cred.GetID()) + if err != nil { + return nil, err + } + + stateCredential := map[string]interface{}{ + "id": credential.GetID(), + "name": credential.GetName(), + "credential_type": credential.GetCredentialType(), + "created_at": credential.GetCreatedAt().Format(timeRFC3339WithMilliseconds), + "updated_at": credential.GetUpdatedAt().Format(timeRFC3339WithMilliseconds), + } + if credential.ExpiresAt != nil { + stateCredential["expires_at"] = credential.GetExpiresAt().Format(timeRFC3339WithMilliseconds) + } + switch credential.GetCredentialType() { + case "public_key": + stateCredential["algorithm"] = credential.GetAlgorithm() + stateCredential["key_id"] = credential.GetKeyID() + + if isResource { + // These ones don't get read back, so we have to get them from the state. + stateCredential["pem"] = data.Get( + fmt.Sprintf("%s.0.credentials.%d.pem", attribute, index), + ) + stateCredential["parse_expiry_from_cert"] = data.Get( + fmt.Sprintf("%s.0.credentials.%d.parse_expiry_from_cert", attribute, index), + ) + } + case "cert_subject_dn": + stateCredential["subject_dn"] = credential.GetSubjectDN() + + if isResource { + // This one doesn't get read back, so we have to get it from the state. + stateCredential["pem"] = data.Get( + fmt.Sprintf("%s.0.credentials.%d.pem", attribute, index), + ) + } + case "x509_cert": + if isResource { + // This one doesn't get read back, so we have to get it from the state. + stateCredential["pem"] = data.Get( + fmt.Sprintf("%s.0.credentials.%d.pem", attribute, index), + ) + } + } + + stateCredentials = append(stateCredentials, stateCredential) + } + + return stateCredentials, nil +} diff --git a/internal/auth0/client/resource.go b/internal/auth0/client/resource.go index d4e0f956..b2729b24 100644 --- a/internal/auth0/client/resource.go +++ b/internal/auth0/client/resource.go @@ -189,9 +189,15 @@ func NewResource() *schema.Resource { Description: "Permissions (scopes) included in JWTs.", }, "alg": { - Type: schema.TypeString, - Optional: true, - Description: "Algorithm used to sign JWTs.", + Type: schema.TypeString, + Optional: true, + ValidateFunc: validation.StringInSlice([]string{ + "HS256", + "RS256", + "PS256", + }, false), + Description: "Algorithm used to sign JWTs. " + + "Can be one of `HS256`, `RS256`, `PS256`.", }, }, }, @@ -1303,6 +1309,19 @@ func NewResource() *schema.Resource { }, }, }, + "compliance_level": { + Type: schema.TypeString, + Optional: true, + ValidateFunc: validation.StringInSlice([]string{"none", "fapi1_adv_pkj_par", "fapi1_adv_mtls_par"}, false), + Default: nil, + Description: "Defines the compliance level for this client, which may restrict it's capabilities. " + + "Can be one of `none`, `fapi1_adv_pkj_par`, `fapi1_adv_mtls_par`.", + }, + "require_proof_of_possession": { + Type: schema.TypeBool, + Optional: true, + Description: "Makes the use of Proof-of-Possession mandatory for this client.", + }, }, } } diff --git a/internal/auth0/client/resource_credentials.go b/internal/auth0/client/resource_credentials.go index 603d330e..3a17d97a 100644 --- a/internal/auth0/client/resource_credentials.go +++ b/internal/auth0/client/resource_credentials.go @@ -5,12 +5,10 @@ import ( "fmt" "io" "net/http" - "strconv" "time" "github.com/auth0/go-auth0/management" "github.com/hashicorp/go-cty/cty" - "github.com/hashicorp/go-multierror" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/validation" @@ -32,25 +30,35 @@ func NewCredentialsResource() *schema.Resource { }, "authentication_method": { Type: schema.TypeString, - Required: true, + Optional: true, + Computed: true, ValidateFunc: validation.StringInSlice([]string{ "none", "client_secret_post", "client_secret_basic", "private_key_jwt", + "tls_client_auth", + "self_signed_tls_client_auth", }, false), Description: "Configure the method to use when making requests to " + "any endpoint that requires this client to authenticate. " + "Options include `none` (public client without a client secret), " + "`client_secret_post` (confidential client using HTTP POST parameters), " + "`client_secret_basic` (confidential client using HTTP Basic), " + - "`private_key_jwt` (confidential client using a Private Key JWT).", + "`private_key_jwt` (confidential client using a Private Key JWT), " + + "`tls_client_auth` (confidential client using CA-based mTLS authentication), " + + "`self_signed_tls_client_auth` (confidential client using mTLS authentication utilizing a self-signed certificate).", }, "client_secret": { Type: schema.TypeString, Optional: true, Computed: true, Sensitive: true, + ConflictsWith: []string{ + "private_key_jwt", + "tls_client_auth", + "self_signed_tls_client_auth", + }, Description: "Secret for the client when using `client_secret_post` or `client_secret_basic` " + "authentication method. Keep this private. To access this attribute you need to add the " + "`read:client_keys` scope to the Terraform client. Otherwise, the attribute will contain an " + @@ -58,9 +66,14 @@ func NewCredentialsResource() *schema.Resource { "as an authentication method.", }, "private_key_jwt": { - Type: schema.TypeList, - MaxItems: 1, - Optional: true, + Type: schema.TypeList, + MaxItems: 1, + Optional: true, + ConflictsWith: []string{ + "client_secret", + "tls_client_auth", + "self_signed_tls_client_auth", + }, Description: "Defines `private_key_jwt` client authentication method.", Elem: &schema.Resource{ Schema: map[string]*schema.Schema{ @@ -146,6 +159,236 @@ func NewCredentialsResource() *schema.Resource { }, }, }, + "tls_client_auth": { + Type: schema.TypeList, + Optional: true, + MaxItems: 1, + ConflictsWith: []string{ + "client_secret", + "private_key_jwt", + "self_signed_tls_client_auth", + }, + Description: "Defines `tls_client_auth` client authentication method.", + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "credentials": { + Type: schema.TypeList, + Required: true, + Description: "Credentials that will be enabled on the client for CA-based mTLS authentication.", + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "id": { + Type: schema.TypeString, + Computed: true, + Description: "The ID of the client credential.", + }, + "name": { + Type: schema.TypeString, + Optional: true, + Description: "Friendly name for a credential.", + }, + "credential_type": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + ValidateFunc: validation.StringInSlice([]string{"cert_subject_dn"}, false), + Description: "Credential type. Supported types: `cert_subject_dn`.", + }, + "subject_dn": { + Type: schema.TypeString, + Optional: true, + ForceNew: true, + Computed: true, + ValidateFunc: validation.StringLenBetween(1, 256), + Description: "Subject Distinguished Name. Mutually exlusive with `pem` property.", + }, + "pem": { + Type: schema.TypeString, + Optional: true, + ForceNew: true, + ValidateFunc: validation.StringLenBetween(1, 4096), + Description: "PEM-formatted X509 certificate. Must be JSON escaped. " + + "Mutually exlusive with `subject_dn` property.", + }, + "created_at": { + Type: schema.TypeString, + Computed: true, + Description: "The ISO 8601 formatted date the credential was created.", + }, + "updated_at": { + Type: schema.TypeString, + Computed: true, + Description: "The ISO 8601 formatted date the credential was updated.", + }, + }, + }, + }, + }, + }, + }, + "self_signed_tls_client_auth": { + Type: schema.TypeList, + Optional: true, + MaxItems: 1, + ConflictsWith: []string{ + "client_secret", + "private_key_jwt", + "tls_client_auth", + }, + Description: "Defines `tls_client_auth` client authentication method.", + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "credentials": { + Type: schema.TypeList, + Required: true, + Description: "Credentials that will be enabled on the client for mTLS " + + "authentication utilizing self-signed certificates.", + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "id": { + Type: schema.TypeString, + Computed: true, + Description: "The ID of the client credential.", + }, + "name": { + Type: schema.TypeString, + Optional: true, + Description: "Friendly name for a credential.", + }, + "credential_type": { + Type: schema.TypeString, + Optional: true, + ForceNew: true, + ValidateFunc: validation.StringInSlice([]string{"x509_cert"}, false), + Description: "Credential type. Supported types: `x509_cert`.", + }, + "pem": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + ValidateFunc: validation.StringLenBetween(1, 4096), + Description: "PEM-formatted X509 certificate. Must be JSON escaped. ", + }, + "thumbprint_sha256": { + Type: schema.TypeString, + Computed: true, + Description: "The X509 certificate's SHA256 thumbprint.", + }, + "created_at": { + Type: schema.TypeString, + Computed: true, + Description: "The ISO 8601 formatted date the credential was created.", + }, + "updated_at": { + Type: schema.TypeString, + Computed: true, + Description: "The ISO 8601 formatted date the credential was updated.", + }, + "expires_at": { + Type: schema.TypeString, + Computed: true, + Description: "The ISO 8601 formatted date representing " + + "the expiration of the credential.", + }, + }, + }, + }, + }, + }, + }, + "signed_request_object": { + Type: schema.TypeList, + MaxItems: 1, + Optional: true, + Description: "Configuration for JWT-secured Authorization Requests(JAR).", + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "required": { + Type: schema.TypeBool, + Optional: true, + Computed: true, + Description: "Require JWT-secured authorization requests.", + }, + "credentials": { + Type: schema.TypeList, + Required: true, + Description: "Client credentials for use with JWT-secured authorization requests.", + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "id": { + Type: schema.TypeString, + Computed: true, + Description: "The ID of the client credential.", + }, + "name": { + Type: schema.TypeString, + Optional: true, + ForceNew: true, + Description: "Friendly name for a credential.", + }, + "key_id": { + Type: schema.TypeString, + Computed: true, + Description: "The key identifier of the credential, generated on creation.", + }, + "credential_type": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + ValidateFunc: validation.StringInSlice([]string{"public_key"}, false), + Description: "Credential type. Supported types: `public_key`.", + }, + "pem": { + Type: schema.TypeString, + Required: true, + ForceNew: true, + Description: "PEM-formatted public key (SPKI and PKCS1) or X509 certificate. " + + "Must be JSON escaped.", + }, + "algorithm": { + Type: schema.TypeString, + Optional: true, + ForceNew: true, + ValidateFunc: validation.StringInSlice([]string{"RS256", "RS384", "PS256"}, false), + Default: "RS256", + Description: "Algorithm which will be used with the credential. " + + "Can be one of `RS256`, `RS384`, `PS256`. If not specified, " + + "`RS256` will be used.", + }, + "parse_expiry_from_cert": { + Type: schema.TypeBool, + Optional: true, + ForceNew: true, + Description: "Parse expiry from x509 certificate. " + + "If true, attempts to parse the expiry date from the provided PEM. " + + "If also the `expires_at` is set the credential expiry will be set to " + + "the explicit `expires_at` value.", + }, + "created_at": { + Type: schema.TypeString, + Computed: true, + Description: "The ISO 8601 formatted date the credential was created.", + }, + "updated_at": { + Type: schema.TypeString, + Computed: true, + Description: "The ISO 8601 formatted date the credential was updated.", + }, + "expires_at": { + Type: schema.TypeString, + Optional: true, + Computed: true, + ValidateFunc: validation.IsRFC3339Time, + Description: "The ISO 8601 formatted date representing " + + "the expiration of the credential. It is not possible to set this to " + + "never expire after it has been set. Recreate the certificate if needed.", + }, + }, + }, + }, + }, + }, + }, }, CreateContext: createClientCredentials, ReadContext: readClientCredentials, @@ -172,22 +415,30 @@ func createClientCredentials(ctx context.Context, data *schema.ResourceData, met data.SetId(clientID) authenticationMethod := data.Get("authentication_method").(string) - switch authenticationMethod { - case "private_key_jwt": - if diagnostics := createPrivateKeyJWTCredentials(ctx, api, data); diagnostics.HasError() { - return diagnostics - } - case "client_secret_post", "client_secret_basic": - if err := updateTokenEndpointAuthMethod(ctx, api, data); err != nil { - return diag.FromErr(err) - } + if len(authenticationMethod) > 0 { + switch authenticationMethod { + case "private_key_jwt", "tls_client_auth", "self_signed_tls_client_auth": + if diagnostics := createAuthenticationMethodCredentials(ctx, api, data, authenticationMethod); diagnostics.HasError() { + return diagnostics + } + case "client_secret_post", "client_secret_basic": + if err := updateTokenEndpointAuthMethod(ctx, api, data); err != nil { + return diag.FromErr(err) + } - if err := updateSecret(ctx, api, data); err != nil { - return diag.FromErr(err) + if err := updateSecret(ctx, api, data); err != nil { + return diag.FromErr(err) + } + case "none": + if err := updateTokenEndpointAuthMethod(ctx, api, data); err != nil { + return diag.FromErr(err) + } } - case "none": - if err := updateTokenEndpointAuthMethod(ctx, api, data); err != nil { - return diag.FromErr(err) + } + if data.GetRawConfig().GetAttr("signed_request_object").LengthInt() > 0 { + diagnostics := createSignedRequestObject(ctx, api, data) + if diagnostics.HasError() { + return diagnostics } } @@ -202,19 +453,7 @@ func readClientCredentials(ctx context.Context, data *schema.ResourceData, meta return diag.FromErr(internalError.HandleAPIError(data, err)) } - privateKeyJWT, err := flattenPrivateKeyJWT(ctx, api, data, client.GetClientAuthenticationMethods()) - if err != nil { - return diag.FromErr(err) - } - - result := multierror.Append( - data.Set("client_id", client.GetClientID()), - data.Set("authentication_method", flattenAuthenticationMethod(client)), - data.Set("client_secret", client.GetClientSecret()), - data.Set("private_key_jwt", privateKeyJWT), - ) - - return diag.FromErr(result.ErrorOrNil()) + return diag.FromErr(flattenClientCredentials(ctx, api, data, client)) } func updateClientCredentials(ctx context.Context, data *schema.ResourceData, meta interface{}) diag.Diagnostics { @@ -227,8 +466,8 @@ func updateClientCredentials(ctx context.Context, data *schema.ResourceData, met authenticationMethod := data.Get("authentication_method").(string) switch authenticationMethod { - case "private_key_jwt": - if diagnostics := modifyPrivateKeyJWTCredentials(ctx, api, data); diagnostics.HasError() { + case "private_key_jwt", "tls_client_auth", "self_signed_tls_client_auth": + if diagnostics := modifyAuthenticationMethodCredentials(ctx, api, data, authenticationMethod); diagnostics.HasError() { return diagnostics } case "client_secret_post", "client_secret_basic": @@ -244,6 +483,12 @@ func updateClientCredentials(ctx context.Context, data *schema.ResourceData, met return diag.FromErr(err) } } + if data.GetRawConfig().GetAttr("signed_request_object").LengthInt() > 0 { + diagnostics := modifySignedRequestObject(ctx, api, data) + if diagnostics.HasError() { + return diagnostics + } + } return readClientCredentials(ctx, data, meta) } @@ -266,14 +511,13 @@ func deleteClientCredentials(ctx context.Context, data *schema.ResourceData, met tokenEndpointAuthMethod = "client_secret_basic" } - authenticationMethod := data.Get("authentication_method").(string) - if authenticationMethod == "private_key_jwt" { - credentials, err := api.Client.ListCredentials(ctx, client.GetClientID()) - if err != nil { - return diag.FromErr(err) - } + credentials, err := api.Client.ListCredentials(ctx, client.GetClientID()) + if err != nil { + return diag.FromErr(err) + } - if err := detachCredentialsFromClient(ctx, api, client.GetClientID(), tokenEndpointAuthMethod); err != nil { + if len(credentials) > 0 { + if err := detachClientCredentials(ctx, api, client.GetClientID(), tokenEndpointAuthMethod); err != nil { return diag.FromErr(err) } @@ -295,8 +539,8 @@ func deleteClientCredentials(ctx context.Context, data *schema.ResourceData, met return nil } -func createPrivateKeyJWTCredentials(ctx context.Context, api *management.Management, data *schema.ResourceData) diag.Diagnostics { - credentials, diagnostics := expandPrivateKeyJWT(data.GetRawConfig()) +func createAuthenticationMethodCredentials(ctx context.Context, api *management.Management, data *schema.ResourceData, authenticationMethod string) diag.Diagnostics { + credentials, diagnostics := expandAuthenticationMethodCredentials(data.GetRawConfig(), authenticationMethod) if diagnostics.HasError() { return diagnostics } @@ -314,13 +558,13 @@ func createPrivateKeyJWTCredentials(ctx context.Context, api *management.Managem }) } - err := attachCredentialsToClient(ctx, api, clientID, credentialsToAttach) + err := attachAuthenticationMethodCredentials(ctx, api, clientID, authenticationMethod, credentialsToAttach) return diag.FromErr(err) } -func modifyPrivateKeyJWTCredentials(ctx context.Context, api *management.Management, data *schema.ResourceData) diag.Diagnostics { - credentials, diagnostics := expandPrivateKeyJWT(data.GetRawConfig()) +func modifyAuthenticationMethodCredentials(ctx context.Context, api *management.Management, data *schema.ResourceData, authenticationMethod string) diag.Diagnostics { + credentials, diagnostics := expandAuthenticationMethodCredentials(data.GetRawConfig(), authenticationMethod) if diagnostics.HasError() { return diagnostics } @@ -328,18 +572,18 @@ func modifyPrivateKeyJWTCredentials(ctx context.Context, api *management.Managem clientID := data.Get("client_id").(string) for index, credential := range credentials { - const configAddress = "private_key_jwt.0.credentials" - if !data.HasChange(fmt.Sprintf("%s.%s", configAddress, strconv.Itoa(index))) { + configAddress := fmt.Sprintf("%s.0.credentials.%d", authenticationMethod, index) + if !data.HasChange(configAddress) { continue } - credentialID := data.Get(fmt.Sprintf("%s.%s.id", configAddress, strconv.Itoa(index))).(string) - stateExpiresAt := data.Get(fmt.Sprintf("%s.%s.expires_at", configAddress, strconv.Itoa(index))).(string) + credentialID := data.Get(fmt.Sprintf("%s.id", configAddress)).(string) + stateExpiresAt := data.Get(fmt.Sprintf("%s.expires_at", configAddress)).(string) if stateExpiresAt == "" { continue } - // We can ignore the error as we have the validation.IsRFC3339Time on this attribute. + // The error can be ignored, the schema validates the type. expiresAt, _ := time.Parse(time.RFC3339, stateExpiresAt) credential.ExpiresAt = &expiresAt @@ -352,39 +596,151 @@ func modifyPrivateKeyJWTCredentials(ctx context.Context, api *management.Managem return nil } +func createSignedRequestObject(ctx context.Context, api *management.Management, data *schema.ResourceData) diag.Diagnostics { + signedRequestObject, diagnostics := expandSignedRequestObject(data.GetRawConfig()) + if diagnostics.HasError() { + return diagnostics + } + + clientID := data.Get("client_id").(string) + + if signedRequestObject.GetCredentials() != nil { + credentialsToAttach := make([]management.Credential, 0) + for _, credential := range signedRequestObject.GetCredentials() { + if err := api.Client.CreateCredential(ctx, clientID, &credential); err != nil { + return diag.FromErr(err) + } + + credentialsToAttach = append(credentialsToAttach, management.Credential{ + ID: credential.ID, + }) + } + + return diag.FromErr(attachSignedRequestObjectCredentials(ctx, api, clientID, signedRequestObject.Required, credentialsToAttach)) + } + + return nil +} + +func modifySignedRequestObject(ctx context.Context, api *management.Management, data *schema.ResourceData) diag.Diagnostics { + signedRequestObject, diagnostics := expandSignedRequestObject(data.GetRawConfig()) + if diagnostics.HasError() { + return diagnostics + } + + clientID := data.Get("client_id").(string) + + if signedRequestObject.GetCredentials() != nil { + for index, credential := range signedRequestObject.GetCredentials() { + configAddress := fmt.Sprintf("signed_request_object.0.credentials.%d", index) + if !data.HasChange(configAddress) { + continue + } + + credentialID := data.Get(fmt.Sprintf("%s.id", configAddress)).(string) + stateExpiresAt := data.Get(fmt.Sprintf("%s.expires_at", configAddress)).(string) + if stateExpiresAt == "" { + continue + } + + // The error can be ignored, the schema validates the type. + expiresAt, _ := time.Parse(time.RFC3339, stateExpiresAt) + credential.ExpiresAt = &expiresAt + + // Limitation: Unable to update the credential to never expire. Needs to get deleted and recreated if needed. + if err := api.Client.UpdateCredential(ctx, clientID, credentialID, &credential); err != nil { + return diag.FromErr(err) + } + } + } + + if data.HasChange("signed_request_object.0.required") { + return diag.FromErr(attachSignedRequestObjectNoCredentials(ctx, api, clientID, signedRequestObject.Required)) + } + + return nil +} + type clientWithAuthMethod struct { ID string `json:"-"` ClientAuthenticationMethods *management.ClientAuthenticationMethods `json:"client_authentication_methods"` TokenEndpointAuthMethod *string `json:"token_endpoint_auth_method"` } -func attachCredentialsToClient(ctx context.Context, api *management.Management, clientID string, credentials []management.Credential) error { +type clientWithSignedRequestObject struct { + ID string `json:"-"` + SignedRequestObject *management.ClientSignedRequestObject `json:"signed_request_object"` +} + +type clientWithAuthMethodAndSignedRequestObject struct { + ID string `json:"-"` + ClientAuthenticationMethods *management.ClientAuthenticationMethods `json:"client_authentication_methods"` + TokenEndpointAuthMethod *string `json:"token_endpoint_auth_method"` + SignedRequestObject *management.ClientSignedRequestObject `json:"signed_request_object"` +} + +func attachAuthenticationMethodCredentials(ctx context.Context, api *management.Management, clientID string, authenticationMethod string, credentials []management.Credential) error { client := clientWithAuthMethod{ + ID: clientID, + ClientAuthenticationMethods: &management.ClientAuthenticationMethods{}, + TokenEndpointAuthMethod: nil, + } + + switch authenticationMethod { + case "private_key_jwt": + client.ClientAuthenticationMethods.PrivateKeyJWT = &management.PrivateKeyJWT{ + Credentials: &credentials, + } + case "tls_client_auth": + client.ClientAuthenticationMethods.TLSClientAuth = &management.TLSClientAuth{ + Credentials: &credentials, + } + case "self_signed_tls_client_auth": + client.ClientAuthenticationMethods.SelfSignedTLSClientAuth = &management.SelfSignedTLSClientAuth{ + Credentials: &credentials, + } + } + + return updateClientInternal(ctx, api, client.ID, client) +} + +func attachSignedRequestObjectCredentials(ctx context.Context, api *management.Management, clientID string, required *bool, credentials []management.Credential) error { + client := clientWithSignedRequestObject{ ID: clientID, - ClientAuthenticationMethods: &management.ClientAuthenticationMethods{ - PrivateKeyJWT: &management.PrivateKeyJWT{ - Credentials: &credentials, - }, + SignedRequestObject: &management.ClientSignedRequestObject{ + Required: required, + Credentials: &credentials, }, - TokenEndpointAuthMethod: nil, } - return updateClientWithAuthMethod(ctx, api, client) + return updateClientInternal(ctx, api, client.ID, client) } -func detachCredentialsFromClient(ctx context.Context, api *management.Management, clientID, tokenEndpointAuthMethod string) error { - client := clientWithAuthMethod{ +func attachSignedRequestObjectNoCredentials(ctx context.Context, api *management.Management, clientID string, required *bool) error { + client := clientWithSignedRequestObject{ + ID: clientID, + SignedRequestObject: &management.ClientSignedRequestObject{ + Required: required, + }, + } + + return updateClientInternal(ctx, api, client.ID, client) +} + +func detachClientCredentials(ctx context.Context, api *management.Management, clientID, tokenEndpointAuthMethod string) error { + client := clientWithAuthMethodAndSignedRequestObject{ ID: clientID, + SignedRequestObject: nil, ClientAuthenticationMethods: nil, // API doesn't accept nil on both of these, so we temporarily set this to a default. TokenEndpointAuthMethod: &tokenEndpointAuthMethod, } - return updateClientWithAuthMethod(ctx, api, client) + return updateClientInternal(ctx, api, client.ID, client) } -func updateClientWithAuthMethod(ctx context.Context, api *management.Management, client clientWithAuthMethod) error { - request, err := api.NewRequest(ctx, http.MethodPatch, api.URI("clients", client.ID), &client) +func updateClientInternal(ctx context.Context, api *management.Management, clientID string, client interface{}) error { + request, err := api.NewRequest(ctx, http.MethodPatch, api.URI("clients", clientID), client) if err != nil { return err } @@ -435,12 +791,12 @@ func updateSecret(ctx context.Context, api *management.Management, data *schema. }) } -func expandPrivateKeyJWT(rawConfig cty.Value) ([]*management.Credential, diag.Diagnostics) { +func expandAuthenticationMethodCredentials(rawConfig cty.Value, authenticationMethod string) ([]*management.Credential, diag.Diagnostics) { credentials := make([]*management.Credential, 0) - rawConfig.GetAttr("private_key_jwt").ForEachElement(func(_ cty.Value, config cty.Value) (stop bool) { + rawConfig.GetAttr(authenticationMethod).ForEachElement(func(_ cty.Value, config cty.Value) (stop bool) { config.GetAttr("credentials").ForEachElement(func(_ cty.Value, config cty.Value) (stop bool) { - credentials = append(credentials, expandClientCredentials(config)) + credentials = append(credentials, expandClientCredential(config)) return stop }) return stop @@ -451,92 +807,83 @@ func expandPrivateKeyJWT(rawConfig cty.Value) ([]*management.Credential, diag.Di diag.Diagnostic{ Severity: diag.Error, Summary: "Client Credentials Missing", - Detail: "You must define client credentials when setting the authentication method as Private Key JWT.", - AttributePath: cty.Path{cty.GetAttrStep{Name: "private_key_jwt.credentials"}}, + Detail: fmt.Sprintf("You must define client credentials when setting the authentication method as %q.", authenticationMethod), + AttributePath: cty.Path{cty.GetAttrStep{Name: fmt.Sprintf("%s.credentials", authenticationMethod)}}, }, } + } else if authenticationMethod == "tls_client_auth" { + for _, credential := range credentials { + if (credential.PEM != nil && credential.SubjectDN != nil) || (credential.PEM == nil && credential.SubjectDN == nil) { + return nil, diag.Diagnostics{ + diag.Diagnostic{ + Severity: diag.Error, + Summary: "Client Credentials Invalid", + Detail: fmt.Sprintf("Exactly one of pem and subject_dn must be set when setting the authentication method as %q.", authenticationMethod), + AttributePath: cty.Path{cty.GetAttrStep{Name: fmt.Sprintf("%s.credentials", authenticationMethod)}}, + }, + } + } + } } return credentials, nil } -func expandClientCredentials(rawConfig cty.Value) *management.Credential { - clientCredential := management.Credential{ - Name: value.String(rawConfig.GetAttr("name")), - CredentialType: value.String(rawConfig.GetAttr("credential_type")), - PEM: value.String(rawConfig.GetAttr("pem")), - Algorithm: value.String(rawConfig.GetAttr("algorithm")), - ParseExpiryFromCert: value.Bool(rawConfig.GetAttr("parse_expiry_from_cert")), +func expandSignedRequestObject(rawConfig cty.Value) (*management.ClientSignedRequestObject, diag.Diagnostics) { + signedRequestObjectConfig := rawConfig.GetAttr("signed_request_object") + if signedRequestObjectConfig.IsNull() { + return nil, nil } - if expiresAt := value.String(rawConfig.GetAttr("expires_at")); expiresAt != nil { - // We can ignore the error as we have the validation.IsRFC3339Time on this attribute. - expiresAt, _ := time.Parse(time.RFC3339, *expiresAt) - clientCredential.ExpiresAt = &expiresAt - } + var signedRequestObject management.ClientSignedRequestObject - return &clientCredential -} + signedRequestObjectConfig.ForEachElement(func(_ cty.Value, config cty.Value) (stop bool) { + credentials := make([]management.Credential, 0) + config.GetAttr("credentials").ForEachElement(func(_ cty.Value, config cty.Value) (stop bool) { + credentials = append(credentials, *expandClientCredential(config)) + return stop + }) + signedRequestObject.Credentials = &credentials + signedRequestObject.Required = value.Bool(config.GetAttr("required")) + return stop + }) -func flattenAuthenticationMethod(client *management.Client) string { - if client.GetTokenEndpointAuthMethod() == "" && client.GetClientAuthenticationMethods() == nil { - switch client.GetAppType() { - case "native", "spa": - return "none" - case "regular_web", "non_interactive": - return "client_secret_post" - default: - return "client_secret_basic" - } + if signedRequestObject == (management.ClientSignedRequestObject{}) { + return nil, nil } - if client.GetTokenEndpointAuthMethod() != "" { - return client.GetTokenEndpointAuthMethod() + if len(*signedRequestObject.Credentials) == 0 { + return nil, diag.Diagnostics{ + diag.Diagnostic{ + Severity: diag.Error, + Summary: "Client Credentials Missing", + Detail: "You must define client credentials when using JWT-secured Authorization Requests.", + AttributePath: cty.Path{cty.GetAttrStep{Name: "signed_request_object.credentials"}}, + }, + } } - return "private_key_jwt" + return &signedRequestObject, nil } -func flattenPrivateKeyJWT( - ctx context.Context, - api *management.Management, - data *schema.ResourceData, - clientAuthMethods *management.ClientAuthenticationMethods, -) ([]interface{}, error) { - if clientAuthMethods == nil { - return nil, nil +func expandClientCredential(rawConfig cty.Value) *management.Credential { + clientCredential := management.Credential{ + Name: value.String(rawConfig.GetAttr("name")), + CredentialType: value.String(rawConfig.GetAttr("credential_type")), } - const timeRFC3339WithMilliseconds = "2006-01-02T15:04:05.000Z07:00" - - stateCredentials := make([]interface{}, 0) - for index, credential := range clientAuthMethods.GetPrivateKeyJWT().GetCredentials() { - credential, err := api.Client.GetCredential(ctx, data.Id(), credential.GetID()) - if err != nil { - return nil, err - } - - stateCredentials = append(stateCredentials, map[string]interface{}{ - "id": credential.GetID(), - "name": credential.GetName(), - "key_id": credential.GetKeyID(), - "credential_type": credential.GetCredentialType(), - "pem": data.Get( - fmt.Sprintf("private_key_jwt.0.credentials.%s.pem", strconv.Itoa(index)), - ), // Doesn't get read back. - "algorithm": credential.GetAlgorithm(), - "parse_expiry_from_cert": data.Get( - fmt.Sprintf("private_key_jwt.0.credentials.%s.parse_expiry_from_cert", strconv.Itoa(index)), - ), // Doesn't get read back. - "created_at": credential.GetCreatedAt().Format(timeRFC3339WithMilliseconds), - "updated_at": credential.GetUpdatedAt().Format(timeRFC3339WithMilliseconds), - "expires_at": credential.GetExpiresAt().Format(timeRFC3339WithMilliseconds), - }) + switch *clientCredential.CredentialType { + case "public_key": + clientCredential.PEM = value.String(rawConfig.GetAttr("pem")) + clientCredential.Algorithm = value.String(rawConfig.GetAttr("algorithm")) + clientCredential.ParseExpiryFromCert = value.Bool(rawConfig.GetAttr("parse_expiry_from_cert")) + clientCredential.ExpiresAt = value.Time(rawConfig.GetAttr("expires_at")) + case "cert_subject_dn": + clientCredential.PEM = value.String(rawConfig.GetAttr("pem")) + clientCredential.SubjectDN = value.String(rawConfig.GetAttr("subject_dn")) + case "x509_cert": + clientCredential.PEM = value.String(rawConfig.GetAttr("pem")) } - return []interface{}{ - map[string]interface{}{ - "credentials": stateCredentials, - }, - }, nil + return &clientCredential } diff --git a/internal/auth0/client/resource_credentials_test.go b/internal/auth0/client/resource_credentials_test.go index 9203c751..230e6da9 100644 --- a/internal/auth0/client/resource_credentials_test.go +++ b/internal/auth0/client/resource_credentials_test.go @@ -13,16 +13,48 @@ import ( "github.com/auth0/terraform-provider-auth0/internal/acctest" ) -const testAccThrowErrorWhenPrivateKeyJWT = ` +const testAccDeletingTheResourceSetsTheTokenEndpointAuthMethodToADefaultOnTheClient = ` +resource "auth0_client" "my_client" { + name = "Acceptance Test - Client Credentials - {{.testName}}" + app_type = "non_interactive" + + jwt_configuration { + alg = "RS256" + } +} +` + +const testAccThrowErrorWhenPrivateKeyJWTNoCredentials = ` resource "auth0_client" "my_client" { name = "Acceptance Test - Client Credentials - {{.testName}}" app_type = "non_interactive" } resource "auth0_client_credentials" "my_client_credentials" { - client_id = auth0_client.my_client.id + client_id = auth0_client.my_client.id + authentication_method = "private_key_jwt" +} +` + +const testAccThrowErrorWhenPrivateKeyJWTWrongCredentialType = ` +resource "auth0_client" "my_client" { + name = "Acceptance Test - Client Credentials - {{.testName}}" + app_type = "non_interactive" +} +resource "auth0_client_credentials" "my_client_credentials" { + client_id = auth0_client.my_client.id authentication_method = "private_key_jwt" + + private_key_jwt { + credentials { + name = "Testing Credentials 1" + credential_type = "cert_subject_dn" + pem = < 0 { + found = true + } + return stop + }) + if disable && found { + result = multierror.Append( + result, + fmt.Errorf("only one of disable and format or encryption_key should be set in the token_encryption blocks"), + ) + } + } + + proofOfPossessionConfig := diff.GetRawConfig().GetAttr("proof_of_possession") + if !proofOfPossessionConfig.IsNull() { + disable := false + found := false + + proofOfPossessionConfig.ForEachElement(func(_ cty.Value, cfg cty.Value) (stop bool) { + if !cfg.GetAttr("disable").IsNull() && cfg.GetAttr("disable").True() { + disable = true + } + if !cfg.GetAttr("mechanism").IsNull() { + found = true + } + if !cfg.GetAttr("required").IsNull() && cfg.GetAttr("required").True() { + found = true + } + return stop + }) + if disable && found { + result = multierror.Append( + result, + fmt.Errorf("only one of disable and mechanism or required should be set in the proof_of_possession block"), + ) + } + } + + return result.ErrorOrNil() +} + +func fixNullableAttributes(ctx context.Context, data *schema.ResourceData, api *management.Management) error { + if isConsentPolicyNull(data) { + if err := api.Request(ctx, http.MethodPatch, api.URI("resource-servers", data.Id()), map[string]interface{}{ + "consent_policy": nil, + }); err != nil { + return err + } + } + + if isAuthorizationDetailsNull(data) { + if err := api.Request(ctx, http.MethodPatch, api.URI("resource-servers", data.Id()), map[string]interface{}{ + "authorization_details": nil, + }); err != nil { + return err + } + } + + if isTokenEncryptionNull(data) { + if err := api.Request(ctx, http.MethodPatch, api.URI("resource-servers", data.Id()), map[string]interface{}{ + "token_encryption": nil, + }); err != nil { + return err + } + } + + if isProofOfPossessionNull(data) { + if err := api.Request(ctx, http.MethodPatch, api.URI("resource-servers", data.Id()), map[string]interface{}{ + "proof_of_possession": nil, + }); err != nil { + return err + } + } + + return nil +} + +func readResourceServer(ctx context.Context, data *schema.ResourceData, meta interface{}) diag.Diagnostics { + api := meta.(*config.Config).GetAPI() + + resourceServer, err := api.ResourceServer.Read(ctx, data.Id()) + if err != nil { return diag.FromErr(internalError.HandleAPIError(data, err)) } - return readResourceServer(ctx, data, meta) + // Ensuring the ID is the resource server ID and not the identifier, + // as both can be used to find a resource server with the Read() func. + data.SetId(resourceServer.GetID()) + + return diag.FromErr(flattenResourceServer(data, resourceServer)) } func deleteResourceServer(ctx context.Context, data *schema.ResourceData, meta interface{}) diag.Diagnostics { diff --git a/internal/auth0/resourceserver/resource_test.go b/internal/auth0/resourceserver/resource_test.go index 57cf661b..51ec5d61 100644 --- a/internal/auth0/resourceserver/resource_test.go +++ b/internal/auth0/resourceserver/resource_test.go @@ -3,9 +3,11 @@ package resourceserver_test import ( "fmt" "os" + "regexp" "testing" "github.com/hashicorp/terraform-plugin-testing/helper/resource" + "github.com/stretchr/testify/require" "github.com/auth0/terraform-provider-auth0/internal/acctest" ) @@ -26,10 +28,123 @@ resource "auth0_resource_server" "my_resource_server" { token_lifetime_for_web = 3600 skip_consent_for_verifiable_first_party_clients = true enforce_policies = false + consent_policy = "null" + authorization_details { + disable = true + } + token_encryption { + disable = true + } + proof_of_possession { + disable = true + } } ` const testAccResourceServerConfigUpdate = ` +resource "auth0_resource_server" "my_resource_server" { + name = "Acceptance Test - {{.testName}}" + identifier = "https://uat.api.terraform-provider-auth0.com/{{.testName}}" + signing_alg = "RS256" + allow_offline_access = false # <--- set to false + token_lifetime = 7200 + token_lifetime_for_web = 3600 + skip_consent_for_verifiable_first_party_clients = true + enforce_policies = false + consent_policy = "transactional-authorization-with-mfa" + authorization_details { + type = "payment" + } + authorization_details { + type = "not-payment" + } + token_encryption { + format = "compact-nested-jwe" + encryption_key { + name = "encryptkey" + algorithm = "RSA-OAEP-256" + pem = < 0 { + result = multierror.Append( + result, + fmt.Errorf("only one of disable_acr_values_supported and acr_values_supported should be set"), + ) + } + } + + mtlsConfig := diff.GetRawConfig().GetAttr("mtls") + if !mtlsConfig.IsNull() { + var disable, enableEndpointAliases *bool + + mtlsConfig.ForEachElement(func(_ cty.Value, cfg cty.Value) (stop bool) { + disable = value.Bool(cfg.GetAttr("disable")) + enableEndpointAliases = value.Bool(cfg.GetAttr("enable_endpoint_aliases")) + return stop + }) + if disable != nil && *disable && enableEndpointAliases != nil && *enableEndpointAliases { + result = multierror.Append( + result, + fmt.Errorf("only one of disable and enable_endpoint_aliases should be set in the mtls block"), + ) + } + } + + return result.ErrorOrNil() +} + func updateTenant(ctx context.Context, data *schema.ResourceData, meta interface{}) diag.Diagnostics { api := meta.(*config.Config).GetAPI() tenant := expandTenant(data) - if err := api.Tenant.Update(ctx, tenant); err != nil { return diag.FromErr(err) } + // These call should NOT be needed, but the tests fail sometimes if it they not there. + time.Sleep(800 * time.Millisecond) + + if isACRValuesSupportedNull(data) { + if err := api.Request(ctx, http.MethodPatch, api.URI("tenants", "settings"), map[string]interface{}{ + "acr_values_supported": nil, + }); err != nil { + return diag.FromErr(err) + } + } + time.Sleep(200 * time.Millisecond) + + if isMTLSConfigurationNull(data) { + if err := api.Request(ctx, http.MethodPatch, api.URI("tenants", "settings"), map[string]interface{}{ + "mtls": nil, + }); err != nil { + return diag.FromErr(err) + } + } + time.Sleep(800 * time.Millisecond) return readTenant(ctx, data, meta) } diff --git a/internal/auth0/tenant/resource_test.go b/internal/auth0/tenant/resource_test.go index 1c796ec2..624c6066 100644 --- a/internal/auth0/tenant/resource_test.go +++ b/internal/auth0/tenant/resource_test.go @@ -2,6 +2,7 @@ package tenant_test import ( "os" + "regexp" "testing" "github.com/hashicorp/terraform-plugin-testing/helper/resource" @@ -9,7 +10,7 @@ import ( "github.com/auth0/terraform-provider-auth0/internal/acctest" ) -func TestAccTenant(t *testing.T) { +func TestAccTenant_Main(t *testing.T) { acctest.Test(t, resource.TestCase{ Steps: []resource.TestStep{ { @@ -40,14 +41,29 @@ func TestAccTenant(t *testing.T) { resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "flags.0.disable_clickjack_protection_headers", "true"), resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "flags.0.enable_public_signup_user_exists_error", "true"), resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "flags.0.use_scope_descriptions_for_consent", "true"), + resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "flags.0.remove_alg_from_jwks", "true"), resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "flags.0.mfa_show_factor_list_on_enrollment", "false"), resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "default_redirection_uri", "https://example.com/login"), resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "session_cookie.0.mode", "non-persistent"), resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "sessions.0.oidc_logout_prompt_enabled", "false"), resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "allow_organization_name_in_authentication_api", "false"), resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "customize_mfa_in_postlogin_action", "false"), + resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "pushed_authorization_requests_supported", "true"), + resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "disable_acr_values_supported", "true"), + resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "acr_values_supported.#", "0"), + resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "mtls.#", "1"), + resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "mtls.0.enable_endpoint_aliases", "true"), + resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "mtls.0.disable", "false"), ), }, + { + Config: acctest.ParseTestName(testAccTenantConfigInvalidACRValuesSupported, t.Name()), + ExpectError: regexp.MustCompile(`only one of disable_acr_values_supported and acr_values_supported should be set`), + }, + { + Config: acctest.ParseTestName(testAccTenantConfigInvalidMTLS, t.Name()), + ExpectError: regexp.MustCompile(`only one of disable and enable_endpoint_aliases should be set in the mtls block`), + }, { Config: testAccTenantConfigUpdate, Check: resource.ComposeTestCheckFunc( @@ -57,6 +73,7 @@ func TestAccTenant(t *testing.T) { resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "flags.0.disable_clickjack_protection_headers", "false"), resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "flags.0.enable_public_signup_user_exists_error", "true"), resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "flags.0.use_scope_descriptions_for_consent", "false"), + resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "flags.0.remove_alg_from_jwks", "false"), resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "flags.0.mfa_show_factor_list_on_enrollment", "true"), resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "allowed_logout_urls.#", "0"), resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "session_cookie.0.mode", "persistent"), @@ -64,6 +81,13 @@ func TestAccTenant(t *testing.T) { resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "sessions.0.oidc_logout_prompt_enabled", "true"), resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "allow_organization_name_in_authentication_api", "true"), resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "customize_mfa_in_postlogin_action", "true"), + resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "pushed_authorization_requests_supported", "false"), + resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "disable_acr_values_supported", "false"), + resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "acr_values_supported.#", "2"), + resource.TestCheckTypeSetElemAttr("auth0_tenant.my_tenant", "acr_values_supported.*", "foo"), + resource.TestCheckTypeSetElemAttr("auth0_tenant.my_tenant", "acr_values_supported.*", "bar"), + resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "mtls.#", "1"), + resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "mtls.0.disable", "true"), ), }, { @@ -77,6 +101,9 @@ func TestAccTenant(t *testing.T) { resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "flags.0.use_scope_descriptions_for_consent", "false"), resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "allowed_logout_urls.#", "0"), resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "session_cookie.0.mode", "persistent"), + resource.TestCheckResourceAttr("auth0_tenant.my_tenant", "acr_values_supported.#", "2"), + resource.TestCheckTypeSetElemAttr("auth0_tenant.my_tenant", "acr_values_supported.*", "foo"), + resource.TestCheckTypeSetElemAttr("auth0_tenant.my_tenant", "acr_values_supported.*", "bar"), ), }, }, @@ -86,6 +113,7 @@ func TestAccTenant(t *testing.T) { // TestAccTenant_EnableSSO tests the enable_sso flag. This test is added separately because it can only be tested on existing tenants. // For new tenants, this flag is always set to true. func TestAccTenant_EnableSSO(t *testing.T) { + t.Skip() // I have no tenants on which this works now. acctest.Test(t, resource.TestCase{ Steps: []resource.TestStep{ { @@ -115,6 +143,8 @@ func TestAccTenant_EnableSSO(t *testing.T) { }) } +const testAccEmptyTenant = `resource "auth0_tenant" "my_tenant" {}` + const testAccTenantEnableSSOConfigCreate = ` resource "auth0_tenant" "my_tenant" { flags { @@ -133,26 +163,29 @@ resource "auth0_tenant" "my_tenant" { const testAccTenantConfigCreate = ` resource "auth0_tenant" "my_tenant" { - default_directory = "" - default_audience = "" - friendly_name = "My Test Tenant" - picture_url = "https://mycompany.org/logo.png" - support_email = "support@mycompany.org" - support_url = "https://mycompany.org/support" - default_redirection_uri = "https://example.com/login" - allowed_logout_urls = [ "https://mycompany.org/logoutCallback" ] - session_lifetime = 720 - sandbox_version = "16" - idle_session_lifetime = 72 - enabled_locales = ["en", "de", "fr"] + default_directory = "" + default_audience = "" + friendly_name = "My Test Tenant" + picture_url = "https://mycompany.org/logo.png" + support_email = "support@mycompany.org" + support_url = "https://mycompany.org/support" + default_redirection_uri = "https://example.com/login" + allowed_logout_urls = [ "https://mycompany.org/logoutCallback" ] + session_lifetime = 720 + sandbox_version = "16" + idle_session_lifetime = 72 + enabled_locales = ["en", "de", "fr"] + disable_acr_values_supported = true allow_organization_name_in_authentication_api = false - customize_mfa_in_postlogin_action = false + customize_mfa_in_postlogin_action = false + pushed_authorization_requests_supported = true flags { disable_clickjack_protection_headers = true enable_public_signup_user_exists_error = true use_scope_descriptions_for_consent = true + remove_alg_from_jwks = true no_disclose_enterprise_connections = false disable_management_api_sms_obfuscation = false disable_fields_map_fix = false @@ -166,31 +199,126 @@ resource "auth0_tenant" "my_tenant" { sessions { oidc_logout_prompt_enabled = false } + + mtls { + enable_endpoint_aliases = true + } +} +` + +const testAccTenantConfigInvalidACRValuesSupported = ` +resource "auth0_tenant" "my_tenant" { + default_directory = "" + default_audience = "" + friendly_name = "My Test Tenant" + picture_url = "https://mycompany.org/logo.png" + support_email = "support@mycompany.org" + support_url = "https://mycompany.org/support" + default_redirection_uri = "https://example.com/login" + allowed_logout_urls = [ "https://mycompany.org/logoutCallback" ] + session_lifetime = 720 + sandbox_version = "16" + idle_session_lifetime = 72 + enabled_locales = ["en", "de", "fr"] + disable_acr_values_supported = true + acr_values_supported = ["foo", "bar"] + + allow_organization_name_in_authentication_api = false + customize_mfa_in_postlogin_action = false + pushed_authorization_requests_supported = true + + flags { + disable_clickjack_protection_headers = true + enable_public_signup_user_exists_error = true + use_scope_descriptions_for_consent = true + remove_alg_from_jwks = true + no_disclose_enterprise_connections = false + disable_management_api_sms_obfuscation = false + disable_fields_map_fix = false + mfa_show_factor_list_on_enrollment = false + } + + session_cookie { + mode = "non-persistent" + } + + sessions { + oidc_logout_prompt_enabled = false + } +} +` + +const testAccTenantConfigInvalidMTLS = ` +resource "auth0_tenant" "my_tenant" { + default_directory = "" + default_audience = "" + friendly_name = "My Test Tenant" + picture_url = "https://mycompany.org/logo.png" + support_email = "support@mycompany.org" + support_url = "https://mycompany.org/support" + default_redirection_uri = "https://example.com/login" + allowed_logout_urls = [ "https://mycompany.org/logoutCallback" ] + session_lifetime = 720 + sandbox_version = "16" + idle_session_lifetime = 72 + enabled_locales = ["en", "de", "fr"] + disable_acr_values_supported = true + + allow_organization_name_in_authentication_api = false + customize_mfa_in_postlogin_action = false + pushed_authorization_requests_supported = true + + flags { + disable_clickjack_protection_headers = true + enable_public_signup_user_exists_error = true + use_scope_descriptions_for_consent = true + remove_alg_from_jwks = true + no_disclose_enterprise_connections = false + disable_management_api_sms_obfuscation = false + disable_fields_map_fix = false + mfa_show_factor_list_on_enrollment = false + } + + session_cookie { + mode = "non-persistent" + } + + sessions { + oidc_logout_prompt_enabled = false + } + + mtls { + enable_endpoint_aliases = true + disable = true + } } ` const testAccTenantConfigUpdate = ` resource "auth0_tenant" "my_tenant" { - default_directory = "" - default_redirection_uri = "" - friendly_name = "My Test Tenant" - picture_url = "https://mycompany.org/logo.png" - support_email = "support@mycompany.org" - support_url = "https://mycompany.org/support" - allowed_logout_urls = [] - session_lifetime = 720 - sandbox_version = "16" - idle_session_lifetime = 72 - enabled_locales = ["de", "fr"] + default_directory = "" + default_redirection_uri = "" + friendly_name = "My Test Tenant" + picture_url = "https://mycompany.org/logo.png" + support_email = "support@mycompany.org" + support_url = "https://mycompany.org/support" + allowed_logout_urls = [] + session_lifetime = 720 + sandbox_version = "16" + idle_session_lifetime = 72 + enabled_locales = ["de", "fr"] + acr_values_supported = ["foo", "bar"] allow_organization_name_in_authentication_api = true - customize_mfa_in_postlogin_action = true + customize_mfa_in_postlogin_action = true + pushed_authorization_requests_supported = false flags { enable_public_signup_user_exists_error = true disable_clickjack_protection_headers = false # <---- disable and test use_scope_descriptions_for_consent = false no_disclose_enterprise_connections = false + remove_alg_from_jwks = false disable_management_api_sms_obfuscation = true disable_fields_map_fix = true mfa_show_factor_list_on_enrollment = true @@ -203,15 +331,17 @@ resource "auth0_tenant" "my_tenant" { sessions { oidc_logout_prompt_enabled = true } + mtls { + disable = true + } } ` -const testAccEmptyTenant = `resource "auth0_tenant" "my_tenant" {}` - func TestAccTenantDefaults(t *testing.T) { if os.Getenv("AUTH0_DOMAIN") != acctest.RecordingsDomain { // Only run with recorded HTTP requests because normal E2E tests will naturally configure the tenant // and this test will only pass when the tenant has not been configured yet (aka "fresh" tenants). + // In this test, just re-recording it should work, although you may need to comment out the `t.Skip()`. t.Skip() } diff --git a/internal/value/value.go b/internal/value/value.go index c4b9d061..95d7fe93 100644 --- a/internal/value/value.go +++ b/internal/value/value.go @@ -7,6 +7,8 @@ package value import ( + "time" + "github.com/hashicorp/go-cty/cty" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/structure" @@ -57,6 +59,21 @@ func Float64(rawValue cty.Value) *float64 { return &value } +// Time evaluates the typed value of the value +// and coerces to a pointer of a string, which +// is then converted to a `time.Time` according +// to ISO 3339 (ISO 8601 is largely the same in +// common use cases, see https://ijmacd.github.io/rfc3339-iso8601/ +// for differences). +func Time(rawValue cty.Value) *time.Time { + if rawValue.IsNull() { + return nil + } + + value, _ := time.Parse(time.RFC3339, rawValue.AsString()) + return &value +} + // Strings evaluates the typed value of the value // and coerces to a pointer of a slice of strings. func Strings(rawValues cty.Value) *[]string { diff --git a/internal/value/value_test.go b/internal/value/value_test.go index 2bcd4560..a87f25bd 100644 --- a/internal/value/value_test.go +++ b/internal/value/value_test.go @@ -4,6 +4,7 @@ import ( "encoding/json" "math" "testing" + "time" "github.com/hashicorp/go-cty/cty" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" @@ -106,6 +107,25 @@ func TestFloat64(t *testing.T) { }) } +// Time evaluates the typed value of the value +// and coerces to a pointer of a string, which +// is then converted to a `time.Time` according +// to ISO 3339 (ISO 8601 is largely the same in +// common use cases, see https://ijmacd.github.io/rfc3339-iso8601/ +// for differences). +func TestTime(t *testing.T) { + t.Run("it returns nil when given a null value", func(t *testing.T) { + actual := Time(cty.NullVal(cty.String)) + assert.Nil(t, actual) + }) + + t.Run("it returns the correct Time when given a correctly formatted string", func(t *testing.T) { + checkTime, _ := time.Parse(time.RFC3339, "2024-09-06T20:00:00Z") + actual := Time(cty.StringVal("2024-09-06T20:00:00Z")) + assert.Equal(t, checkTime, *actual) + }) +} + func TestStrings(t *testing.T) { t.Run("it returns nil when given a null value", func(t *testing.T) { actual := Strings(cty.NilVal) diff --git a/test/data/recordings/TestAccAllowUpdatingTheClientSecret.yaml b/test/data/recordings/TestAccAllowUpdatingTheClientSecret.yaml index f372c941..2f3596be 100644 --- a/test/data/recordings/TestAccAllowUpdatingTheClientSecret.yaml +++ b/test/data/recordings/TestAccAllowUpdatingTheClientSecret.yaml @@ -6,20 +6,20 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 98 + content_length: 148 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"name":"Acceptance Test - Client Credentials With Secret Rotation","app_type":"non_interactive"} + {"name":"Acceptance Test - Client Credentials With Secret Rotation","app_type":"non_interactive","token_endpoint_auth_method":"client_secret_post"} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/latest + - Go-Auth0/1.9.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients method: POST response: @@ -30,33 +30,32 @@ interactions: trailer: {} content_length: -1 uncompressed: false - body: '{"name":"Acceptance Test - Client Credentials With Secret Rotation","client_id":"F1b9w2ByGOOOMZ2ocQ76K5jjM2VqMUCk","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - Client Credentials With Secret Rotation","client_id":"tXObxxumnvL9Yy47AplBTdqKOwMhqBIJ","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 267.793417ms + duration: 278.027333ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/F1b9w2ByGOOOMZ2ocQ76K5jjM2VqMUCk + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tXObxxumnvL9Yy47AplBTdqKOwMhqBIJ method: GET response: proto: HTTP/2.0 @@ -66,33 +65,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials With Secret Rotation","client_id":"F1b9w2ByGOOOMZ2ocQ76K5jjM2VqMUCk","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - Client Credentials With Secret Rotation","client_id":"tXObxxumnvL9Yy47AplBTdqKOwMhqBIJ","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.007667ms + duration: 162.721792ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/F1b9w2ByGOOOMZ2ocQ76K5jjM2VqMUCk?fields=client_id&include_fields=true + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tXObxxumnvL9Yy47AplBTdqKOwMhqBIJ?fields=client_id&include_fields=true method: GET response: proto: HTTP/2.0 @@ -102,13 +100,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"F1b9w2ByGOOOMZ2ocQ76K5jjM2VqMUCk","signing_keys":[{"cert":"[REDACTED]"}]}' + body: '{"client_id":"tXObxxumnvL9Yy47AplBTdqKOwMhqBIJ","signing_keys":[{"cert":"[REDACTED]"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 89.899375ms + duration: 153.515917ms - id: 3 request: proto: HTTP/1.1 @@ -127,8 +125,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/F1b9w2ByGOOOMZ2ocQ76K5jjM2VqMUCk + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tXObxxumnvL9Yy47AplBTdqKOwMhqBIJ method: PATCH response: proto: HTTP/2.0 @@ -138,13 +136,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials With Secret Rotation","client_id":"F1b9w2ByGOOOMZ2ocQ76K5jjM2VqMUCk","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - Client Credentials With Secret Rotation","client_id":"tXObxxumnvL9Yy47AplBTdqKOwMhqBIJ","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.303333ms + duration: 182.864042ms - id: 4 request: proto: HTTP/1.1 @@ -163,8 +161,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/F1b9w2ByGOOOMZ2ocQ76K5jjM2VqMUCk + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tXObxxumnvL9Yy47AplBTdqKOwMhqBIJ method: PATCH response: proto: HTTP/2.0 @@ -174,33 +172,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials With Secret Rotation","client_id":"F1b9w2ByGOOOMZ2ocQ76K5jjM2VqMUCk","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - Client Credentials With Secret Rotation","client_id":"tXObxxumnvL9Yy47AplBTdqKOwMhqBIJ","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.43075ms + duration: 159.720916ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/F1b9w2ByGOOOMZ2ocQ76K5jjM2VqMUCk + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tXObxxumnvL9Yy47AplBTdqKOwMhqBIJ method: GET response: proto: HTTP/2.0 @@ -210,33 +207,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"F1b9w2ByGOOOMZ2ocQ76K5jjM2VqMUCk","client_secret":"LUFqPx+sRLjbL7peYRPFmFu-bbvE7u7og4YUNe_C345=683341","signing_keys":[{"cert":"[REDACTED]"}],"token_endpoint_auth_method":"client_secret_post"}' + body: '{"name":"Acceptance Test - Client Credentials With Secret Rotation","client_id":"tXObxxumnvL9Yy47AplBTdqKOwMhqBIJ","client_secret":"LUFqPx+sRLjbL7peYRPFmFu-bbvE7u7og4YUNe_C345=683341","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 168.5205ms + duration: 148.234417ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/F1b9w2ByGOOOMZ2ocQ76K5jjM2VqMUCk + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tXObxxumnvL9Yy47AplBTdqKOwMhqBIJ method: GET response: proto: HTTP/2.0 @@ -246,33 +242,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials With Secret Rotation","client_id":"F1b9w2ByGOOOMZ2ocQ76K5jjM2VqMUCk","client_secret":"LUFqPx+sRLjbL7peYRPFmFu-bbvE7u7og4YUNe_C345=683341","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - Client Credentials With Secret Rotation","client_id":"tXObxxumnvL9Yy47AplBTdqKOwMhqBIJ","client_secret":"LUFqPx+sRLjbL7peYRPFmFu-bbvE7u7og4YUNe_C345=683341","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 89.328166ms + duration: 143.254791ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/F1b9w2ByGOOOMZ2ocQ76K5jjM2VqMUCk + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tXObxxumnvL9Yy47AplBTdqKOwMhqBIJ method: GET response: proto: HTTP/2.0 @@ -282,33 +277,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"F1b9w2ByGOOOMZ2ocQ76K5jjM2VqMUCk","client_secret":"LUFqPx+sRLjbL7peYRPFmFu-bbvE7u7og4YUNe_C345=683341","signing_keys":[{"cert":"[REDACTED]"}],"token_endpoint_auth_method":"client_secret_post"}' + body: '{"name":"Acceptance Test - Client Credentials With Secret Rotation","client_id":"tXObxxumnvL9Yy47AplBTdqKOwMhqBIJ","client_secret":"LUFqPx+sRLjbL7peYRPFmFu-bbvE7u7og4YUNe_C345=683341","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 93.119291ms + duration: 155.22375ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/F1b9w2ByGOOOMZ2ocQ76K5jjM2VqMUCk?fields=client_id%2Capp_type&include_fields=true + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tXObxxumnvL9Yy47AplBTdqKOwMhqBIJ?fields=client_id%2Capp_type&include_fields=true method: GET response: proto: HTTP/2.0 @@ -318,14 +312,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"F1b9w2ByGOOOMZ2ocQ76K5jjM2VqMUCk","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + body: '{"client_id":"tXObxxumnvL9Yy47AplBTdqKOwMhqBIJ","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.750292ms + duration: 146.54525ms - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tXObxxumnvL9Yy47AplBTdqKOwMhqBIJ/credentials?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2 + uncompressed: false + body: '[]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 159.85975ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -343,8 +372,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/F1b9w2ByGOOOMZ2ocQ76K5jjM2VqMUCk + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tXObxxumnvL9Yy47AplBTdqKOwMhqBIJ method: PATCH response: proto: HTTP/2.0 @@ -354,14 +383,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials With Secret Rotation","client_id":"F1b9w2ByGOOOMZ2ocQ76K5jjM2VqMUCk","client_secret":"LUFqPx+sRLjbL7peYRPFmFu-bbvE7u7og4YUNe_C345=683341","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - Client Credentials With Secret Rotation","client_id":"tXObxxumnvL9Yy47AplBTdqKOwMhqBIJ","client_secret":"LUFqPx+sRLjbL7peYRPFmFu-bbvE7u7og4YUNe_C345=683341","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.332042ms - - id: 10 + duration: 158.111917ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -378,8 +407,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/F1b9w2ByGOOOMZ2ocQ76K5jjM2VqMUCk + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tXObxxumnvL9Yy47AplBTdqKOwMhqBIJ method: DELETE response: proto: HTTP/2.0 @@ -395,4 +424,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 160.624958ms + duration: 216.899208ms diff --git a/test/data/recordings/TestAccClientAuthenticationMethods.yaml b/test/data/recordings/TestAccClientAuthenticationMethodsPrivateKeyJWT.yaml similarity index 63% rename from test/data/recordings/TestAccClientAuthenticationMethods.yaml rename to test/data/recordings/TestAccClientAuthenticationMethodsPrivateKeyJWT.yaml index 844ccf8d..3dc40cda 100644 --- a/test/data/recordings/TestAccClientAuthenticationMethods.yaml +++ b/test/data/recordings/TestAccClientAuthenticationMethodsPrivateKeyJWT.yaml @@ -6,20 +6,20 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 164 + content_length: 177 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","app_type":"non_interactive","token_endpoint_auth_method":"client_secret_post"} + {"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","app_type":"non_interactive","token_endpoint_auth_method":"client_secret_post"} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 + - Go-Auth0/1.9.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients method: POST response: @@ -30,13 +30,13 @@ interactions: trailer: {} content_length: -1 uncompressed: false - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 444.361667ms + duration: 313.444167ms - id: 1 request: proto: HTTP/1.1 @@ -54,8 +54,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -65,13 +65,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.099834ms + duration: 149.244792ms - id: 2 request: proto: HTTP/1.1 @@ -89,8 +89,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj?fields=client_id&include_fields=true + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4?fields=client_id&include_fields=true method: GET response: proto: HTTP/2.0 @@ -100,13 +100,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","signing_keys":[{"cert":"[REDACTED]"}]}' + body: '{"client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","signing_keys":[{"cert":"[REDACTED]"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 272.156167ms + duration: 153.503375ms - id: 3 request: proto: HTTP/1.1 @@ -124,8 +124,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -135,13 +135,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 218.999291ms + duration: 162.181959ms - id: 4 request: proto: HTTP/1.1 @@ -159,8 +159,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -170,13 +170,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 261.66675ms + duration: 166.172333ms - id: 5 request: proto: HTTP/1.1 @@ -194,8 +194,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj?fields=client_id%2Capp_type&include_fields=true + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4?fields=client_id%2Capp_type&include_fields=true method: GET response: proto: HTTP/2.0 @@ -205,13 +205,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + body: '{"client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 196.853334ms + duration: 143.536375ms - id: 6 request: proto: HTTP/1.1 @@ -229,8 +229,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials?include_totals=true&per_page=50 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -246,27 +246,27 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 136.606167ms + duration: 143.029833ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 89 + content_length: 52 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"client_authentication_methods":null,"token_endpoint_auth_method":"client_secret_post"} + {"token_endpoint_auth_method":"client_secret_post"} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: PATCH response: proto: HTTP/2.0 @@ -276,33 +276,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 133.108334ms + duration: 146.992334ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 150 + content_length: 163 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","app_type":"non_interactive","jwt_configuration":{"alg":"RS256"}} + {"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","app_type":"non_interactive","jwt_configuration":{"alg":"RS256"}} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: PATCH response: proto: HTTP/2.0 @@ -312,13 +312,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 523.469709ms + duration: 160.082625ms - id: 9 request: proto: HTTP/1.1 @@ -336,8 +336,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -347,13 +347,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 167.823459ms + duration: 163.202709ms - id: 10 request: proto: HTTP/1.1 @@ -371,8 +371,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj?fields=client_id&include_fields=true + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4?fields=client_id&include_fields=true method: GET response: proto: HTTP/2.0 @@ -382,13 +382,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","signing_keys":[{"cert":"[REDACTED]"}]}' + body: '{"client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","signing_keys":[{"cert":"[REDACTED]"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.18925ms + duration: 137.986625ms - id: 11 request: proto: HTTP/1.1 @@ -407,8 +407,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials method: POST response: proto: HTTP/2.0 @@ -418,13 +418,13 @@ interactions: trailer: {} content_length: 284 uncompressed: false - body: '{"id":"cred_2rSgjw4zHnbvEFSYU7fuaF","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-08T21:38:22.525Z","updated_at":"2024-08-08T21:38:22.525Z","expires_at":"2033-05-13T09:33:13.000Z"}' + body: '{"id":"cred_nMsqDxqiEe4jTEE7dzVXZL","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:17:24.928Z","updated_at":"2024-08-30T19:17:24.928Z","expires_at":"2033-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 165.412416ms + duration: 143.617125ms - id: 12 request: proto: HTTP/1.1 @@ -437,14 +437,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_2rSgjw4zHnbvEFSYU7fuaF"}]}},"token_endpoint_auth_method":null} + {"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_nMsqDxqiEe4jTEE7dzVXZL"}]}},"token_endpoint_auth_method":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: PATCH response: proto: HTTP/2.0 @@ -454,13 +454,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_2rSgjw4zHnbvEFSYU7fuaF"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_nMsqDxqiEe4jTEE7dzVXZL"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 170.9225ms + duration: 163.313875ms - id: 13 request: proto: HTTP/1.1 @@ -478,8 +478,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -489,13 +489,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_2rSgjw4zHnbvEFSYU7fuaF"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_nMsqDxqiEe4jTEE7dzVXZL"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 106.457917ms + duration: 147.850167ms - id: 14 request: proto: HTTP/1.1 @@ -513,8 +513,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_2rSgjw4zHnbvEFSYU7fuaF + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_nMsqDxqiEe4jTEE7dzVXZL method: GET response: proto: HTTP/2.0 @@ -524,13 +524,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_2rSgjw4zHnbvEFSYU7fuaF","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-08T21:38:22.525Z","updated_at":"2024-08-08T21:38:22.525Z","expires_at":"2033-05-13T09:33:13.000Z"}' + body: '{"id":"cred_nMsqDxqiEe4jTEE7dzVXZL","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:17:24.928Z","updated_at":"2024-08-30T19:17:24.928Z","expires_at":"2033-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.505875ms + duration: 132.1655ms - id: 15 request: proto: HTTP/1.1 @@ -548,8 +548,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -559,13 +559,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_2rSgjw4zHnbvEFSYU7fuaF"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_nMsqDxqiEe4jTEE7dzVXZL"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.477ms + duration: 148.58875ms - id: 16 request: proto: HTTP/1.1 @@ -583,8 +583,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -594,13 +594,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_2rSgjw4zHnbvEFSYU7fuaF"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_nMsqDxqiEe4jTEE7dzVXZL"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 221.511208ms + duration: 201.389083ms - id: 17 request: proto: HTTP/1.1 @@ -618,8 +618,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_2rSgjw4zHnbvEFSYU7fuaF + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_nMsqDxqiEe4jTEE7dzVXZL method: GET response: proto: HTTP/2.0 @@ -629,13 +629,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_2rSgjw4zHnbvEFSYU7fuaF","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-08T21:38:22.525Z","updated_at":"2024-08-08T21:38:22.525Z","expires_at":"2033-05-13T09:33:13.000Z"}' + body: '{"id":"cred_nMsqDxqiEe4jTEE7dzVXZL","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:17:24.928Z","updated_at":"2024-08-30T19:17:24.928Z","expires_at":"2033-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.666458ms + duration: 145.060125ms - id: 18 request: proto: HTTP/1.1 @@ -653,8 +653,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -664,13 +664,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_2rSgjw4zHnbvEFSYU7fuaF"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_nMsqDxqiEe4jTEE7dzVXZL"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 129.229959ms + duration: 142.112791ms - id: 19 request: proto: HTTP/1.1 @@ -688,8 +688,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -699,13 +699,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_2rSgjw4zHnbvEFSYU7fuaF"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_nMsqDxqiEe4jTEE7dzVXZL"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.865ms + duration: 140.511417ms - id: 20 request: proto: HTTP/1.1 @@ -723,8 +723,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_2rSgjw4zHnbvEFSYU7fuaF + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_nMsqDxqiEe4jTEE7dzVXZL method: GET response: proto: HTTP/2.0 @@ -734,13 +734,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_2rSgjw4zHnbvEFSYU7fuaF","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-08T21:38:22.525Z","updated_at":"2024-08-08T21:38:22.525Z","expires_at":"2033-05-13T09:33:13.000Z"}' + body: '{"id":"cred_nMsqDxqiEe4jTEE7dzVXZL","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:17:24.928Z","updated_at":"2024-08-30T19:17:24.928Z","expires_at":"2033-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.653166ms + duration: 144.6395ms - id: 21 request: proto: HTTP/1.1 @@ -758,8 +758,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj?fields=client_id%2Capp_type&include_fields=true + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4?fields=client_id%2Capp_type&include_fields=true method: GET response: proto: HTTP/2.0 @@ -769,13 +769,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + body: '{"client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.464459ms + duration: 139.244459ms - id: 22 request: proto: HTTP/1.1 @@ -793,8 +793,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials?include_totals=true&per_page=50 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -804,33 +804,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"id":"cred_2rSgjw4zHnbvEFSYU7fuaF","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-08T21:38:22.525Z","updated_at":"2024-08-08T21:38:22.525Z","expires_at":"2033-05-13T09:33:13.000Z"}]' + body: '[{"id":"cred_nMsqDxqiEe4jTEE7dzVXZL","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:17:24.928Z","updated_at":"2024-08-30T19:17:24.928Z","expires_at":"2033-05-13T09:33:13.000Z"}]' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.475625ms + duration: 132.457ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 89 + content_length: 118 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"client_authentication_methods":null,"token_endpoint_auth_method":"client_secret_post"} + {"client_authentication_methods":null,"token_endpoint_auth_method":"client_secret_post","signed_request_object":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: PATCH response: proto: HTTP/2.0 @@ -840,13 +840,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.526917ms + duration: 155.409ms - id: 24 request: proto: HTTP/1.1 @@ -864,8 +864,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_2rSgjw4zHnbvEFSYU7fuaF + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_nMsqDxqiEe4jTEE7dzVXZL method: DELETE response: proto: HTTP/2.0 @@ -881,7 +881,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 119.544667ms + duration: 140.455875ms - id: 25 request: proto: HTTP/1.1 @@ -899,8 +899,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj?fields=client_id&include_fields=true + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4?fields=client_id&include_fields=true method: GET response: proto: HTTP/2.0 @@ -910,13 +910,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","signing_keys":[{"cert":"[REDACTED]"}]}' + body: '{"client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","signing_keys":[{"cert":"[REDACTED]"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.228917ms + duration: 152.221375ms - id: 26 request: proto: HTTP/1.1 @@ -935,8 +935,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials method: POST response: proto: HTTP/2.0 @@ -946,13 +946,13 @@ interactions: trailer: {} content_length: 284 uncompressed: false - body: '{"id":"cred_qifzsx1qZVFdiEoXpa71FP","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-08T21:38:25.388Z","updated_at":"2024-08-08T21:38:25.388Z","expires_at":"2033-05-13T09:33:13.000Z"}' + body: '{"id":"cred_8sAeiZH49E26eF1wjRkosP","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:17:34.581Z","updated_at":"2024-08-30T19:17:34.581Z","expires_at":"2033-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 123.486041ms + duration: 156.78825ms - id: 27 request: proto: HTTP/1.1 @@ -971,8 +971,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials method: POST response: proto: HTTP/2.0 @@ -982,13 +982,13 @@ interactions: trailer: {} content_length: 284 uncompressed: false - body: '{"id":"cred_2owc7YazYLcCyHJCSam1R1","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-08T21:38:25.508Z","updated_at":"2024-08-08T21:38:25.508Z","expires_at":"2025-05-13T09:33:13.000Z"}' + body: '{"id":"cred_cKEXoyJ2TgU3aPPK32Sku4","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:17:34.812Z","updated_at":"2024-08-30T19:17:34.812Z","expires_at":"2025-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 119.613083ms + duration: 228.459167ms - id: 28 request: proto: HTTP/1.1 @@ -1001,14 +1001,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_qifzsx1qZVFdiEoXpa71FP"},{"id":"cred_2owc7YazYLcCyHJCSam1R1"}]}},"token_endpoint_auth_method":null} + {"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_8sAeiZH49E26eF1wjRkosP"},{"id":"cred_cKEXoyJ2TgU3aPPK32Sku4"}]}},"token_endpoint_auth_method":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: PATCH response: proto: HTTP/2.0 @@ -1018,13 +1018,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_qifzsx1qZVFdiEoXpa71FP"},{"id":"cred_2owc7YazYLcCyHJCSam1R1"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_8sAeiZH49E26eF1wjRkosP"},{"id":"cred_cKEXoyJ2TgU3aPPK32Sku4"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 208.356084ms + duration: 152.703083ms - id: 29 request: proto: HTTP/1.1 @@ -1042,8 +1042,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -1053,13 +1053,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_qifzsx1qZVFdiEoXpa71FP"},{"id":"cred_2owc7YazYLcCyHJCSam1R1"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_8sAeiZH49E26eF1wjRkosP"},{"id":"cred_cKEXoyJ2TgU3aPPK32Sku4"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 129.264125ms + duration: 149.333042ms - id: 30 request: proto: HTTP/1.1 @@ -1077,8 +1077,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_qifzsx1qZVFdiEoXpa71FP + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_8sAeiZH49E26eF1wjRkosP method: GET response: proto: HTTP/2.0 @@ -1088,13 +1088,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_qifzsx1qZVFdiEoXpa71FP","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-08T21:38:25.388Z","updated_at":"2024-08-08T21:38:25.388Z","expires_at":"2033-05-13T09:33:13.000Z"}' + body: '{"id":"cred_8sAeiZH49E26eF1wjRkosP","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:17:34.581Z","updated_at":"2024-08-30T19:17:34.581Z","expires_at":"2033-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 137.603125ms + duration: 151.100583ms - id: 31 request: proto: HTTP/1.1 @@ -1112,8 +1112,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_2owc7YazYLcCyHJCSam1R1 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_cKEXoyJ2TgU3aPPK32Sku4 method: GET response: proto: HTTP/2.0 @@ -1123,13 +1123,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_2owc7YazYLcCyHJCSam1R1","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-08T21:38:25.508Z","updated_at":"2024-08-08T21:38:25.508Z","expires_at":"2025-05-13T09:33:13.000Z"}' + body: '{"id":"cred_cKEXoyJ2TgU3aPPK32Sku4","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:17:34.812Z","updated_at":"2024-08-30T19:17:34.812Z","expires_at":"2025-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 104.518833ms + duration: 131.823333ms - id: 32 request: proto: HTTP/1.1 @@ -1147,8 +1147,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -1158,13 +1158,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_qifzsx1qZVFdiEoXpa71FP"},{"id":"cred_2owc7YazYLcCyHJCSam1R1"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_8sAeiZH49E26eF1wjRkosP"},{"id":"cred_cKEXoyJ2TgU3aPPK32Sku4"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.184208ms + duration: 140.897334ms - id: 33 request: proto: HTTP/1.1 @@ -1182,8 +1182,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -1193,13 +1193,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_qifzsx1qZVFdiEoXpa71FP"},{"id":"cred_2owc7YazYLcCyHJCSam1R1"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_8sAeiZH49E26eF1wjRkosP"},{"id":"cred_cKEXoyJ2TgU3aPPK32Sku4"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.573125ms + duration: 163.191709ms - id: 34 request: proto: HTTP/1.1 @@ -1217,8 +1217,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_qifzsx1qZVFdiEoXpa71FP + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_8sAeiZH49E26eF1wjRkosP method: GET response: proto: HTTP/2.0 @@ -1228,13 +1228,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_qifzsx1qZVFdiEoXpa71FP","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-08T21:38:25.388Z","updated_at":"2024-08-08T21:38:25.388Z","expires_at":"2033-05-13T09:33:13.000Z"}' + body: '{"id":"cred_8sAeiZH49E26eF1wjRkosP","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:17:34.581Z","updated_at":"2024-08-30T19:17:34.581Z","expires_at":"2033-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 104.257ms + duration: 134.260959ms - id: 35 request: proto: HTTP/1.1 @@ -1252,8 +1252,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_2owc7YazYLcCyHJCSam1R1 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_cKEXoyJ2TgU3aPPK32Sku4 method: GET response: proto: HTTP/2.0 @@ -1263,13 +1263,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_2owc7YazYLcCyHJCSam1R1","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-08T21:38:25.508Z","updated_at":"2024-08-08T21:38:25.508Z","expires_at":"2025-05-13T09:33:13.000Z"}' + body: '{"id":"cred_cKEXoyJ2TgU3aPPK32Sku4","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:17:34.812Z","updated_at":"2024-08-30T19:17:34.812Z","expires_at":"2025-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 106.977458ms + duration: 137.381917ms - id: 36 request: proto: HTTP/1.1 @@ -1287,8 +1287,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -1298,13 +1298,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_qifzsx1qZVFdiEoXpa71FP"},{"id":"cred_2owc7YazYLcCyHJCSam1R1"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_8sAeiZH49E26eF1wjRkosP"},{"id":"cred_cKEXoyJ2TgU3aPPK32Sku4"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.314375ms + duration: 142.594541ms - id: 37 request: proto: HTTP/1.1 @@ -1322,8 +1322,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -1333,13 +1333,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_qifzsx1qZVFdiEoXpa71FP"},{"id":"cred_2owc7YazYLcCyHJCSam1R1"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_8sAeiZH49E26eF1wjRkosP"},{"id":"cred_cKEXoyJ2TgU3aPPK32Sku4"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 150.765ms + duration: 301.75475ms - id: 38 request: proto: HTTP/1.1 @@ -1357,8 +1357,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_qifzsx1qZVFdiEoXpa71FP + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_8sAeiZH49E26eF1wjRkosP method: GET response: proto: HTTP/2.0 @@ -1368,13 +1368,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_qifzsx1qZVFdiEoXpa71FP","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-08T21:38:25.388Z","updated_at":"2024-08-08T21:38:25.388Z","expires_at":"2033-05-13T09:33:13.000Z"}' + body: '{"id":"cred_8sAeiZH49E26eF1wjRkosP","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:17:34.581Z","updated_at":"2024-08-30T19:17:34.581Z","expires_at":"2033-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.053875ms + duration: 136.053ms - id: 39 request: proto: HTTP/1.1 @@ -1392,8 +1392,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_2owc7YazYLcCyHJCSam1R1 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_cKEXoyJ2TgU3aPPK32Sku4 method: GET response: proto: HTTP/2.0 @@ -1403,13 +1403,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_2owc7YazYLcCyHJCSam1R1","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-08T21:38:25.508Z","updated_at":"2024-08-08T21:38:25.508Z","expires_at":"2025-05-13T09:33:13.000Z"}' + body: '{"id":"cred_cKEXoyJ2TgU3aPPK32Sku4","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:17:34.812Z","updated_at":"2024-08-30T19:17:34.812Z","expires_at":"2025-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.355583ms + duration: 129.438208ms - id: 40 request: proto: HTTP/1.1 @@ -1427,8 +1427,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj?fields=client_id&include_fields=true + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4?fields=client_id&include_fields=true method: GET response: proto: HTTP/2.0 @@ -1438,13 +1438,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","signing_keys":[{"cert":"[REDACTED]"}]}' + body: '{"client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","signing_keys":[{"cert":"[REDACTED]"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.345333ms + duration: 143.376083ms - id: 41 request: proto: HTTP/1.1 @@ -1463,8 +1463,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_qifzsx1qZVFdiEoXpa71FP + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_8sAeiZH49E26eF1wjRkosP method: PATCH response: proto: HTTP/2.0 @@ -1474,13 +1474,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_qifzsx1qZVFdiEoXpa71FP","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-08T21:38:25.388Z","updated_at":"2024-08-08T21:38:28.409Z","expires_at":"2050-05-13T09:33:13.000Z"}' + body: '{"id":"cred_8sAeiZH49E26eF1wjRkosP","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:17:34.581Z","updated_at":"2024-08-30T19:17:44.194Z","expires_at":"2050-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.885625ms + duration: 136.542917ms - id: 42 request: proto: HTTP/1.1 @@ -1498,8 +1498,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -1509,13 +1509,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_qifzsx1qZVFdiEoXpa71FP"},{"id":"cred_2owc7YazYLcCyHJCSam1R1"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_8sAeiZH49E26eF1wjRkosP"},{"id":"cred_cKEXoyJ2TgU3aPPK32Sku4"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.755542ms + duration: 147.490917ms - id: 43 request: proto: HTTP/1.1 @@ -1533,8 +1533,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_qifzsx1qZVFdiEoXpa71FP + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_8sAeiZH49E26eF1wjRkosP method: GET response: proto: HTTP/2.0 @@ -1544,13 +1544,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_qifzsx1qZVFdiEoXpa71FP","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-08T21:38:25.388Z","updated_at":"2024-08-08T21:38:28.409Z","expires_at":"2050-05-13T09:33:13.000Z"}' + body: '{"id":"cred_8sAeiZH49E26eF1wjRkosP","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:17:34.581Z","updated_at":"2024-08-30T19:17:44.194Z","expires_at":"2050-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.213417ms + duration: 150.032ms - id: 44 request: proto: HTTP/1.1 @@ -1568,8 +1568,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_2owc7YazYLcCyHJCSam1R1 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_cKEXoyJ2TgU3aPPK32Sku4 method: GET response: proto: HTTP/2.0 @@ -1579,13 +1579,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_2owc7YazYLcCyHJCSam1R1","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-08T21:38:25.508Z","updated_at":"2024-08-08T21:38:25.508Z","expires_at":"2025-05-13T09:33:13.000Z"}' + body: '{"id":"cred_cKEXoyJ2TgU3aPPK32Sku4","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:17:34.812Z","updated_at":"2024-08-30T19:17:34.812Z","expires_at":"2025-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 102.332334ms + duration: 178.688208ms - id: 45 request: proto: HTTP/1.1 @@ -1603,8 +1603,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -1614,13 +1614,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_qifzsx1qZVFdiEoXpa71FP"},{"id":"cred_2owc7YazYLcCyHJCSam1R1"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_8sAeiZH49E26eF1wjRkosP"},{"id":"cred_cKEXoyJ2TgU3aPPK32Sku4"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.04975ms + duration: 147.901083ms - id: 46 request: proto: HTTP/1.1 @@ -1638,8 +1638,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -1649,13 +1649,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_qifzsx1qZVFdiEoXpa71FP"},{"id":"cred_2owc7YazYLcCyHJCSam1R1"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_8sAeiZH49E26eF1wjRkosP"},{"id":"cred_cKEXoyJ2TgU3aPPK32Sku4"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.408166ms + duration: 162.800833ms - id: 47 request: proto: HTTP/1.1 @@ -1673,8 +1673,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_qifzsx1qZVFdiEoXpa71FP + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_8sAeiZH49E26eF1wjRkosP method: GET response: proto: HTTP/2.0 @@ -1684,13 +1684,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_qifzsx1qZVFdiEoXpa71FP","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-08T21:38:25.388Z","updated_at":"2024-08-08T21:38:28.409Z","expires_at":"2050-05-13T09:33:13.000Z"}' + body: '{"id":"cred_8sAeiZH49E26eF1wjRkosP","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:17:34.581Z","updated_at":"2024-08-30T19:17:44.194Z","expires_at":"2050-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.577958ms + duration: 141.640459ms - id: 48 request: proto: HTTP/1.1 @@ -1708,8 +1708,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_2owc7YazYLcCyHJCSam1R1 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_cKEXoyJ2TgU3aPPK32Sku4 method: GET response: proto: HTTP/2.0 @@ -1719,13 +1719,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_2owc7YazYLcCyHJCSam1R1","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-08T21:38:25.508Z","updated_at":"2024-08-08T21:38:25.508Z","expires_at":"2025-05-13T09:33:13.000Z"}' + body: '{"id":"cred_cKEXoyJ2TgU3aPPK32Sku4","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:17:34.812Z","updated_at":"2024-08-30T19:17:34.812Z","expires_at":"2025-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.076333ms + duration: 142.001416ms - id: 49 request: proto: HTTP/1.1 @@ -1743,8 +1743,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -1754,13 +1754,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_qifzsx1qZVFdiEoXpa71FP"},{"id":"cred_2owc7YazYLcCyHJCSam1R1"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_8sAeiZH49E26eF1wjRkosP"},{"id":"cred_cKEXoyJ2TgU3aPPK32Sku4"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.660291ms + duration: 144.711584ms - id: 50 request: proto: HTTP/1.1 @@ -1778,8 +1778,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -1789,13 +1789,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_qifzsx1qZVFdiEoXpa71FP"},{"id":"cred_2owc7YazYLcCyHJCSam1R1"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_8sAeiZH49E26eF1wjRkosP"},{"id":"cred_cKEXoyJ2TgU3aPPK32Sku4"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.904667ms + duration: 141.231292ms - id: 51 request: proto: HTTP/1.1 @@ -1813,8 +1813,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_qifzsx1qZVFdiEoXpa71FP + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_8sAeiZH49E26eF1wjRkosP method: GET response: proto: HTTP/2.0 @@ -1824,13 +1824,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_qifzsx1qZVFdiEoXpa71FP","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-08T21:38:25.388Z","updated_at":"2024-08-08T21:38:28.409Z","expires_at":"2050-05-13T09:33:13.000Z"}' + body: '{"id":"cred_8sAeiZH49E26eF1wjRkosP","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:17:34.581Z","updated_at":"2024-08-30T19:17:44.194Z","expires_at":"2050-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.039833ms + duration: 145.048291ms - id: 52 request: proto: HTTP/1.1 @@ -1848,8 +1848,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_2owc7YazYLcCyHJCSam1R1 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_cKEXoyJ2TgU3aPPK32Sku4 method: GET response: proto: HTTP/2.0 @@ -1859,13 +1859,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_2owc7YazYLcCyHJCSam1R1","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-08T21:38:25.508Z","updated_at":"2024-08-08T21:38:25.508Z","expires_at":"2025-05-13T09:33:13.000Z"}' + body: '{"id":"cred_cKEXoyJ2TgU3aPPK32Sku4","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:17:34.812Z","updated_at":"2024-08-30T19:17:34.812Z","expires_at":"2025-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.069291ms + duration: 157.43425ms - id: 53 request: proto: HTTP/1.1 @@ -1883,8 +1883,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj?fields=client_id%2Capp_type&include_fields=true + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4?fields=client_id%2Capp_type&include_fields=true method: GET response: proto: HTTP/2.0 @@ -1894,13 +1894,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + body: '{"client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.572ms + duration: 141.895667ms - id: 54 request: proto: HTTP/1.1 @@ -1918,8 +1918,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials?include_totals=true&per_page=50 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1929,33 +1929,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"id":"cred_2owc7YazYLcCyHJCSam1R1","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-08T21:38:25.508Z","updated_at":"2024-08-08T21:38:25.508Z","expires_at":"2025-05-13T09:33:13.000Z"},{"id":"cred_qifzsx1qZVFdiEoXpa71FP","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-08T21:38:25.388Z","updated_at":"2024-08-08T21:38:28.409Z","expires_at":"2050-05-13T09:33:13.000Z"}]' + body: '[{"id":"cred_cKEXoyJ2TgU3aPPK32Sku4","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:17:34.812Z","updated_at":"2024-08-30T19:17:34.812Z","expires_at":"2025-05-13T09:33:13.000Z"},{"id":"cred_8sAeiZH49E26eF1wjRkosP","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:17:34.581Z","updated_at":"2024-08-30T19:17:44.194Z","expires_at":"2050-05-13T09:33:13.000Z"}]' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 142.607125ms + duration: 142.206709ms - id: 55 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 89 + content_length: 118 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"client_authentication_methods":null,"token_endpoint_auth_method":"client_secret_post"} + {"client_authentication_methods":null,"token_endpoint_auth_method":"client_secret_post","signed_request_object":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: PATCH response: proto: HTTP/2.0 @@ -1965,13 +1965,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.851791ms + duration: 158.293875ms - id: 56 request: proto: HTTP/1.1 @@ -1989,8 +1989,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_2owc7YazYLcCyHJCSam1R1 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_cKEXoyJ2TgU3aPPK32Sku4 method: DELETE response: proto: HTTP/2.0 @@ -2006,7 +2006,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 100.632ms + duration: 145.820584ms - id: 57 request: proto: HTTP/1.1 @@ -2024,8 +2024,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_qifzsx1qZVFdiEoXpa71FP + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_8sAeiZH49E26eF1wjRkosP method: DELETE response: proto: HTTP/2.0 @@ -2041,7 +2041,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 115.943875ms + duration: 140.1325ms - id: 58 request: proto: HTTP/1.1 @@ -2059,8 +2059,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj?fields=client_id&include_fields=true + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4?fields=client_id&include_fields=true method: GET response: proto: HTTP/2.0 @@ -2070,13 +2070,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","signing_keys":[{"cert":"[REDACTED]"}]}' + body: '{"client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","signing_keys":[{"cert":"[REDACTED]"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.26725ms + duration: 151.774791ms - id: 59 request: proto: HTTP/1.1 @@ -2095,8 +2095,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials method: POST response: proto: HTTP/2.0 @@ -2106,13 +2106,13 @@ interactions: trailer: {} content_length: 284 uncompressed: false - body: '{"id":"cred_v9ULccKC5xXbA9srEZbk5x","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-08T21:38:31.611Z","updated_at":"2024-08-08T21:38:31.611Z","expires_at":"2025-05-13T09:33:13.000Z"}' + body: '{"id":"cred_hZdait7VaoRELinJnm5BRS","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:17:54.111Z","updated_at":"2024-08-30T19:17:54.111Z","expires_at":"2025-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 155.750792ms + duration: 152.071ms - id: 60 request: proto: HTTP/1.1 @@ -2125,14 +2125,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_v9ULccKC5xXbA9srEZbk5x"}]}},"token_endpoint_auth_method":null} + {"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_hZdait7VaoRELinJnm5BRS"}]}},"token_endpoint_auth_method":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: PATCH response: proto: HTTP/2.0 @@ -2142,13 +2142,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_v9ULccKC5xXbA9srEZbk5x"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_hZdait7VaoRELinJnm5BRS"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.565334ms + duration: 172.6535ms - id: 61 request: proto: HTTP/1.1 @@ -2166,8 +2166,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -2177,13 +2177,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_v9ULccKC5xXbA9srEZbk5x"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_hZdait7VaoRELinJnm5BRS"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.919666ms + duration: 139.903083ms - id: 62 request: proto: HTTP/1.1 @@ -2201,8 +2201,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_v9ULccKC5xXbA9srEZbk5x + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_hZdait7VaoRELinJnm5BRS method: GET response: proto: HTTP/2.0 @@ -2212,13 +2212,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_v9ULccKC5xXbA9srEZbk5x","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-08T21:38:31.611Z","updated_at":"2024-08-08T21:38:31.611Z","expires_at":"2025-05-13T09:33:13.000Z"}' + body: '{"id":"cred_hZdait7VaoRELinJnm5BRS","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:17:54.111Z","updated_at":"2024-08-30T19:17:54.111Z","expires_at":"2025-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.483ms + duration: 167.737459ms - id: 63 request: proto: HTTP/1.1 @@ -2236,8 +2236,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -2247,13 +2247,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_v9ULccKC5xXbA9srEZbk5x"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_hZdait7VaoRELinJnm5BRS"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 136.075125ms + duration: 150.481291ms - id: 64 request: proto: HTTP/1.1 @@ -2271,8 +2271,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -2282,13 +2282,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_v9ULccKC5xXbA9srEZbk5x"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_hZdait7VaoRELinJnm5BRS"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.412833ms + duration: 139.932ms - id: 65 request: proto: HTTP/1.1 @@ -2306,8 +2306,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_v9ULccKC5xXbA9srEZbk5x + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_hZdait7VaoRELinJnm5BRS method: GET response: proto: HTTP/2.0 @@ -2317,13 +2317,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_v9ULccKC5xXbA9srEZbk5x","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-08T21:38:31.611Z","updated_at":"2024-08-08T21:38:31.611Z","expires_at":"2025-05-13T09:33:13.000Z"}' + body: '{"id":"cred_hZdait7VaoRELinJnm5BRS","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:17:54.111Z","updated_at":"2024-08-30T19:17:54.111Z","expires_at":"2025-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.80675ms + duration: 132.558541ms - id: 66 request: proto: HTTP/1.1 @@ -2341,8 +2341,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -2352,13 +2352,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_v9ULccKC5xXbA9srEZbk5x"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_hZdait7VaoRELinJnm5BRS"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.983541ms + duration: 144.015792ms - id: 67 request: proto: HTTP/1.1 @@ -2376,8 +2376,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -2387,13 +2387,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_v9ULccKC5xXbA9srEZbk5x"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_hZdait7VaoRELinJnm5BRS"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.134625ms + duration: 165.092292ms - id: 68 request: proto: HTTP/1.1 @@ -2411,8 +2411,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_v9ULccKC5xXbA9srEZbk5x + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_hZdait7VaoRELinJnm5BRS method: GET response: proto: HTTP/2.0 @@ -2422,13 +2422,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_v9ULccKC5xXbA9srEZbk5x","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-08T21:38:31.611Z","updated_at":"2024-08-08T21:38:31.611Z","expires_at":"2025-05-13T09:33:13.000Z"}' + body: '{"id":"cred_hZdait7VaoRELinJnm5BRS","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:17:54.111Z","updated_at":"2024-08-30T19:17:54.111Z","expires_at":"2025-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 155.788375ms + duration: 357.0315ms - id: 69 request: proto: HTTP/1.1 @@ -2446,8 +2446,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj?fields=client_id%2Capp_type&include_fields=true + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4?fields=client_id%2Capp_type&include_fields=true method: GET response: proto: HTTP/2.0 @@ -2457,13 +2457,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + body: '{"client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.467167ms + duration: 144.24325ms - id: 70 request: proto: HTTP/1.1 @@ -2481,8 +2481,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials?include_totals=true&per_page=50 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2492,33 +2492,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"id":"cred_v9ULccKC5xXbA9srEZbk5x","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-08T21:38:31.611Z","updated_at":"2024-08-08T21:38:31.611Z","expires_at":"2025-05-13T09:33:13.000Z"}]' + body: '[{"id":"cred_hZdait7VaoRELinJnm5BRS","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:17:54.111Z","updated_at":"2024-08-30T19:17:54.111Z","expires_at":"2025-05-13T09:33:13.000Z"}]' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.824292ms + duration: 157.072292ms - id: 71 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 89 + content_length: 118 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"client_authentication_methods":null,"token_endpoint_auth_method":"client_secret_post"} + {"client_authentication_methods":null,"token_endpoint_auth_method":"client_secret_post","signed_request_object":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: PATCH response: proto: HTTP/2.0 @@ -2528,13 +2528,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 128.837666ms + duration: 156.037042ms - id: 72 request: proto: HTTP/1.1 @@ -2552,8 +2552,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_v9ULccKC5xXbA9srEZbk5x + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_hZdait7VaoRELinJnm5BRS method: DELETE response: proto: HTTP/2.0 @@ -2569,7 +2569,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 108.11775ms + duration: 143.0015ms - id: 73 request: proto: HTTP/1.1 @@ -2587,8 +2587,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj?fields=client_id&include_fields=true + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4?fields=client_id&include_fields=true method: GET response: proto: HTTP/2.0 @@ -2598,13 +2598,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","signing_keys":[{"cert":"[REDACTED]"}]}' + body: '{"client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","signing_keys":[{"cert":"[REDACTED]"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 104.337875ms + duration: 141.029958ms - id: 74 request: proto: HTTP/1.1 @@ -2623,8 +2623,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: PATCH response: proto: HTTP/2.0 @@ -2634,13 +2634,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 125.068375ms + duration: 160.29775ms - id: 75 request: proto: HTTP/1.1 @@ -2658,8 +2658,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -2669,13 +2669,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.803625ms + duration: 149.670291ms - id: 76 request: proto: HTTP/1.1 @@ -2693,8 +2693,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -2704,13 +2704,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 125.477292ms + duration: 160.916708ms - id: 77 request: proto: HTTP/1.1 @@ -2728,8 +2728,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -2739,13 +2739,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.731125ms + duration: 156.088167ms - id: 78 request: proto: HTTP/1.1 @@ -2763,8 +2763,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -2774,13 +2774,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.644709ms + duration: 302.148667ms - id: 79 request: proto: HTTP/1.1 @@ -2798,8 +2798,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -2809,13 +2809,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.937292ms + duration: 175.156667ms - id: 80 request: proto: HTTP/1.1 @@ -2833,8 +2833,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj?fields=client_id%2Capp_type&include_fields=true + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4?fields=client_id%2Capp_type&include_fields=true method: GET response: proto: HTTP/2.0 @@ -2844,14 +2844,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + body: '{"client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 136.026542ms + duration: 154.704833ms - id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2 + uncompressed: false + body: '[]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 142.154375ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -2869,8 +2904,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: PATCH response: proto: HTTP/2.0 @@ -2880,14 +2915,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.995792ms - - id: 82 + duration: 180.089542ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -2904,8 +2939,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj?fields=client_id&include_fields=true + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4?fields=client_id&include_fields=true method: GET response: proto: HTTP/2.0 @@ -2915,14 +2950,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","signing_keys":[{"cert":"[REDACTED]"}]}' + body: '{"client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","signing_keys":[{"cert":"[REDACTED]"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 135.707667ms - - id: 83 + duration: 153.496708ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -2940,8 +2975,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials method: POST response: proto: HTTP/2.0 @@ -2951,14 +2986,14 @@ interactions: trailer: {} content_length: 284 uncompressed: false - body: '{"id":"cred_9P76CwqxM5jVWzHBSDep59","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-08T21:38:36.627Z","updated_at":"2024-08-08T21:38:36.627Z","expires_at":"2025-05-13T09:33:13.000Z"}' + body: '{"id":"cred_9iYMBpdsdebrN6LKU654LY","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:18:05.690Z","updated_at":"2024-08-30T19:18:05.690Z","expires_at":"2025-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 147.726375ms - - id: 84 + duration: 147.946875ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -2970,14 +3005,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_9P76CwqxM5jVWzHBSDep59"}]}},"token_endpoint_auth_method":null} + {"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_9iYMBpdsdebrN6LKU654LY"}]}},"token_endpoint_auth_method":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: PATCH response: proto: HTTP/2.0 @@ -2987,14 +3022,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_9P76CwqxM5jVWzHBSDep59"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_9iYMBpdsdebrN6LKU654LY"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.373583ms - - id: 85 + duration: 155.474666ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -3011,8 +3046,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -3022,14 +3057,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_9P76CwqxM5jVWzHBSDep59"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_9iYMBpdsdebrN6LKU654LY"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.423375ms - - id: 86 + duration: 159.460042ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -3046,8 +3081,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_9P76CwqxM5jVWzHBSDep59 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_9iYMBpdsdebrN6LKU654LY method: GET response: proto: HTTP/2.0 @@ -3057,14 +3092,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_9P76CwqxM5jVWzHBSDep59","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-08T21:38:36.627Z","updated_at":"2024-08-08T21:38:36.627Z","expires_at":"2025-05-13T09:33:13.000Z"}' + body: '{"id":"cred_9iYMBpdsdebrN6LKU654LY","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:18:05.690Z","updated_at":"2024-08-30T19:18:05.690Z","expires_at":"2025-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.655125ms - - id: 87 + duration: 146.226917ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -3081,8 +3116,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -3092,14 +3127,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_9P76CwqxM5jVWzHBSDep59"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_9iYMBpdsdebrN6LKU654LY"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.650833ms - - id: 88 + duration: 154.671375ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -3116,8 +3151,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -3127,14 +3162,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_9P76CwqxM5jVWzHBSDep59"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_9iYMBpdsdebrN6LKU654LY"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.4085ms - - id: 89 + duration: 147.505959ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -3151,8 +3186,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_9P76CwqxM5jVWzHBSDep59 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_9iYMBpdsdebrN6LKU654LY method: GET response: proto: HTTP/2.0 @@ -3162,14 +3197,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_9P76CwqxM5jVWzHBSDep59","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-08T21:38:36.627Z","updated_at":"2024-08-08T21:38:36.627Z","expires_at":"2025-05-13T09:33:13.000Z"}' + body: '{"id":"cred_9iYMBpdsdebrN6LKU654LY","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:18:05.690Z","updated_at":"2024-08-30T19:18:05.690Z","expires_at":"2025-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 104.444458ms - - id: 90 + duration: 143.610125ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -3186,8 +3221,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -3197,14 +3232,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_9P76CwqxM5jVWzHBSDep59"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_9iYMBpdsdebrN6LKU654LY"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.888125ms - - id: 91 + duration: 159.31275ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -3221,8 +3256,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -3232,14 +3267,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_9P76CwqxM5jVWzHBSDep59"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_9iYMBpdsdebrN6LKU654LY"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.267ms - - id: 92 + duration: 167.801708ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -3256,8 +3291,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_9P76CwqxM5jVWzHBSDep59 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_9iYMBpdsdebrN6LKU654LY method: GET response: proto: HTTP/2.0 @@ -3267,14 +3302,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_9P76CwqxM5jVWzHBSDep59","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-08T21:38:36.627Z","updated_at":"2024-08-08T21:38:36.627Z","expires_at":"2025-05-13T09:33:13.000Z"}' + body: '{"id":"cred_9iYMBpdsdebrN6LKU654LY","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:18:05.690Z","updated_at":"2024-08-30T19:18:05.690Z","expires_at":"2025-05-13T09:33:13.000Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.021459ms - - id: 93 + duration: 145.281541ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -3291,8 +3326,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj?fields=client_id%2Capp_type&include_fields=true + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4?fields=client_id%2Capp_type&include_fields=true method: GET response: proto: HTTP/2.0 @@ -3302,14 +3337,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + body: '{"client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.314042ms - - id: 94 + duration: 147.175125ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -3326,8 +3361,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials?include_totals=true&per_page=50 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3337,33 +3372,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"id":"cred_9P76CwqxM5jVWzHBSDep59","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-08T21:38:36.627Z","updated_at":"2024-08-08T21:38:36.627Z","expires_at":"2025-05-13T09:33:13.000Z"}]' + body: '[{"id":"cred_9iYMBpdsdebrN6LKU654LY","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:18:05.690Z","updated_at":"2024-08-30T19:18:05.690Z","expires_at":"2025-05-13T09:33:13.000Z"}]' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 106.421709ms - - id: 95 + duration: 136.809125ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 89 + content_length: 118 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"client_authentication_methods":null,"token_endpoint_auth_method":"client_secret_post"} + {"client_authentication_methods":null,"token_endpoint_auth_method":"client_secret_post","signed_request_object":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: PATCH response: proto: HTTP/2.0 @@ -3373,14 +3408,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 149.624167ms - - id: 96 + duration: 215.67575ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -3397,8 +3432,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj/credentials/cred_9P76CwqxM5jVWzHBSDep59 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4/credentials/cred_9iYMBpdsdebrN6LKU654LY method: DELETE response: proto: HTTP/2.0 @@ -3414,8 +3449,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 115.906417ms - - id: 97 + duration: 152.911084ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -3432,8 +3467,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -3443,14 +3478,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.338083ms - - id: 98 + duration: 144.105625ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -3467,8 +3502,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -3478,14 +3513,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.57675ms - - id: 99 + duration: 154.279583ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -3502,8 +3537,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: GET response: proto: HTTP/2.0 @@ -3513,14 +3548,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethods","client_id":"X79whknVHCNK2sN6gehJtKAz0mUjlotj","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsPrivateKeyJWT","client_id":"57zYBGFMv381PBXEDRcFgC5pynBXBQf4","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 138.701209ms - - id: 100 + duration: 138.445333ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -3537,8 +3572,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.8.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/X79whknVHCNK2sN6gehJtKAz0mUjlotj + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/57zYBGFMv381PBXEDRcFgC5pynBXBQf4 method: DELETE response: proto: HTTP/2.0 @@ -3554,4 +3589,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 184.808041ms + duration: 189.320333ms diff --git a/test/data/recordings/TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth.yaml b/test/data/recordings/TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth.yaml new file mode 100644 index 00000000..a5b0d8df --- /dev/null +++ b/test/data/recordings/TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth.yaml @@ -0,0 +1,1904 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 187 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","app_type":"non_interactive","token_endpoint_auth_method":"client_secret_post"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: false + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 478.709833ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 150.943208ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM?fields=client_id&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 156.43225ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 158.822125ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 158.8445ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM?fields=client_id%2Capp_type&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 141.801916ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM/credentials?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2 + uncompressed: false + body: '[]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 142.0215ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 52 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"token_endpoint_auth_method":"client_secret_post"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 178.322208ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 173 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","app_type":"non_interactive","jwt_configuration":{"alg":"RS256"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 169.278792ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 178.617875ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM?fields=client_id&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 151.131916ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2020 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Testing Credentials 1","credential_type":"x509_cert","pem":"-----BEGIN CERTIFICATE-----\nMIIFWDCCA0ACCQDXqpBo3RUhkzANBgkqhkiG9w0BAQsFADBuMQswCQYDVQQGEwJl\nczEPMA0GA1UECAwGTWFkcmlkMQ8wDQYDVQQHDAZNYWRyaWQxDTALBgNVBAoMBE9r\ndGExDzANBgNVBAsMBkRYLUNEVDEdMBsGA1UEAwwURGV2ZWxvcGVyIEV4cGVyaWVu\nY2UwHhcNMjMwNTE2MDkzMzEzWhcNMzMwNTEzMDkzMzEzWjBuMQswCQYDVQQGEwJl\nczEPMA0GA1UECAwGTWFkcmlkMQ8wDQYDVQQHDAZNYWRyaWQxDTALBgNVBAoMBE9r\ndGExDzANBgNVBAsMBkRYLUNEVDEdMBsGA1UEAwwURGV2ZWxvcGVyIEV4cGVyaWVu\nY2UwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCupwRtoZtRk9qRaXD+\nYdtpM9dWo2vaprvNo+7J2YPlOtZB0zx7xykTEI5UMsESRwEATzVvepQzvswYBlca\n9k1nOcMBSmhkJPol9fbntWAbw4jvs/xXCtKCVOuiP2hffaeq1+6Kei8gXJKpytzN\nLPhbqpoNfqb87U4SM4pKFWSkbJSL0inUilrlc4sR9IGWs9jjCK21TpsUcb7GMZem\nv7MlZQfKQSFuTJgTs3aLJAiyF0yfYhCMbE/bFefRsTcZYnAEYfI3pLDAuZm4GjWD\nW0DCm43pO+jSRvEnbikVvFo6GAoTyUStifK44KVwhp4iPRkIrUCEMxK0mCMVJ9KF\ntaKWsFcJ5nQGJxBz6fj766Hl7SwuHvmSezzADF7/5kOAb8TnMfYsRFxak/iE/5s+\nOldEONHWuyVWuNIqEeI1DglscX02uK7jnuhUAyrCR0ayI3Ket+OvbviZIjiNyqfR\nchPuL7QyQl3CrWcTgZCqwjMzW2G9Y63k838mqL0gVhNPrH6QedOdSsnXbsjP+hS5\nPx2PRWqT+Z8otzZpfnD/pmtjoA3D93c1KJ+hFNlyIvD+R7go045l7OR5MKkgkOSO\nCXTqCSiq09XpZUQvwMtW516K5K/zOveai7V5DTmTHhCL5kthRYhA5WDfLWicG0ZP\nzl4p7gmxfmseQH/bHBSU2f+a+QIDAQABMA0GCSqGSIb3DQEBCwUAA4ICAQA7EOsl\nD5WQ+G6T0GhbyTmlC497aULzCdFfkMjlPN2MiVhje0G4u8C5zK6zEkmyWfRkqCIh\n54YLbaZu55MbvwbD64tTWqDMBmmna8HpulFcpi4RM9jGFMqx5/NSHBLqv/BC3UNt\n7c4y4YuLJkB07RljPv07k5sgf9/twF+v7UYVURfutoj0sjOImJMN66YVOTlNoGTS\nTOrDWByqc6eDHSFVU+0urrgos4iF5UN7ovfA8dLBiR7I4S5kVKSKO18UUB4qPIj0\nyMvTImrQXMepVtzaGae1V5BCyx37J12/STcUdE5urtSBjZyaugrTw+C+WHTcS829\nq5jOjmBJgFTIICz8IDTxPZIM+keVyodFOJKRtteT6vWnk8wq9k4U5HRxtdRKc52u\nd3RCO/B+RxbBLzFuKrM402LNe6j6+gek4boPkzfMbEIohJm1ukM4bATfP5gltsGe\n6UvXg7yaM+oW8jBPHK9w5azsqj+SuxqvARchHWRIrYAli5SePbUtmFKC/Lt+pKCK\nqxdawpr8EUrJXvHL3XoNHuGNbVuSm/ep+ge89UAbUEQ90A4w7fuSX5S+pr4nMOTi\nlNZtdWtIC9qcJ2Xmy5gZ+mAh3Wv+96IwQ9MWvtFEXquNNbvJdXVluUPVarNv3T1B\n8GMCiNZ0r6tknDJcnkjmRqiB8o/ExYXRnjHhGQ==\n-----END CERTIFICATE-----\n\n"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM/credentials + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 283 + uncompressed: false + body: '{"id":"cred_fMB3yCq48Qzvsyzy2Y5pBu","credential_type":"x509_cert","name":"Testing Credentials 1","thumbprint_sha256":"irPW_52cQKIRPeblpAs2LjaUELUxnh5Vi7_1idgHX7w","created_at":"2024-08-30T19:18:25.170Z","updated_at":"2024-08-30T19:18:25.170Z","expires_at":"2033-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 173.994458ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 155 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"client_authentication_methods":{"self_signed_tls_client_auth":{"credentials":[{"id":"cred_fMB3yCq48Qzvsyzy2Y5pBu"}]}},"token_endpoint_auth_method":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"self_signed_tls_client_auth":{"credentials":[{"id":"cred_fMB3yCq48Qzvsyzy2Y5pBu"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 199.662959ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"self_signed_tls_client_auth":{"credentials":[{"id":"cred_fMB3yCq48Qzvsyzy2Y5pBu"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 174.622458ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM/credentials/cred_fMB3yCq48Qzvsyzy2Y5pBu + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_fMB3yCq48Qzvsyzy2Y5pBu","credential_type":"x509_cert","name":"Testing Credentials 1","thumbprint_sha256":"irPW_52cQKIRPeblpAs2LjaUELUxnh5Vi7_1idgHX7w","created_at":"2024-08-30T19:18:25.170Z","updated_at":"2024-08-30T19:18:25.170Z","expires_at":"2033-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 153.464166ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"self_signed_tls_client_auth":{"credentials":[{"id":"cred_fMB3yCq48Qzvsyzy2Y5pBu"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 156.921792ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"self_signed_tls_client_auth":{"credentials":[{"id":"cred_fMB3yCq48Qzvsyzy2Y5pBu"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 155.544334ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM/credentials/cred_fMB3yCq48Qzvsyzy2Y5pBu + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_fMB3yCq48Qzvsyzy2Y5pBu","credential_type":"x509_cert","name":"Testing Credentials 1","thumbprint_sha256":"irPW_52cQKIRPeblpAs2LjaUELUxnh5Vi7_1idgHX7w","created_at":"2024-08-30T19:18:25.170Z","updated_at":"2024-08-30T19:18:25.170Z","expires_at":"2033-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 143.725958ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"self_signed_tls_client_auth":{"credentials":[{"id":"cred_fMB3yCq48Qzvsyzy2Y5pBu"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 143.991125ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"self_signed_tls_client_auth":{"credentials":[{"id":"cred_fMB3yCq48Qzvsyzy2Y5pBu"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 142.563292ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM/credentials/cred_fMB3yCq48Qzvsyzy2Y5pBu + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_fMB3yCq48Qzvsyzy2Y5pBu","credential_type":"x509_cert","name":"Testing Credentials 1","thumbprint_sha256":"irPW_52cQKIRPeblpAs2LjaUELUxnh5Vi7_1idgHX7w","created_at":"2024-08-30T19:18:25.170Z","updated_at":"2024-08-30T19:18:25.170Z","expires_at":"2033-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 137.286291ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM?fields=client_id%2Capp_type&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 134.742167ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM/credentials?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"cred_fMB3yCq48Qzvsyzy2Y5pBu","credential_type":"x509_cert","name":"Testing Credentials 1","thumbprint_sha256":"irPW_52cQKIRPeblpAs2LjaUELUxnh5Vi7_1idgHX7w","created_at":"2024-08-30T19:18:25.170Z","updated_at":"2024-08-30T19:18:25.170Z","expires_at":"2033-05-13T09:33:13.000Z"}]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 181.269583ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"client_authentication_methods":null,"token_endpoint_auth_method":"client_secret_post","signed_request_object":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 147.01375ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM/credentials/cred_fMB3yCq48Qzvsyzy2Y5pBu + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 172.671916ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM?fields=client_id&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 146.22425ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 53 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"token_endpoint_auth_method":"client_secret_basic"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 155.29375ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 150.514459ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 143.1655ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 141.768958ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 141.416084ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 144.004584ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM?fields=client_id%2Capp_type&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 149.615041ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM/credentials?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2 + uncompressed: false + body: '[]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 134.920583ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 52 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"token_endpoint_auth_method":"client_secret_post"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 153.140833ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM?fields=client_id&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 139.119333ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2020 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Testing Credentials 1","credential_type":"x509_cert","pem":"-----BEGIN CERTIFICATE-----\nMIIFWDCCA0ACCQDXqpBo3RUhkzANBgkqhkiG9w0BAQsFADBuMQswCQYDVQQGEwJl\nczEPMA0GA1UECAwGTWFkcmlkMQ8wDQYDVQQHDAZNYWRyaWQxDTALBgNVBAoMBE9r\ndGExDzANBgNVBAsMBkRYLUNEVDEdMBsGA1UEAwwURGV2ZWxvcGVyIEV4cGVyaWVu\nY2UwHhcNMjMwNTE2MDkzMzEzWhcNMzMwNTEzMDkzMzEzWjBuMQswCQYDVQQGEwJl\nczEPMA0GA1UECAwGTWFkcmlkMQ8wDQYDVQQHDAZNYWRyaWQxDTALBgNVBAoMBE9r\ndGExDzANBgNVBAsMBkRYLUNEVDEdMBsGA1UEAwwURGV2ZWxvcGVyIEV4cGVyaWVu\nY2UwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCupwRtoZtRk9qRaXD+\nYdtpM9dWo2vaprvNo+7J2YPlOtZB0zx7xykTEI5UMsESRwEATzVvepQzvswYBlca\n9k1nOcMBSmhkJPol9fbntWAbw4jvs/xXCtKCVOuiP2hffaeq1+6Kei8gXJKpytzN\nLPhbqpoNfqb87U4SM4pKFWSkbJSL0inUilrlc4sR9IGWs9jjCK21TpsUcb7GMZem\nv7MlZQfKQSFuTJgTs3aLJAiyF0yfYhCMbE/bFefRsTcZYnAEYfI3pLDAuZm4GjWD\nW0DCm43pO+jSRvEnbikVvFo6GAoTyUStifK44KVwhp4iPRkIrUCEMxK0mCMVJ9KF\ntaKWsFcJ5nQGJxBz6fj766Hl7SwuHvmSezzADF7/5kOAb8TnMfYsRFxak/iE/5s+\nOldEONHWuyVWuNIqEeI1DglscX02uK7jnuhUAyrCR0ayI3Ket+OvbviZIjiNyqfR\nchPuL7QyQl3CrWcTgZCqwjMzW2G9Y63k838mqL0gVhNPrH6QedOdSsnXbsjP+hS5\nPx2PRWqT+Z8otzZpfnD/pmtjoA3D93c1KJ+hFNlyIvD+R7go045l7OR5MKkgkOSO\nCXTqCSiq09XpZUQvwMtW516K5K/zOveai7V5DTmTHhCL5kthRYhA5WDfLWicG0ZP\nzl4p7gmxfmseQH/bHBSU2f+a+QIDAQABMA0GCSqGSIb3DQEBCwUAA4ICAQA7EOsl\nD5WQ+G6T0GhbyTmlC497aULzCdFfkMjlPN2MiVhje0G4u8C5zK6zEkmyWfRkqCIh\n54YLbaZu55MbvwbD64tTWqDMBmmna8HpulFcpi4RM9jGFMqx5/NSHBLqv/BC3UNt\n7c4y4YuLJkB07RljPv07k5sgf9/twF+v7UYVURfutoj0sjOImJMN66YVOTlNoGTS\nTOrDWByqc6eDHSFVU+0urrgos4iF5UN7ovfA8dLBiR7I4S5kVKSKO18UUB4qPIj0\nyMvTImrQXMepVtzaGae1V5BCyx37J12/STcUdE5urtSBjZyaugrTw+C+WHTcS829\nq5jOjmBJgFTIICz8IDTxPZIM+keVyodFOJKRtteT6vWnk8wq9k4U5HRxtdRKc52u\nd3RCO/B+RxbBLzFuKrM402LNe6j6+gek4boPkzfMbEIohJm1ukM4bATfP5gltsGe\n6UvXg7yaM+oW8jBPHK9w5azsqj+SuxqvARchHWRIrYAli5SePbUtmFKC/Lt+pKCK\nqxdawpr8EUrJXvHL3XoNHuGNbVuSm/ep+ge89UAbUEQ90A4w7fuSX5S+pr4nMOTi\nlNZtdWtIC9qcJ2Xmy5gZ+mAh3Wv+96IwQ9MWvtFEXquNNbvJdXVluUPVarNv3T1B\n8GMCiNZ0r6tknDJcnkjmRqiB8o/ExYXRnjHhGQ==\n-----END CERTIFICATE-----\n\n"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM/credentials + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 283 + uncompressed: false + body: '{"id":"cred_m81uLnfeYTcUrsGvijj9fU","credential_type":"x509_cert","name":"Testing Credentials 1","thumbprint_sha256":"irPW_52cQKIRPeblpAs2LjaUELUxnh5Vi7_1idgHX7w","created_at":"2024-08-30T19:18:37.429Z","updated_at":"2024-08-30T19:18:37.429Z","expires_at":"2033-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 157.190083ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 155 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"client_authentication_methods":{"self_signed_tls_client_auth":{"credentials":[{"id":"cred_m81uLnfeYTcUrsGvijj9fU"}]}},"token_endpoint_auth_method":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"self_signed_tls_client_auth":{"credentials":[{"id":"cred_m81uLnfeYTcUrsGvijj9fU"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 160.407959ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"self_signed_tls_client_auth":{"credentials":[{"id":"cred_m81uLnfeYTcUrsGvijj9fU"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 149.30525ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM/credentials/cred_m81uLnfeYTcUrsGvijj9fU + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_m81uLnfeYTcUrsGvijj9fU","credential_type":"x509_cert","name":"Testing Credentials 1","thumbprint_sha256":"irPW_52cQKIRPeblpAs2LjaUELUxnh5Vi7_1idgHX7w","created_at":"2024-08-30T19:18:37.429Z","updated_at":"2024-08-30T19:18:37.429Z","expires_at":"2033-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 132.544708ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"self_signed_tls_client_auth":{"credentials":[{"id":"cred_m81uLnfeYTcUrsGvijj9fU"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 149.09125ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"self_signed_tls_client_auth":{"credentials":[{"id":"cred_m81uLnfeYTcUrsGvijj9fU"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 138.498667ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM/credentials/cred_m81uLnfeYTcUrsGvijj9fU + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_m81uLnfeYTcUrsGvijj9fU","credential_type":"x509_cert","name":"Testing Credentials 1","thumbprint_sha256":"irPW_52cQKIRPeblpAs2LjaUELUxnh5Vi7_1idgHX7w","created_at":"2024-08-30T19:18:37.429Z","updated_at":"2024-08-30T19:18:37.429Z","expires_at":"2033-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 132.250167ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"self_signed_tls_client_auth":{"credentials":[{"id":"cred_m81uLnfeYTcUrsGvijj9fU"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 141.839125ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"self_signed_tls_client_auth":{"credentials":[{"id":"cred_m81uLnfeYTcUrsGvijj9fU"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 156.914125ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM/credentials/cred_m81uLnfeYTcUrsGvijj9fU + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_m81uLnfeYTcUrsGvijj9fU","credential_type":"x509_cert","name":"Testing Credentials 1","thumbprint_sha256":"irPW_52cQKIRPeblpAs2LjaUELUxnh5Vi7_1idgHX7w","created_at":"2024-08-30T19:18:37.429Z","updated_at":"2024-08-30T19:18:37.429Z","expires_at":"2033-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 140.884083ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM?fields=client_id%2Capp_type&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 163.133875ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM/credentials?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"cred_m81uLnfeYTcUrsGvijj9fU","credential_type":"x509_cert","name":"Testing Credentials 1","thumbprint_sha256":"irPW_52cQKIRPeblpAs2LjaUELUxnh5Vi7_1idgHX7w","created_at":"2024-08-30T19:18:37.429Z","updated_at":"2024-08-30T19:18:37.429Z","expires_at":"2033-05-13T09:33:13.000Z"}]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 149.052125ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"client_authentication_methods":null,"token_endpoint_auth_method":"client_secret_post","signed_request_object":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 160.507917ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM/credentials/cred_m81uLnfeYTcUrsGvijj9fU + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 141.82075ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 132.438333ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 156.124083ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSelfSignedTLSClientAuth","client_id":"tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 146.34925ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/tNCCA4UZPhcbOhRSrSA7RLp04lkBqqIM + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 203.5035ms diff --git a/test/data/recordings/TestAccClientAuthenticationMethodsSignedRequestObject.yaml b/test/data/recordings/TestAccClientAuthenticationMethodsSignedRequestObject.yaml new file mode 100644 index 00000000..329edf68 --- /dev/null +++ b/test/data/recordings/TestAccClientAuthenticationMethodsSignedRequestObject.yaml @@ -0,0 +1,3661 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 219 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","app_type":"non_interactive","jwt_configuration":{"alg":"RS256"},"token_endpoint_auth_method":"client_secret_post"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: false + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 317.087208ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 169.645125ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6?fields=client_id&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 163.561583ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2065 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Testing Credentials 1","credential_type":"public_key","pem":"-----BEGIN CERTIFICATE-----\nMIIFWDCCA0ACCQDXqpBo3RUhkzANBgkqhkiG9w0BAQsFADBuMQswCQYDVQQGEwJl\nczEPMA0GA1UECAwGTWFkcmlkMQ8wDQYDVQQHDAZNYWRyaWQxDTALBgNVBAoMBE9r\ndGExDzANBgNVBAsMBkRYLUNEVDEdMBsGA1UEAwwURGV2ZWxvcGVyIEV4cGVyaWVu\nY2UwHhcNMjMwNTE2MDkzMzEzWhcNMzMwNTEzMDkzMzEzWjBuMQswCQYDVQQGEwJl\nczEPMA0GA1UECAwGTWFkcmlkMQ8wDQYDVQQHDAZNYWRyaWQxDTALBgNVBAoMBE9r\ndGExDzANBgNVBAsMBkRYLUNEVDEdMBsGA1UEAwwURGV2ZWxvcGVyIEV4cGVyaWVu\nY2UwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCupwRtoZtRk9qRaXD+\nYdtpM9dWo2vaprvNo+7J2YPlOtZB0zx7xykTEI5UMsESRwEATzVvepQzvswYBlca\n9k1nOcMBSmhkJPol9fbntWAbw4jvs/xXCtKCVOuiP2hffaeq1+6Kei8gXJKpytzN\nLPhbqpoNfqb87U4SM4pKFWSkbJSL0inUilrlc4sR9IGWs9jjCK21TpsUcb7GMZem\nv7MlZQfKQSFuTJgTs3aLJAiyF0yfYhCMbE/bFefRsTcZYnAEYfI3pLDAuZm4GjWD\nW0DCm43pO+jSRvEnbikVvFo6GAoTyUStifK44KVwhp4iPRkIrUCEMxK0mCMVJ9KF\ntaKWsFcJ5nQGJxBz6fj766Hl7SwuHvmSezzADF7/5kOAb8TnMfYsRFxak/iE/5s+\nOldEONHWuyVWuNIqEeI1DglscX02uK7jnuhUAyrCR0ayI3Ket+OvbviZIjiNyqfR\nchPuL7QyQl3CrWcTgZCqwjMzW2G9Y63k838mqL0gVhNPrH6QedOdSsnXbsjP+hS5\nPx2PRWqT+Z8otzZpfnD/pmtjoA3D93c1KJ+hFNlyIvD+R7go045l7OR5MKkgkOSO\nCXTqCSiq09XpZUQvwMtW516K5K/zOveai7V5DTmTHhCL5kthRYhA5WDfLWicG0ZP\nzl4p7gmxfmseQH/bHBSU2f+a+QIDAQABMA0GCSqGSIb3DQEBCwUAA4ICAQA7EOsl\nD5WQ+G6T0GhbyTmlC497aULzCdFfkMjlPN2MiVhje0G4u8C5zK6zEkmyWfRkqCIh\n54YLbaZu55MbvwbD64tTWqDMBmmna8HpulFcpi4RM9jGFMqx5/NSHBLqv/BC3UNt\n7c4y4YuLJkB07RljPv07k5sgf9/twF+v7UYVURfutoj0sjOImJMN66YVOTlNoGTS\nTOrDWByqc6eDHSFVU+0urrgos4iF5UN7ovfA8dLBiR7I4S5kVKSKO18UUB4qPIj0\nyMvTImrQXMepVtzaGae1V5BCyx37J12/STcUdE5urtSBjZyaugrTw+C+WHTcS829\nq5jOjmBJgFTIICz8IDTxPZIM+keVyodFOJKRtteT6vWnk8wq9k4U5HRxtdRKc52u\nd3RCO/B+RxbBLzFuKrM402LNe6j6+gek4boPkzfMbEIohJm1ukM4bATfP5gltsGe\n6UvXg7yaM+oW8jBPHK9w5azsqj+SuxqvARchHWRIrYAli5SePbUtmFKC/Lt+pKCK\nqxdawpr8EUrJXvHL3XoNHuGNbVuSm/ep+ge89UAbUEQ90A4w7fuSX5S+pr4nMOTi\nlNZtdWtIC9qcJ2Xmy5gZ+mAh3Wv+96IwQ9MWvtFEXquNNbvJdXVluUPVarNv3T1B\n8GMCiNZ0r6tknDJcnkjmRqiB8o/ExYXRnjHhGQ==\n-----END CERTIFICATE-----\n\n","alg":"RS256","parse_expiry_from_cert":true} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 284 + uncompressed: false + body: '{"id":"cred_1QAQfC1UPezVRd1L2iCRjQ","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:18:48.909Z","updated_at":"2024-08-30T19:18:48.909Z","expires_at":"2033-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 155.507417ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 98 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"signed_request_object":{"required":false,"credentials":[{"id":"cred_1QAQfC1UPezVRd1L2iCRjQ"}]}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":false,"credentials":[{"id":"cred_1QAQfC1UPezVRd1L2iCRjQ"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 159.136875ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":false,"credentials":[{"id":"cred_1QAQfC1UPezVRd1L2iCRjQ"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 167.221292ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_1QAQfC1UPezVRd1L2iCRjQ + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_1QAQfC1UPezVRd1L2iCRjQ","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:18:48.909Z","updated_at":"2024-08-30T19:18:48.909Z","expires_at":"2033-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 153.373833ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":false,"credentials":[{"id":"cred_1QAQfC1UPezVRd1L2iCRjQ"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 142.648542ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":false,"credentials":[{"id":"cred_1QAQfC1UPezVRd1L2iCRjQ"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 139.648667ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_1QAQfC1UPezVRd1L2iCRjQ + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_1QAQfC1UPezVRd1L2iCRjQ","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:18:48.909Z","updated_at":"2024-08-30T19:18:48.909Z","expires_at":"2033-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 141.738834ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":false,"credentials":[{"id":"cred_1QAQfC1UPezVRd1L2iCRjQ"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 147.028375ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":false,"credentials":[{"id":"cred_1QAQfC1UPezVRd1L2iCRjQ"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 157.293375ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_1QAQfC1UPezVRd1L2iCRjQ + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_1QAQfC1UPezVRd1L2iCRjQ","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:18:48.909Z","updated_at":"2024-08-30T19:18:48.909Z","expires_at":"2033-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 144.903958ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6?fields=client_id&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 165.889625ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 44 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"signed_request_object":{"required":true}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_1QAQfC1UPezVRd1L2iCRjQ"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 166.865125ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_1QAQfC1UPezVRd1L2iCRjQ"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 374.585083ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_1QAQfC1UPezVRd1L2iCRjQ + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_1QAQfC1UPezVRd1L2iCRjQ","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:18:48.909Z","updated_at":"2024-08-30T19:18:48.909Z","expires_at":"2033-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 143.053625ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_1QAQfC1UPezVRd1L2iCRjQ"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 147.773416ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_1QAQfC1UPezVRd1L2iCRjQ"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 140.092417ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_1QAQfC1UPezVRd1L2iCRjQ + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_1QAQfC1UPezVRd1L2iCRjQ","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:18:48.909Z","updated_at":"2024-08-30T19:18:48.909Z","expires_at":"2033-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 153.908333ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_1QAQfC1UPezVRd1L2iCRjQ"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 145.532375ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_1QAQfC1UPezVRd1L2iCRjQ"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 155.151458ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_1QAQfC1UPezVRd1L2iCRjQ + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_1QAQfC1UPezVRd1L2iCRjQ","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:18:48.909Z","updated_at":"2024-08-30T19:18:48.909Z","expires_at":"2033-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 135.044958ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6?fields=client_id%2Capp_type&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 136.477917ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"cred_1QAQfC1UPezVRd1L2iCRjQ","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:18:48.909Z","updated_at":"2024-08-30T19:18:48.909Z","expires_at":"2033-05-13T09:33:13.000Z"}]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 135.79525ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"client_authentication_methods":null,"token_endpoint_auth_method":"client_secret_post","signed_request_object":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 152.170167ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_1QAQfC1UPezVRd1L2iCRjQ + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 140.457083ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6?fields=client_id&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 170.579416ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2065 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Testing Credentials 1","credential_type":"public_key","pem":"-----BEGIN CERTIFICATE-----\nMIIFWDCCA0ACCQDXqpBo3RUhkzANBgkqhkiG9w0BAQsFADBuMQswCQYDVQQGEwJl\nczEPMA0GA1UECAwGTWFkcmlkMQ8wDQYDVQQHDAZNYWRyaWQxDTALBgNVBAoMBE9r\ndGExDzANBgNVBAsMBkRYLUNEVDEdMBsGA1UEAwwURGV2ZWxvcGVyIEV4cGVyaWVu\nY2UwHhcNMjMwNTE2MDkzMzEzWhcNMzMwNTEzMDkzMzEzWjBuMQswCQYDVQQGEwJl\nczEPMA0GA1UECAwGTWFkcmlkMQ8wDQYDVQQHDAZNYWRyaWQxDTALBgNVBAoMBE9r\ndGExDzANBgNVBAsMBkRYLUNEVDEdMBsGA1UEAwwURGV2ZWxvcGVyIEV4cGVyaWVu\nY2UwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCupwRtoZtRk9qRaXD+\nYdtpM9dWo2vaprvNo+7J2YPlOtZB0zx7xykTEI5UMsESRwEATzVvepQzvswYBlca\n9k1nOcMBSmhkJPol9fbntWAbw4jvs/xXCtKCVOuiP2hffaeq1+6Kei8gXJKpytzN\nLPhbqpoNfqb87U4SM4pKFWSkbJSL0inUilrlc4sR9IGWs9jjCK21TpsUcb7GMZem\nv7MlZQfKQSFuTJgTs3aLJAiyF0yfYhCMbE/bFefRsTcZYnAEYfI3pLDAuZm4GjWD\nW0DCm43pO+jSRvEnbikVvFo6GAoTyUStifK44KVwhp4iPRkIrUCEMxK0mCMVJ9KF\ntaKWsFcJ5nQGJxBz6fj766Hl7SwuHvmSezzADF7/5kOAb8TnMfYsRFxak/iE/5s+\nOldEONHWuyVWuNIqEeI1DglscX02uK7jnuhUAyrCR0ayI3Ket+OvbviZIjiNyqfR\nchPuL7QyQl3CrWcTgZCqwjMzW2G9Y63k838mqL0gVhNPrH6QedOdSsnXbsjP+hS5\nPx2PRWqT+Z8otzZpfnD/pmtjoA3D93c1KJ+hFNlyIvD+R7go045l7OR5MKkgkOSO\nCXTqCSiq09XpZUQvwMtW516K5K/zOveai7V5DTmTHhCL5kthRYhA5WDfLWicG0ZP\nzl4p7gmxfmseQH/bHBSU2f+a+QIDAQABMA0GCSqGSIb3DQEBCwUAA4ICAQA7EOsl\nD5WQ+G6T0GhbyTmlC497aULzCdFfkMjlPN2MiVhje0G4u8C5zK6zEkmyWfRkqCIh\n54YLbaZu55MbvwbD64tTWqDMBmmna8HpulFcpi4RM9jGFMqx5/NSHBLqv/BC3UNt\n7c4y4YuLJkB07RljPv07k5sgf9/twF+v7UYVURfutoj0sjOImJMN66YVOTlNoGTS\nTOrDWByqc6eDHSFVU+0urrgos4iF5UN7ovfA8dLBiR7I4S5kVKSKO18UUB4qPIj0\nyMvTImrQXMepVtzaGae1V5BCyx37J12/STcUdE5urtSBjZyaugrTw+C+WHTcS829\nq5jOjmBJgFTIICz8IDTxPZIM+keVyodFOJKRtteT6vWnk8wq9k4U5HRxtdRKc52u\nd3RCO/B+RxbBLzFuKrM402LNe6j6+gek4boPkzfMbEIohJm1ukM4bATfP5gltsGe\n6UvXg7yaM+oW8jBPHK9w5azsqj+SuxqvARchHWRIrYAli5SePbUtmFKC/Lt+pKCK\nqxdawpr8EUrJXvHL3XoNHuGNbVuSm/ep+ge89UAbUEQ90A4w7fuSX5S+pr4nMOTi\nlNZtdWtIC9qcJ2Xmy5gZ+mAh3Wv+96IwQ9MWvtFEXquNNbvJdXVluUPVarNv3T1B\n8GMCiNZ0r6tknDJcnkjmRqiB8o/ExYXRnjHhGQ==\n-----END CERTIFICATE-----\n\n","alg":"RS256","parse_expiry_from_cert":true} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 284 + uncompressed: false + body: '{"id":"cred_knDnfGdKLfNzmXFwuFyvvy","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:19:01.459Z","updated_at":"2024-08-30T19:19:01.459Z","expires_at":"2033-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 311.239959ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2118 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Testing Credentials 2","credential_type":"public_key","pem":"-----BEGIN CERTIFICATE-----\nMIIFZDCCA0wCCQDNZ2SmDG1sdTANBgkqhkiG9w0BAQsFADB0MQswCQYDVQQGEwJl\nczESMBAGA1UECAwJQmFyY2Vsb25hMRIwEAYDVQQHDAlCYXJjZWxvbmExDTALBgNV\nBAoMBE9rdGExDzANBgNVBAsMBkRYLUNEVDEdMBsGA1UEAwwURGV2ZWxvcGVyIEV4\ncGVyaWVuY2UwHhcNMjMwNTE2MTEyOTA4WhcNMzMwNTEzMTEyOTA4WjB0MQswCQYD\nVQQGEwJlczESMBAGA1UECAwJQmFyY2Vsb25hMRIwEAYDVQQHDAlCYXJjZWxvbmEx\nDTALBgNVBAoMBE9rdGExDzANBgNVBAsMBkRYLUNEVDEdMBsGA1UEAwwURGV2ZWxv\ncGVyIEV4cGVyaWVuY2UwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDs\nY0FIvVc7gPj3aCMG5kGzYW0lD6tBnaRBdXxTsagaowKjOHc3BkbjXzavdWe1bxVN\nKtI3Itak2G/FqdL7Oh+EU+dgwnE82vlxH4J0V25Y0Bc5rQmfWlRUPOkPvnnOTx2w\n+aSZgo+3QqK9aVoKvAmuG+xXbYgXRWNDlU3sljtsa+aACSyqLNFwEoFfTIZMryb5\nZv69Jc/vMEDweQbgrCEFzFmCqNGp5gVY3Bo/1BnayusP1j7xRd7NjAGl4X36X4F9\n5ARKlh/YM+MnCfQqnSYROJKndiV/MoFnaRPSSJ8wEX3cGFZzT9O9JfdgU4CMhd4b\nb4la0gpWAjADvIIQURk2P0SEokfHv5BRRk82+6BpsvSHb79RagFT2/CYfEMIrmB7\nBUNrQOO3aJF6ZViPVoP47DvOj50Lg6WSNX/1mCzxg2s4qZpqpKHhjng/xuqpG4HP\nqaNPROFxHnxtrx0vd9FtlY9+itmUxMy3usW2g+psGgNkEYF0xIR0hQKD15iOyeQh\nrnCLXTJd0PW5v6vPhDo3vWQm7jtIENjbbvdkTdyVbLMpn4+LnOGyE3Hzw66GW6ty\njdw9So6jlDGTQACapXd3eFczN3zPinapdnMz5m/21YoYoMjmNvYuCYS2MHrnBZZJ\n9RaJOfFj6E/8VyqWyC31SLTjyDEvwmJPJu3V+ZSy+QIDAQABMA0GCSqGSIb3DQEB\nCwUAA4ICAQAmhys6SSJLclpnq0GwiU2zQCYE/zFtalDTMclXXa8KJK7lsRZXccMu\nzawDjKtZ8H2C+RqF7e9bCGXtTTEpP65Oz9vXiLjCCS/GoC67AOlWNGIhBnQkoY1s\nTlJ+4kuBKXEXbYObyvh/ZgpYXXdNtDJ4VTP5NfdzlVI+aeI7HYvpSN2w4SvKvtWq\nLIQvlDUjwnELZ7gp9AJHUE+xfR9VIZ6ycd2n+k9lWSrzP8zhTrNe7N5++vzVitw3\nvNnJDPD9oa5PKQDJC64YLOHSSTCFLkNSwU3LjV+k8kfhlDW6zDJNx9pLDRf4vRN9\nmmxlWpfg71DHcB6ZUf10hmalLAq8F9acv3k7w0tQYh2M/f2Rfji76Wb2T+tLS0ve\n6wkxgrP1pNRWX1OeWpIJoEZGyFZd5ZrV99djN3N09gfORXWhAyQXzJz6A5Xg3m1f\nru1Dbr41GYY/77B1m6S5HtSTf/KpvW2EnISnL7pz0c4K5A1ZH0DBZhbFL/Fbvghz\nYqOj0xiWNk/RfmEVaYF7mquEMYzAzr8Ma9Ivj73bHV0SgtunOKehUlvjOKf7n+lX\ngpPrAm1Sgm0ao259gYOM7wsNkPDlsTxsnFOFnuJgAyPxWAZF0k8Z/jXWlbudD6b8\nzTeW4JXOP2p9PaUJB3asHy2CoUMkAh7mGOPPJD0y0deabEfo5+dE5A==\n-----END CERTIFICATE-----\n\n","alg":"RS256","parse_expiry_from_cert":false,"expires_at":"2025-05-13T09:33:13Z"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 284 + uncompressed: false + body: '{"id":"cred_cBPNRuwBEQyEnDEH2F1CTb","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:19:01.611Z","updated_at":"2024-08-30T19:19:01.611Z","expires_at":"2025-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 151.216167ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 134 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"signed_request_object":{"required":true,"credentials":[{"id":"cred_knDnfGdKLfNzmXFwuFyvvy"},{"id":"cred_cBPNRuwBEQyEnDEH2F1CTb"}]}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_knDnfGdKLfNzmXFwuFyvvy"},{"id":"cred_cBPNRuwBEQyEnDEH2F1CTb"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 150.214375ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_knDnfGdKLfNzmXFwuFyvvy"},{"id":"cred_cBPNRuwBEQyEnDEH2F1CTb"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 146.694916ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_knDnfGdKLfNzmXFwuFyvvy + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_knDnfGdKLfNzmXFwuFyvvy","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:19:01.459Z","updated_at":"2024-08-30T19:19:01.459Z","expires_at":"2033-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 159.183209ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_cBPNRuwBEQyEnDEH2F1CTb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_cBPNRuwBEQyEnDEH2F1CTb","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:19:01.611Z","updated_at":"2024-08-30T19:19:01.611Z","expires_at":"2025-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 145.059ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_knDnfGdKLfNzmXFwuFyvvy"},{"id":"cred_cBPNRuwBEQyEnDEH2F1CTb"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 144.418666ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_knDnfGdKLfNzmXFwuFyvvy"},{"id":"cred_cBPNRuwBEQyEnDEH2F1CTb"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 142.378375ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_knDnfGdKLfNzmXFwuFyvvy + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_knDnfGdKLfNzmXFwuFyvvy","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:19:01.459Z","updated_at":"2024-08-30T19:19:01.459Z","expires_at":"2033-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 141.93025ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_cBPNRuwBEQyEnDEH2F1CTb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_cBPNRuwBEQyEnDEH2F1CTb","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:19:01.611Z","updated_at":"2024-08-30T19:19:01.611Z","expires_at":"2025-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 143.495ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_knDnfGdKLfNzmXFwuFyvvy"},{"id":"cred_cBPNRuwBEQyEnDEH2F1CTb"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 153.26ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_knDnfGdKLfNzmXFwuFyvvy"},{"id":"cred_cBPNRuwBEQyEnDEH2F1CTb"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 147.671708ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_knDnfGdKLfNzmXFwuFyvvy + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_knDnfGdKLfNzmXFwuFyvvy","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:19:01.459Z","updated_at":"2024-08-30T19:19:01.459Z","expires_at":"2033-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 132.946375ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_cBPNRuwBEQyEnDEH2F1CTb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_cBPNRuwBEQyEnDEH2F1CTb","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:19:01.611Z","updated_at":"2024-08-30T19:19:01.611Z","expires_at":"2025-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 210.16775ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6?fields=client_id&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 134.722167ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 38 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"expires_at":"2050-05-13T09:33:13Z"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_knDnfGdKLfNzmXFwuFyvvy + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_knDnfGdKLfNzmXFwuFyvvy","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:19:01.459Z","updated_at":"2024-08-30T19:19:09.917Z","expires_at":"2050-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 141.382875ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_knDnfGdKLfNzmXFwuFyvvy"},{"id":"cred_cBPNRuwBEQyEnDEH2F1CTb"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 151.543416ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_knDnfGdKLfNzmXFwuFyvvy + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_knDnfGdKLfNzmXFwuFyvvy","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:19:01.459Z","updated_at":"2024-08-30T19:19:09.917Z","expires_at":"2050-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 137.613917ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_cBPNRuwBEQyEnDEH2F1CTb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_cBPNRuwBEQyEnDEH2F1CTb","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:19:01.611Z","updated_at":"2024-08-30T19:19:01.611Z","expires_at":"2025-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 139.636333ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_knDnfGdKLfNzmXFwuFyvvy"},{"id":"cred_cBPNRuwBEQyEnDEH2F1CTb"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 139.12775ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_knDnfGdKLfNzmXFwuFyvvy"},{"id":"cred_cBPNRuwBEQyEnDEH2F1CTb"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 150.025459ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_knDnfGdKLfNzmXFwuFyvvy + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_knDnfGdKLfNzmXFwuFyvvy","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:19:01.459Z","updated_at":"2024-08-30T19:19:09.917Z","expires_at":"2050-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 133.621292ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_cBPNRuwBEQyEnDEH2F1CTb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_cBPNRuwBEQyEnDEH2F1CTb","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:19:01.611Z","updated_at":"2024-08-30T19:19:01.611Z","expires_at":"2025-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 155.49625ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_knDnfGdKLfNzmXFwuFyvvy"},{"id":"cred_cBPNRuwBEQyEnDEH2F1CTb"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 174.430958ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_knDnfGdKLfNzmXFwuFyvvy"},{"id":"cred_cBPNRuwBEQyEnDEH2F1CTb"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 147.453708ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_knDnfGdKLfNzmXFwuFyvvy + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_knDnfGdKLfNzmXFwuFyvvy","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:19:01.459Z","updated_at":"2024-08-30T19:19:09.917Z","expires_at":"2050-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 141.231792ms + - id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_cBPNRuwBEQyEnDEH2F1CTb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_cBPNRuwBEQyEnDEH2F1CTb","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:19:01.611Z","updated_at":"2024-08-30T19:19:01.611Z","expires_at":"2025-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 139.642958ms + - id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6?fields=client_id%2Capp_type&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 139.581167ms + - id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"cred_cBPNRuwBEQyEnDEH2F1CTb","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:19:01.611Z","updated_at":"2024-08-30T19:19:01.611Z","expires_at":"2025-05-13T09:33:13.000Z"},{"id":"cred_knDnfGdKLfNzmXFwuFyvvy","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","name":"Testing Credentials 1","created_at":"2024-08-30T19:19:01.459Z","updated_at":"2024-08-30T19:19:09.917Z","expires_at":"2050-05-13T09:33:13.000Z"}]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 137.748417ms + - id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"client_authentication_methods":null,"token_endpoint_auth_method":"client_secret_post","signed_request_object":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 169.346208ms + - id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_cBPNRuwBEQyEnDEH2F1CTb + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 129.993875ms + - id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_knDnfGdKLfNzmXFwuFyvvy + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 142.052875ms + - id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6?fields=client_id&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 143.723125ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2087 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Testing Credentials 2","credential_type":"public_key","pem":"-----BEGIN CERTIFICATE-----\nMIIFZDCCA0wCCQDNZ2SmDG1sdTANBgkqhkiG9w0BAQsFADB0MQswCQYDVQQGEwJl\nczESMBAGA1UECAwJQmFyY2Vsb25hMRIwEAYDVQQHDAlCYXJjZWxvbmExDTALBgNV\nBAoMBE9rdGExDzANBgNVBAsMBkRYLUNEVDEdMBsGA1UEAwwURGV2ZWxvcGVyIEV4\ncGVyaWVuY2UwHhcNMjMwNTE2MTEyOTA4WhcNMzMwNTEzMTEyOTA4WjB0MQswCQYD\nVQQGEwJlczESMBAGA1UECAwJQmFyY2Vsb25hMRIwEAYDVQQHDAlCYXJjZWxvbmEx\nDTALBgNVBAoMBE9rdGExDzANBgNVBAsMBkRYLUNEVDEdMBsGA1UEAwwURGV2ZWxv\ncGVyIEV4cGVyaWVuY2UwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDs\nY0FIvVc7gPj3aCMG5kGzYW0lD6tBnaRBdXxTsagaowKjOHc3BkbjXzavdWe1bxVN\nKtI3Itak2G/FqdL7Oh+EU+dgwnE82vlxH4J0V25Y0Bc5rQmfWlRUPOkPvnnOTx2w\n+aSZgo+3QqK9aVoKvAmuG+xXbYgXRWNDlU3sljtsa+aACSyqLNFwEoFfTIZMryb5\nZv69Jc/vMEDweQbgrCEFzFmCqNGp5gVY3Bo/1BnayusP1j7xRd7NjAGl4X36X4F9\n5ARKlh/YM+MnCfQqnSYROJKndiV/MoFnaRPSSJ8wEX3cGFZzT9O9JfdgU4CMhd4b\nb4la0gpWAjADvIIQURk2P0SEokfHv5BRRk82+6BpsvSHb79RagFT2/CYfEMIrmB7\nBUNrQOO3aJF6ZViPVoP47DvOj50Lg6WSNX/1mCzxg2s4qZpqpKHhjng/xuqpG4HP\nqaNPROFxHnxtrx0vd9FtlY9+itmUxMy3usW2g+psGgNkEYF0xIR0hQKD15iOyeQh\nrnCLXTJd0PW5v6vPhDo3vWQm7jtIENjbbvdkTdyVbLMpn4+LnOGyE3Hzw66GW6ty\njdw9So6jlDGTQACapXd3eFczN3zPinapdnMz5m/21YoYoMjmNvYuCYS2MHrnBZZJ\n9RaJOfFj6E/8VyqWyC31SLTjyDEvwmJPJu3V+ZSy+QIDAQABMA0GCSqGSIb3DQEB\nCwUAA4ICAQAmhys6SSJLclpnq0GwiU2zQCYE/zFtalDTMclXXa8KJK7lsRZXccMu\nzawDjKtZ8H2C+RqF7e9bCGXtTTEpP65Oz9vXiLjCCS/GoC67AOlWNGIhBnQkoY1s\nTlJ+4kuBKXEXbYObyvh/ZgpYXXdNtDJ4VTP5NfdzlVI+aeI7HYvpSN2w4SvKvtWq\nLIQvlDUjwnELZ7gp9AJHUE+xfR9VIZ6ycd2n+k9lWSrzP8zhTrNe7N5++vzVitw3\nvNnJDPD9oa5PKQDJC64YLOHSSTCFLkNSwU3LjV+k8kfhlDW6zDJNx9pLDRf4vRN9\nmmxlWpfg71DHcB6ZUf10hmalLAq8F9acv3k7w0tQYh2M/f2Rfji76Wb2T+tLS0ve\n6wkxgrP1pNRWX1OeWpIJoEZGyFZd5ZrV99djN3N09gfORXWhAyQXzJz6A5Xg3m1f\nru1Dbr41GYY/77B1m6S5HtSTf/KpvW2EnISnL7pz0c4K5A1ZH0DBZhbFL/Fbvghz\nYqOj0xiWNk/RfmEVaYF7mquEMYzAzr8Ma9Ivj73bHV0SgtunOKehUlvjOKf7n+lX\ngpPrAm1Sgm0ao259gYOM7wsNkPDlsTxsnFOFnuJgAyPxWAZF0k8Z/jXWlbudD6b8\nzTeW4JXOP2p9PaUJB3asHy2CoUMkAh7mGOPPJD0y0deabEfo5+dE5A==\n-----END CERTIFICATE-----\n\n","alg":"RS256","expires_at":"2025-05-13T09:33:13Z"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 284 + uncompressed: false + body: '{"id":"cred_pyTW4VozAFcuRYwDCJ3CcP","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:19:19.754Z","updated_at":"2024-08-30T19:19:19.754Z","expires_at":"2025-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 145.884125ms + - id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 97 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"signed_request_object":{"required":true,"credentials":[{"id":"cred_pyTW4VozAFcuRYwDCJ3CcP"}]}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_pyTW4VozAFcuRYwDCJ3CcP"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 169.951625ms + - id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_pyTW4VozAFcuRYwDCJ3CcP"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 146.172708ms + - id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_pyTW4VozAFcuRYwDCJ3CcP + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_pyTW4VozAFcuRYwDCJ3CcP","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:19:19.754Z","updated_at":"2024-08-30T19:19:19.754Z","expires_at":"2025-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 132.833583ms + - id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_pyTW4VozAFcuRYwDCJ3CcP"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 137.838166ms + - id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_pyTW4VozAFcuRYwDCJ3CcP"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 183.545542ms + - id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_pyTW4VozAFcuRYwDCJ3CcP + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_pyTW4VozAFcuRYwDCJ3CcP","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:19:19.754Z","updated_at":"2024-08-30T19:19:19.754Z","expires_at":"2025-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 151.550917ms + - id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_pyTW4VozAFcuRYwDCJ3CcP"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 188.902166ms + - id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"required":true,"credentials":[{"id":"cred_pyTW4VozAFcuRYwDCJ3CcP"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 155.525917ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_pyTW4VozAFcuRYwDCJ3CcP + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_pyTW4VozAFcuRYwDCJ3CcP","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:19:19.754Z","updated_at":"2024-08-30T19:19:19.754Z","expires_at":"2025-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 162.011959ms + - id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6?fields=client_id%2Capp_type&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 149.952833ms + - id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"cred_pyTW4VozAFcuRYwDCJ3CcP","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:19:19.754Z","updated_at":"2024-08-30T19:19:19.754Z","expires_at":"2025-05-13T09:33:13.000Z"}]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 150.55375ms + - id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"client_authentication_methods":null,"token_endpoint_auth_method":"client_secret_post","signed_request_object":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 164.908875ms + - id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_pyTW4VozAFcuRYwDCJ3CcP + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 141.098834ms + - id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6?fields=client_id&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 152.841375ms + - id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 53 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"token_endpoint_auth_method":"client_secret_basic"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 152.517583ms + - id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 152.747084ms + - id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 148.832375ms + - id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 146.602625ms + - id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 149.759792ms + - id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 141.696417ms + - id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6?fields=client_id%2Capp_type&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 147.221125ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2 + uncompressed: false + body: '[]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 134.547791ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 52 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"token_endpoint_auth_method":"client_secret_post"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 149.703125ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6?fields=client_id&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 149.017ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2087 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Testing Credentials 2","credential_type":"public_key","pem":"-----BEGIN CERTIFICATE-----\nMIIFZDCCA0wCCQDNZ2SmDG1sdTANBgkqhkiG9w0BAQsFADB0MQswCQYDVQQGEwJl\nczESMBAGA1UECAwJQmFyY2Vsb25hMRIwEAYDVQQHDAlCYXJjZWxvbmExDTALBgNV\nBAoMBE9rdGExDzANBgNVBAsMBkRYLUNEVDEdMBsGA1UEAwwURGV2ZWxvcGVyIEV4\ncGVyaWVuY2UwHhcNMjMwNTE2MTEyOTA4WhcNMzMwNTEzMTEyOTA4WjB0MQswCQYD\nVQQGEwJlczESMBAGA1UECAwJQmFyY2Vsb25hMRIwEAYDVQQHDAlCYXJjZWxvbmEx\nDTALBgNVBAoMBE9rdGExDzANBgNVBAsMBkRYLUNEVDEdMBsGA1UEAwwURGV2ZWxv\ncGVyIEV4cGVyaWVuY2UwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDs\nY0FIvVc7gPj3aCMG5kGzYW0lD6tBnaRBdXxTsagaowKjOHc3BkbjXzavdWe1bxVN\nKtI3Itak2G/FqdL7Oh+EU+dgwnE82vlxH4J0V25Y0Bc5rQmfWlRUPOkPvnnOTx2w\n+aSZgo+3QqK9aVoKvAmuG+xXbYgXRWNDlU3sljtsa+aACSyqLNFwEoFfTIZMryb5\nZv69Jc/vMEDweQbgrCEFzFmCqNGp5gVY3Bo/1BnayusP1j7xRd7NjAGl4X36X4F9\n5ARKlh/YM+MnCfQqnSYROJKndiV/MoFnaRPSSJ8wEX3cGFZzT9O9JfdgU4CMhd4b\nb4la0gpWAjADvIIQURk2P0SEokfHv5BRRk82+6BpsvSHb79RagFT2/CYfEMIrmB7\nBUNrQOO3aJF6ZViPVoP47DvOj50Lg6WSNX/1mCzxg2s4qZpqpKHhjng/xuqpG4HP\nqaNPROFxHnxtrx0vd9FtlY9+itmUxMy3usW2g+psGgNkEYF0xIR0hQKD15iOyeQh\nrnCLXTJd0PW5v6vPhDo3vWQm7jtIENjbbvdkTdyVbLMpn4+LnOGyE3Hzw66GW6ty\njdw9So6jlDGTQACapXd3eFczN3zPinapdnMz5m/21YoYoMjmNvYuCYS2MHrnBZZJ\n9RaJOfFj6E/8VyqWyC31SLTjyDEvwmJPJu3V+ZSy+QIDAQABMA0GCSqGSIb3DQEB\nCwUAA4ICAQAmhys6SSJLclpnq0GwiU2zQCYE/zFtalDTMclXXa8KJK7lsRZXccMu\nzawDjKtZ8H2C+RqF7e9bCGXtTTEpP65Oz9vXiLjCCS/GoC67AOlWNGIhBnQkoY1s\nTlJ+4kuBKXEXbYObyvh/ZgpYXXdNtDJ4VTP5NfdzlVI+aeI7HYvpSN2w4SvKvtWq\nLIQvlDUjwnELZ7gp9AJHUE+xfR9VIZ6ycd2n+k9lWSrzP8zhTrNe7N5++vzVitw3\nvNnJDPD9oa5PKQDJC64YLOHSSTCFLkNSwU3LjV+k8kfhlDW6zDJNx9pLDRf4vRN9\nmmxlWpfg71DHcB6ZUf10hmalLAq8F9acv3k7w0tQYh2M/f2Rfji76Wb2T+tLS0ve\n6wkxgrP1pNRWX1OeWpIJoEZGyFZd5ZrV99djN3N09gfORXWhAyQXzJz6A5Xg3m1f\nru1Dbr41GYY/77B1m6S5HtSTf/KpvW2EnISnL7pz0c4K5A1ZH0DBZhbFL/Fbvghz\nYqOj0xiWNk/RfmEVaYF7mquEMYzAzr8Ma9Ivj73bHV0SgtunOKehUlvjOKf7n+lX\ngpPrAm1Sgm0ao259gYOM7wsNkPDlsTxsnFOFnuJgAyPxWAZF0k8Z/jXWlbudD6b8\nzTeW4JXOP2p9PaUJB3asHy2CoUMkAh7mGOPPJD0y0deabEfo5+dE5A==\n-----END CERTIFICATE-----\n\n","alg":"RS256","expires_at":"2025-05-13T09:33:13Z"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 284 + uncompressed: false + body: '{"id":"cred_ame6E9epnstP4e59o7SkZU","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:19:37.359Z","updated_at":"2024-08-30T19:19:37.359Z","expires_at":"2025-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 148.749542ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 81 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"signed_request_object":{"credentials":[{"id":"cred_ame6E9epnstP4e59o7SkZU"}]}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"credentials":[{"id":"cred_ame6E9epnstP4e59o7SkZU"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 165.19025ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"credentials":[{"id":"cred_ame6E9epnstP4e59o7SkZU"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 137.799291ms + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_ame6E9epnstP4e59o7SkZU + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_ame6E9epnstP4e59o7SkZU","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:19:37.359Z","updated_at":"2024-08-30T19:19:37.359Z","expires_at":"2025-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 131.014958ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"credentials":[{"id":"cred_ame6E9epnstP4e59o7SkZU"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 147.748958ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"credentials":[{"id":"cred_ame6E9epnstP4e59o7SkZU"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 137.642042ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_ame6E9epnstP4e59o7SkZU + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_ame6E9epnstP4e59o7SkZU","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:19:37.359Z","updated_at":"2024-08-30T19:19:37.359Z","expires_at":"2025-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 145.886167ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"credentials":[{"id":"cred_ame6E9epnstP4e59o7SkZU"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 166.272958ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"signed_request_object":{"credentials":[{"id":"cred_ame6E9epnstP4e59o7SkZU"}]}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 167.1195ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_ame6E9epnstP4e59o7SkZU + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_ame6E9epnstP4e59o7SkZU","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:19:37.359Z","updated_at":"2024-08-30T19:19:37.359Z","expires_at":"2025-05-13T09:33:13.000Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 131.389459ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6?fields=client_id%2Capp_type&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 153.040791ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"cred_ame6E9epnstP4e59o7SkZU","credential_type":"public_key","kid":"FnNtsjkgcpkHjrTJqenDiJx31_g8n_-wWtYUUPn4FyM","alg":"RS256","name":"Testing Credentials 2","created_at":"2024-08-30T19:19:37.359Z","updated_at":"2024-08-30T19:19:37.359Z","expires_at":"2025-05-13T09:33:13.000Z"}]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 132.662375ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"client_authentication_methods":null,"token_endpoint_auth_method":"client_secret_post","signed_request_object":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 176.901666ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6/credentials/cred_ame6E9epnstP4e59o7SkZU + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 148.797083ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 137.900459ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 145.587333ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsSignedRequestObject","client_id":"feennC5Q7Ko35fUVG60ku5m3djQB8jP6","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 143.13175ms + - id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/feennC5Q7Ko35fUVG60ku5m3djQB8jP6 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 217.978792ms diff --git a/test/data/recordings/TestAccClientAuthenticationMethodsTLSClientAuth.yaml b/test/data/recordings/TestAccClientAuthenticationMethodsTLSClientAuth.yaml new file mode 100644 index 00000000..8e90df97 --- /dev/null +++ b/test/data/recordings/TestAccClientAuthenticationMethodsTLSClientAuth.yaml @@ -0,0 +1,2643 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 177 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","app_type":"non_interactive","token_endpoint_auth_method":"client_secret_post"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: false + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 303.468833ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 133.338291ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs?fields=client_id&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 140.340584ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 139.352709ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 149.371291ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs?fields=client_id%2Capp_type&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 150.600667ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs/credentials?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2 + uncompressed: false + body: '[]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 133.985833ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 52 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"token_endpoint_auth_method":"client_secret_post"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 148.141959ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs?fields=client_id&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 177.021333ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 137.922041ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 170.436417ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs?fields=client_id%2Capp_type&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 183.405208ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs/credentials?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2 + uncompressed: false + body: '[]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 134.01775ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 52 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"token_endpoint_auth_method":"client_secret_post"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 217.107792ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 163 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","app_type":"non_interactive","jwt_configuration":{"alg":"RS256"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 149.93775ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 164.644458ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs?fields=client_id&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 146.893875ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2026 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Testing Credentials 1","credential_type":"cert_subject_dn","pem":"-----BEGIN CERTIFICATE-----\nMIIFWDCCA0ACCQDXqpBo3RUhkzANBgkqhkiG9w0BAQsFADBuMQswCQYDVQQGEwJl\nczEPMA0GA1UECAwGTWFkcmlkMQ8wDQYDVQQHDAZNYWRyaWQxDTALBgNVBAoMBE9r\ndGExDzANBgNVBAsMBkRYLUNEVDEdMBsGA1UEAwwURGV2ZWxvcGVyIEV4cGVyaWVu\nY2UwHhcNMjMwNTE2MDkzMzEzWhcNMzMwNTEzMDkzMzEzWjBuMQswCQYDVQQGEwJl\nczEPMA0GA1UECAwGTWFkcmlkMQ8wDQYDVQQHDAZNYWRyaWQxDTALBgNVBAoMBE9r\ndGExDzANBgNVBAsMBkRYLUNEVDEdMBsGA1UEAwwURGV2ZWxvcGVyIEV4cGVyaWVu\nY2UwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCupwRtoZtRk9qRaXD+\nYdtpM9dWo2vaprvNo+7J2YPlOtZB0zx7xykTEI5UMsESRwEATzVvepQzvswYBlca\n9k1nOcMBSmhkJPol9fbntWAbw4jvs/xXCtKCVOuiP2hffaeq1+6Kei8gXJKpytzN\nLPhbqpoNfqb87U4SM4pKFWSkbJSL0inUilrlc4sR9IGWs9jjCK21TpsUcb7GMZem\nv7MlZQfKQSFuTJgTs3aLJAiyF0yfYhCMbE/bFefRsTcZYnAEYfI3pLDAuZm4GjWD\nW0DCm43pO+jSRvEnbikVvFo6GAoTyUStifK44KVwhp4iPRkIrUCEMxK0mCMVJ9KF\ntaKWsFcJ5nQGJxBz6fj766Hl7SwuHvmSezzADF7/5kOAb8TnMfYsRFxak/iE/5s+\nOldEONHWuyVWuNIqEeI1DglscX02uK7jnuhUAyrCR0ayI3Ket+OvbviZIjiNyqfR\nchPuL7QyQl3CrWcTgZCqwjMzW2G9Y63k838mqL0gVhNPrH6QedOdSsnXbsjP+hS5\nPx2PRWqT+Z8otzZpfnD/pmtjoA3D93c1KJ+hFNlyIvD+R7go045l7OR5MKkgkOSO\nCXTqCSiq09XpZUQvwMtW516K5K/zOveai7V5DTmTHhCL5kthRYhA5WDfLWicG0ZP\nzl4p7gmxfmseQH/bHBSU2f+a+QIDAQABMA0GCSqGSIb3DQEBCwUAA4ICAQA7EOsl\nD5WQ+G6T0GhbyTmlC497aULzCdFfkMjlPN2MiVhje0G4u8C5zK6zEkmyWfRkqCIh\n54YLbaZu55MbvwbD64tTWqDMBmmna8HpulFcpi4RM9jGFMqx5/NSHBLqv/BC3UNt\n7c4y4YuLJkB07RljPv07k5sgf9/twF+v7UYVURfutoj0sjOImJMN66YVOTlNoGTS\nTOrDWByqc6eDHSFVU+0urrgos4iF5UN7ovfA8dLBiR7I4S5kVKSKO18UUB4qPIj0\nyMvTImrQXMepVtzaGae1V5BCyx37J12/STcUdE5urtSBjZyaugrTw+C+WHTcS829\nq5jOjmBJgFTIICz8IDTxPZIM+keVyodFOJKRtteT6vWnk8wq9k4U5HRxtdRKc52u\nd3RCO/B+RxbBLzFuKrM402LNe6j6+gek4boPkzfMbEIohJm1ukM4bATfP5gltsGe\n6UvXg7yaM+oW8jBPHK9w5azsqj+SuxqvARchHWRIrYAli5SePbUtmFKC/Lt+pKCK\nqxdawpr8EUrJXvHL3XoNHuGNbVuSm/ep+ge89UAbUEQ90A4w7fuSX5S+pr4nMOTi\nlNZtdWtIC9qcJ2Xmy5gZ+mAh3Wv+96IwQ9MWvtFEXquNNbvJdXVluUPVarNv3T1B\n8GMCiNZ0r6tknDJcnkjmRqiB8o/ExYXRnjHhGQ==\n-----END CERTIFICATE-----\n\n"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs/credentials + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 268 + uncompressed: false + body: '{"id":"cred_3C1xrznjqgCGDhJ77haFPz","credential_type":"cert_subject_dn","name":"Testing Credentials 1","subject_dn":"C=es\nST=Madrid\nL=Madrid\nO=Okta\nOU=DX-CDT\nCN=Developer Experience","created_at":"2024-08-30T19:19:52.171Z","updated_at":"2024-08-30T19:19:52.171Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 178.515334ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 143 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"client_authentication_methods":{"tls_client_auth":{"credentials":[{"id":"cred_3C1xrznjqgCGDhJ77haFPz"}]}},"token_endpoint_auth_method":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"tls_client_auth":{"credentials":[{"id":"cred_3C1xrznjqgCGDhJ77haFPz"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 150.918916ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"tls_client_auth":{"credentials":[{"id":"cred_3C1xrznjqgCGDhJ77haFPz"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 154.08525ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs/credentials/cred_3C1xrznjqgCGDhJ77haFPz + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_3C1xrznjqgCGDhJ77haFPz","credential_type":"cert_subject_dn","name":"Testing Credentials 1","subject_dn":"C=es\nST=Madrid\nL=Madrid\nO=Okta\nOU=DX-CDT\nCN=Developer Experience","created_at":"2024-08-30T19:19:52.171Z","updated_at":"2024-08-30T19:19:52.171Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 155.795458ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"tls_client_auth":{"credentials":[{"id":"cred_3C1xrznjqgCGDhJ77haFPz"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 146.984792ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"tls_client_auth":{"credentials":[{"id":"cred_3C1xrznjqgCGDhJ77haFPz"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 157.158666ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs/credentials/cred_3C1xrznjqgCGDhJ77haFPz + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_3C1xrznjqgCGDhJ77haFPz","credential_type":"cert_subject_dn","name":"Testing Credentials 1","subject_dn":"C=es\nST=Madrid\nL=Madrid\nO=Okta\nOU=DX-CDT\nCN=Developer Experience","created_at":"2024-08-30T19:19:52.171Z","updated_at":"2024-08-30T19:19:52.171Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 136.504709ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"tls_client_auth":{"credentials":[{"id":"cred_3C1xrznjqgCGDhJ77haFPz"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 172.048125ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"tls_client_auth":{"credentials":[{"id":"cred_3C1xrznjqgCGDhJ77haFPz"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 153.043083ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs/credentials/cred_3C1xrznjqgCGDhJ77haFPz + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_3C1xrznjqgCGDhJ77haFPz","credential_type":"cert_subject_dn","name":"Testing Credentials 1","subject_dn":"C=es\nST=Madrid\nL=Madrid\nO=Okta\nOU=DX-CDT\nCN=Developer Experience","created_at":"2024-08-30T19:19:52.171Z","updated_at":"2024-08-30T19:19:52.171Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 136.951417ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs?fields=client_id%2Capp_type&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 159.925875ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs/credentials?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"cred_3C1xrznjqgCGDhJ77haFPz","credential_type":"cert_subject_dn","name":"Testing Credentials 1","subject_dn":"C=es\nST=Madrid\nL=Madrid\nO=Okta\nOU=DX-CDT\nCN=Developer Experience","created_at":"2024-08-30T19:19:52.171Z","updated_at":"2024-08-30T19:19:52.171Z"}]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 147.752709ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"client_authentication_methods":null,"token_endpoint_auth_method":"client_secret_post","signed_request_object":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 153.768292ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs/credentials/cred_3C1xrznjqgCGDhJ77haFPz + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 137.312875ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs?fields=client_id&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 143.402708ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 154 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Testing Credentials 1","credential_type":"cert_subject_dn","subject_dn":"C=es\nST=Madrid\nL=Madrid\nO=Okta\nOU=DX-CDT\nCN=Developer Experience"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs/credentials + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 268 + uncompressed: false + body: '{"id":"cred_9X57EQHgLqq1sBvC9kXGc9","credential_type":"cert_subject_dn","name":"Testing Credentials 1","subject_dn":"C=es\nST=Madrid\nL=Madrid\nO=Okta\nOU=DX-CDT\nCN=Developer Experience","created_at":"2024-08-30T19:20:01.818Z","updated_at":"2024-08-30T19:20:01.818Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 149.083ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 143 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"client_authentication_methods":{"tls_client_auth":{"credentials":[{"id":"cred_9X57EQHgLqq1sBvC9kXGc9"}]}},"token_endpoint_auth_method":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"tls_client_auth":{"credentials":[{"id":"cred_9X57EQHgLqq1sBvC9kXGc9"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 162.052458ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"tls_client_auth":{"credentials":[{"id":"cred_9X57EQHgLqq1sBvC9kXGc9"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 140.253625ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs/credentials/cred_9X57EQHgLqq1sBvC9kXGc9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_9X57EQHgLqq1sBvC9kXGc9","credential_type":"cert_subject_dn","name":"Testing Credentials 1","subject_dn":"C=es\nST=Madrid\nL=Madrid\nO=Okta\nOU=DX-CDT\nCN=Developer Experience","created_at":"2024-08-30T19:20:01.818Z","updated_at":"2024-08-30T19:20:01.818Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 135.162ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"tls_client_auth":{"credentials":[{"id":"cred_9X57EQHgLqq1sBvC9kXGc9"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 155.662833ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"tls_client_auth":{"credentials":[{"id":"cred_9X57EQHgLqq1sBvC9kXGc9"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 142.829459ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs/credentials/cred_9X57EQHgLqq1sBvC9kXGc9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_9X57EQHgLqq1sBvC9kXGc9","credential_type":"cert_subject_dn","name":"Testing Credentials 1","subject_dn":"C=es\nST=Madrid\nL=Madrid\nO=Okta\nOU=DX-CDT\nCN=Developer Experience","created_at":"2024-08-30T19:20:01.818Z","updated_at":"2024-08-30T19:20:01.818Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 136.94875ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"tls_client_auth":{"credentials":[{"id":"cred_9X57EQHgLqq1sBvC9kXGc9"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 148.515875ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"tls_client_auth":{"credentials":[{"id":"cred_9X57EQHgLqq1sBvC9kXGc9"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 147.158875ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs/credentials/cred_9X57EQHgLqq1sBvC9kXGc9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_9X57EQHgLqq1sBvC9kXGc9","credential_type":"cert_subject_dn","name":"Testing Credentials 1","subject_dn":"C=es\nST=Madrid\nL=Madrid\nO=Okta\nOU=DX-CDT\nCN=Developer Experience","created_at":"2024-08-30T19:20:01.818Z","updated_at":"2024-08-30T19:20:01.818Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 158.692292ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs?fields=client_id%2Capp_type&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 141.288875ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs/credentials?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"cred_9X57EQHgLqq1sBvC9kXGc9","credential_type":"cert_subject_dn","name":"Testing Credentials 1","subject_dn":"C=es\nST=Madrid\nL=Madrid\nO=Okta\nOU=DX-CDT\nCN=Developer Experience","created_at":"2024-08-30T19:20:01.818Z","updated_at":"2024-08-30T19:20:01.818Z"}]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 133.671ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"client_authentication_methods":null,"token_endpoint_auth_method":"client_secret_post","signed_request_object":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 148.388375ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs/credentials/cred_9X57EQHgLqq1sBvC9kXGc9 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 136.707167ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs?fields=client_id&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 158.073584ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 53 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"token_endpoint_auth_method":"client_secret_basic"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 164.859ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 143.815708ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 151.690375ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 158.867667ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 149.335ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 138.781333ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs?fields=client_id%2Capp_type&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 141.111ms + - id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs/credentials?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2 + uncompressed: false + body: '[]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 142.337583ms + - id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 52 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"token_endpoint_auth_method":"client_secret_post"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 155.365833ms + - id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs?fields=client_id&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 135.718584ms + - id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 154 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Testing Credentials 1","credential_type":"cert_subject_dn","subject_dn":"C=es\nST=Madrid\nL=Madrid\nO=Okta\nOU=DX-CDT\nCN=Developer Experience"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs/credentials + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 268 + uncompressed: false + body: '{"id":"cred_iMKzPfmnFh3RERkh6m4wgn","credential_type":"cert_subject_dn","name":"Testing Credentials 1","subject_dn":"C=es\nST=Madrid\nL=Madrid\nO=Okta\nOU=DX-CDT\nCN=Developer Experience","created_at":"2024-08-30T19:20:18.221Z","updated_at":"2024-08-30T19:20:18.221Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 146.658125ms + - id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 143 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"client_authentication_methods":{"tls_client_auth":{"credentials":[{"id":"cred_iMKzPfmnFh3RERkh6m4wgn"}]}},"token_endpoint_auth_method":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"tls_client_auth":{"credentials":[{"id":"cred_iMKzPfmnFh3RERkh6m4wgn"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 163.451167ms + - id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"tls_client_auth":{"credentials":[{"id":"cred_iMKzPfmnFh3RERkh6m4wgn"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 145.214875ms + - id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs/credentials/cred_iMKzPfmnFh3RERkh6m4wgn + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_iMKzPfmnFh3RERkh6m4wgn","credential_type":"cert_subject_dn","name":"Testing Credentials 1","subject_dn":"C=es\nST=Madrid\nL=Madrid\nO=Okta\nOU=DX-CDT\nCN=Developer Experience","created_at":"2024-08-30T19:20:18.221Z","updated_at":"2024-08-30T19:20:18.221Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 143.022083ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"tls_client_auth":{"credentials":[{"id":"cred_iMKzPfmnFh3RERkh6m4wgn"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 160.767042ms + - id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"tls_client_auth":{"credentials":[{"id":"cred_iMKzPfmnFh3RERkh6m4wgn"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 144.462667ms + - id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs/credentials/cred_iMKzPfmnFh3RERkh6m4wgn + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_iMKzPfmnFh3RERkh6m4wgn","credential_type":"cert_subject_dn","name":"Testing Credentials 1","subject_dn":"C=es\nST=Madrid\nL=Madrid\nO=Okta\nOU=DX-CDT\nCN=Developer Experience","created_at":"2024-08-30T19:20:18.221Z","updated_at":"2024-08-30T19:20:18.221Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 146.472ms + - id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"tls_client_auth":{"credentials":[{"id":"cred_iMKzPfmnFh3RERkh6m4wgn"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 152.239792ms + - id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"tls_client_auth":{"credentials":[{"id":"cred_iMKzPfmnFh3RERkh6m4wgn"}]}}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 201.31175ms + - id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs/credentials/cred_iMKzPfmnFh3RERkh6m4wgn + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"cred_iMKzPfmnFh3RERkh6m4wgn","credential_type":"cert_subject_dn","name":"Testing Credentials 1","subject_dn":"C=es\nST=Madrid\nL=Madrid\nO=Okta\nOU=DX-CDT\nCN=Developer Experience","created_at":"2024-08-30T19:20:18.221Z","updated_at":"2024-08-30T19:20:18.221Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 184.680292ms + - id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs?fields=client_id%2Capp_type&include_fields=true + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 160.505542ms + - id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs/credentials?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"id":"cred_iMKzPfmnFh3RERkh6m4wgn","credential_type":"cert_subject_dn","name":"Testing Credentials 1","subject_dn":"C=es\nST=Madrid\nL=Madrid\nO=Okta\nOU=DX-CDT\nCN=Developer Experience","created_at":"2024-08-30T19:20:18.221Z","updated_at":"2024-08-30T19:20:18.221Z"}]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 138.030459ms + - id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 118 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"client_authentication_methods":null,"token_endpoint_auth_method":"client_secret_post","signed_request_object":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 165.094792ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs/credentials/cred_iMKzPfmnFh3RERkh6m4wgn + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 142.617834ms + - id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 155.027708ms + - id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 140.096ms + - id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance Test - Client Credentials - TestAccClientAuthenticationMethodsTLSClientAuth","client_id":"TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256","lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 146.467ms + - id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TJKtN7JarwNJzwlEwbp6uBpl2w6MHscs + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 211.823292ms diff --git a/test/data/recordings/TestAccClientCanSetDefaultAuthMethodOnCreate.yaml b/test/data/recordings/TestAccClientCanSetDefaultAuthMethodOnCreate.yaml index fa5dc3fb..ecd4124c 100644 --- a/test/data/recordings/TestAccClientCanSetDefaultAuthMethodOnCreate.yaml +++ b/test/data/recordings/TestAccClientCanSetDefaultAuthMethodOnCreate.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 + - Go-Auth0/1.9.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients method: POST response: @@ -30,33 +30,32 @@ interactions: trailer: {} content_length: -1 uncompressed: false - body: '{"name":"Test IP Header Trusted - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"eMI56Ll9xPlOCBHKlApRxJlAbBXmh6jl","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":true,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Test IP Header Trusted - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"rGpZRiWbGsusE3MJw5ZYcwaiY5yxemo1","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":true,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 333.610333ms + duration: 296.340209ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/eMI56Ll9xPlOCBHKlApRxJlAbBXmh6jl + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/rGpZRiWbGsusE3MJw5ZYcwaiY5yxemo1 method: GET response: proto: HTTP/2.0 @@ -66,33 +65,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test IP Header Trusted - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"eMI56Ll9xPlOCBHKlApRxJlAbBXmh6jl","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":true,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Test IP Header Trusted - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"rGpZRiWbGsusE3MJw5ZYcwaiY5yxemo1","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":true,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 127.184667ms + duration: 159.385625ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/eMI56Ll9xPlOCBHKlApRxJlAbBXmh6jl + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/rGpZRiWbGsusE3MJw5ZYcwaiY5yxemo1 method: GET response: proto: HTTP/2.0 @@ -102,33 +100,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test IP Header Trusted - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"eMI56Ll9xPlOCBHKlApRxJlAbBXmh6jl","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":true,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Test IP Header Trusted - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"rGpZRiWbGsusE3MJw5ZYcwaiY5yxemo1","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":true,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 125.498292ms + duration: 159.761333ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/eMI56Ll9xPlOCBHKlApRxJlAbBXmh6jl + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/rGpZRiWbGsusE3MJw5ZYcwaiY5yxemo1 method: GET response: proto: HTTP/2.0 @@ -138,33 +135,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test IP Header Trusted - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"eMI56Ll9xPlOCBHKlApRxJlAbBXmh6jl","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":true,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Test IP Header Trusted - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"rGpZRiWbGsusE3MJw5ZYcwaiY5yxemo1","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":true,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.656958ms + duration: 156.658083ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/eMI56Ll9xPlOCBHKlApRxJlAbBXmh6jl + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/rGpZRiWbGsusE3MJw5ZYcwaiY5yxemo1 method: GET response: proto: HTTP/2.0 @@ -174,33 +170,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test IP Header Trusted - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"eMI56Ll9xPlOCBHKlApRxJlAbBXmh6jl","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":true,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Test IP Header Trusted - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"rGpZRiWbGsusE3MJw5ZYcwaiY5yxemo1","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":true,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.963334ms + duration: 158.903542ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/eMI56Ll9xPlOCBHKlApRxJlAbBXmh6jl + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/rGpZRiWbGsusE3MJw5ZYcwaiY5yxemo1 method: GET response: proto: HTTP/2.0 @@ -210,33 +205,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test IP Header Trusted - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"eMI56Ll9xPlOCBHKlApRxJlAbBXmh6jl","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":true,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Test IP Header Trusted - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"rGpZRiWbGsusE3MJw5ZYcwaiY5yxemo1","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":true,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 205.803125ms + duration: 159.440083ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/eMI56Ll9xPlOCBHKlApRxJlAbBXmh6jl?fields=client_id%2Capp_type&include_fields=true + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/rGpZRiWbGsusE3MJw5ZYcwaiY5yxemo1?fields=client_id%2Capp_type&include_fields=true method: GET response: proto: HTTP/2.0 @@ -246,14 +240,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"eMI56Ll9xPlOCBHKlApRxJlAbBXmh6jl","signing_keys":[{"cert":"[REDACTED]"}]}' + body: '{"client_id":"rGpZRiWbGsusE3MJw5ZYcwaiY5yxemo1","signing_keys":[{"cert":"[REDACTED]"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 139.06175ms + duration: 150.791083ms - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/rGpZRiWbGsusE3MJw5ZYcwaiY5yxemo1/credentials?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2 + uncompressed: false + body: '[]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 144.11175ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -271,8 +300,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/eMI56Ll9xPlOCBHKlApRxJlAbBXmh6jl + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/rGpZRiWbGsusE3MJw5ZYcwaiY5yxemo1 method: PATCH response: proto: HTTP/2.0 @@ -282,33 +311,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test IP Header Trusted - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"eMI56Ll9xPlOCBHKlApRxJlAbBXmh6jl","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":true,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Test IP Header Trusted - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"rGpZRiWbGsusE3MJw5ZYcwaiY5yxemo1","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":true,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 175.9975ms - - id: 8 + duration: 171.489708ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/eMI56Ll9xPlOCBHKlApRxJlAbBXmh6jl + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/rGpZRiWbGsusE3MJw5ZYcwaiY5yxemo1 method: GET response: proto: HTTP/2.0 @@ -318,33 +346,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test IP Header Trusted - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"eMI56Ll9xPlOCBHKlApRxJlAbBXmh6jl","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":true,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Test IP Header Trusted - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"rGpZRiWbGsusE3MJw5ZYcwaiY5yxemo1","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":true,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 219.357875ms - - id: 9 + duration: 150.694ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/eMI56Ll9xPlOCBHKlApRxJlAbBXmh6jl + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/rGpZRiWbGsusE3MJw5ZYcwaiY5yxemo1 method: GET response: proto: HTTP/2.0 @@ -354,14 +381,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test IP Header Trusted - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"eMI56Ll9xPlOCBHKlApRxJlAbBXmh6jl","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":true,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Test IP Header Trusted - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"rGpZRiWbGsusE3MJw5ZYcwaiY5yxemo1","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":true,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_basic","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.469167ms - - id: 10 + duration: 161.490042ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -378,8 +405,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/eMI56Ll9xPlOCBHKlApRxJlAbBXmh6jl + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/rGpZRiWbGsusE3MJw5ZYcwaiY5yxemo1 method: DELETE response: proto: HTTP/2.0 @@ -395,8 +422,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 167.234125ms - - id: 11 + duration: 233.823333ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -414,7 +441,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 + - Go-Auth0/1.9.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients method: POST response: @@ -425,33 +452,32 @@ interactions: trailer: {} content_length: -1 uncompressed: false - body: '{"name":"Test Device Code Grant - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"Duu7y4qJxJBD9NpcPPU8HIaYJisDXeUP","client_secret":"[REDACTED]","app_type":"native","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":true,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["urn:ietf:params:oauth:grant-type:device_code"],"custom_login_page_on":true,"token_endpoint_auth_method":"none","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Test Device Code Grant - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"6xbr6L7NnaIT6zuaD1U6BKUQatrl0I4J","client_secret":"[REDACTED]","app_type":"native","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":true,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["urn:ietf:params:oauth:grant-type:device_code"],"custom_login_page_on":true,"token_endpoint_auth_method":"none","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 333.837667ms - - id: 12 + duration: 282.750333ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Duu7y4qJxJBD9NpcPPU8HIaYJisDXeUP + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/6xbr6L7NnaIT6zuaD1U6BKUQatrl0I4J method: GET response: proto: HTTP/2.0 @@ -461,33 +487,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test Device Code Grant - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"Duu7y4qJxJBD9NpcPPU8HIaYJisDXeUP","client_secret":"[REDACTED]","app_type":"native","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":true,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["urn:ietf:params:oauth:grant-type:device_code"],"custom_login_page_on":true,"token_endpoint_auth_method":"none","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Test Device Code Grant - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"6xbr6L7NnaIT6zuaD1U6BKUQatrl0I4J","client_secret":"[REDACTED]","app_type":"native","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":true,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["urn:ietf:params:oauth:grant-type:device_code"],"custom_login_page_on":true,"token_endpoint_auth_method":"none","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.824333ms - - id: 13 + duration: 170.574208ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Duu7y4qJxJBD9NpcPPU8HIaYJisDXeUP + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/6xbr6L7NnaIT6zuaD1U6BKUQatrl0I4J method: GET response: proto: HTTP/2.0 @@ -497,33 +522,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test Device Code Grant - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"Duu7y4qJxJBD9NpcPPU8HIaYJisDXeUP","client_secret":"[REDACTED]","app_type":"native","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":true,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["urn:ietf:params:oauth:grant-type:device_code"],"custom_login_page_on":true,"token_endpoint_auth_method":"none","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Test Device Code Grant - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"6xbr6L7NnaIT6zuaD1U6BKUQatrl0I4J","client_secret":"[REDACTED]","app_type":"native","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":true,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["urn:ietf:params:oauth:grant-type:device_code"],"custom_login_page_on":true,"token_endpoint_auth_method":"none","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 167.800333ms - - id: 14 + duration: 159.05475ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Duu7y4qJxJBD9NpcPPU8HIaYJisDXeUP + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/6xbr6L7NnaIT6zuaD1U6BKUQatrl0I4J method: GET response: proto: HTTP/2.0 @@ -533,33 +557,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test Device Code Grant - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"Duu7y4qJxJBD9NpcPPU8HIaYJisDXeUP","client_secret":"[REDACTED]","app_type":"native","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":true,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["urn:ietf:params:oauth:grant-type:device_code"],"custom_login_page_on":true,"token_endpoint_auth_method":"none","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Test Device Code Grant - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"6xbr6L7NnaIT6zuaD1U6BKUQatrl0I4J","client_secret":"[REDACTED]","app_type":"native","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":true,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["urn:ietf:params:oauth:grant-type:device_code"],"custom_login_page_on":true,"token_endpoint_auth_method":"none","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.420291ms - - id: 15 + duration: 149.343667ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Duu7y4qJxJBD9NpcPPU8HIaYJisDXeUP + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/6xbr6L7NnaIT6zuaD1U6BKUQatrl0I4J method: GET response: proto: HTTP/2.0 @@ -569,33 +592,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test Device Code Grant - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"Duu7y4qJxJBD9NpcPPU8HIaYJisDXeUP","client_secret":"[REDACTED]","app_type":"native","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":true,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["urn:ietf:params:oauth:grant-type:device_code"],"custom_login_page_on":true,"token_endpoint_auth_method":"none","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Test Device Code Grant - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"6xbr6L7NnaIT6zuaD1U6BKUQatrl0I4J","client_secret":"[REDACTED]","app_type":"native","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":true,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["urn:ietf:params:oauth:grant-type:device_code"],"custom_login_page_on":true,"token_endpoint_auth_method":"none","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.442042ms - - id: 16 + duration: 161.582583ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Duu7y4qJxJBD9NpcPPU8HIaYJisDXeUP + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/6xbr6L7NnaIT6zuaD1U6BKUQatrl0I4J method: GET response: proto: HTTP/2.0 @@ -605,33 +627,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test Device Code Grant - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"Duu7y4qJxJBD9NpcPPU8HIaYJisDXeUP","client_secret":"[REDACTED]","app_type":"native","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":true,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["urn:ietf:params:oauth:grant-type:device_code"],"custom_login_page_on":true,"token_endpoint_auth_method":"none","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Test Device Code Grant - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"6xbr6L7NnaIT6zuaD1U6BKUQatrl0I4J","client_secret":"[REDACTED]","app_type":"native","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":true,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["urn:ietf:params:oauth:grant-type:device_code"],"custom_login_page_on":true,"token_endpoint_auth_method":"none","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.1695ms - - id: 17 + duration: 166.116ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Duu7y4qJxJBD9NpcPPU8HIaYJisDXeUP?fields=client_id%2Capp_type&include_fields=true + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/6xbr6L7NnaIT6zuaD1U6BKUQatrl0I4J?fields=client_id%2Capp_type&include_fields=true method: GET response: proto: HTTP/2.0 @@ -641,14 +662,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"Duu7y4qJxJBD9NpcPPU8HIaYJisDXeUP","app_type":"native","signing_keys":[{"cert":"[REDACTED]"}]}' + body: '{"client_id":"6xbr6L7NnaIT6zuaD1U6BKUQatrl0I4J","app_type":"native","signing_keys":[{"cert":"[REDACTED]"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 95.598667ms - - id: 18 + duration: 144.732792ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/6xbr6L7NnaIT6zuaD1U6BKUQatrl0I4J/credentials?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2 + uncompressed: false + body: '[]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 141.463333ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -666,8 +722,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Duu7y4qJxJBD9NpcPPU8HIaYJisDXeUP + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/6xbr6L7NnaIT6zuaD1U6BKUQatrl0I4J method: PATCH response: proto: HTTP/2.0 @@ -677,33 +733,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test Device Code Grant - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"Duu7y4qJxJBD9NpcPPU8HIaYJisDXeUP","client_secret":"[REDACTED]","app_type":"native","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":true,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["urn:ietf:params:oauth:grant-type:device_code"],"custom_login_page_on":true,"token_endpoint_auth_method":"none","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Test Device Code Grant - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"6xbr6L7NnaIT6zuaD1U6BKUQatrl0I4J","client_secret":"[REDACTED]","app_type":"native","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":true,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["urn:ietf:params:oauth:grant-type:device_code"],"custom_login_page_on":true,"token_endpoint_auth_method":"none","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 158.639625ms - - id: 19 + duration: 156.123083ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Duu7y4qJxJBD9NpcPPU8HIaYJisDXeUP + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/6xbr6L7NnaIT6zuaD1U6BKUQatrl0I4J method: GET response: proto: HTTP/2.0 @@ -713,33 +768,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test Device Code Grant - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"Duu7y4qJxJBD9NpcPPU8HIaYJisDXeUP","client_secret":"[REDACTED]","app_type":"native","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":true,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["urn:ietf:params:oauth:grant-type:device_code"],"custom_login_page_on":true,"token_endpoint_auth_method":"none","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Test Device Code Grant - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"6xbr6L7NnaIT6zuaD1U6BKUQatrl0I4J","client_secret":"[REDACTED]","app_type":"native","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":true,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["urn:ietf:params:oauth:grant-type:device_code"],"custom_login_page_on":true,"token_endpoint_auth_method":"none","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.071583ms - - id: 20 + duration: 151.125125ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Duu7y4qJxJBD9NpcPPU8HIaYJisDXeUP + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/6xbr6L7NnaIT6zuaD1U6BKUQatrl0I4J method: GET response: proto: HTTP/2.0 @@ -749,14 +803,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test Device Code Grant - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"Duu7y4qJxJBD9NpcPPU8HIaYJisDXeUP","client_secret":"[REDACTED]","app_type":"native","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":true,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["urn:ietf:params:oauth:grant-type:device_code"],"custom_login_page_on":true,"token_endpoint_auth_method":"none","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Test Device Code Grant - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"6xbr6L7NnaIT6zuaD1U6BKUQatrl0I4J","client_secret":"[REDACTED]","app_type":"native","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":true,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["urn:ietf:params:oauth:grant-type:device_code"],"custom_login_page_on":true,"token_endpoint_auth_method":"none","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 129.156625ms - - id: 21 + duration: 151.4995ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -773,8 +827,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Duu7y4qJxJBD9NpcPPU8HIaYJisDXeUP + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/6xbr6L7NnaIT6zuaD1U6BKUQatrl0I4J method: DELETE response: proto: HTTP/2.0 @@ -790,8 +844,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 179.203083ms - - id: 22 + duration: 202.921875ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -809,7 +863,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 + - Go-Auth0/1.9.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients method: POST response: @@ -820,33 +874,32 @@ interactions: trailer: {} content_length: -1 uncompressed: false - body: '{"name":"Test Regular Web Defaults - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"cAgF2f1IsHpOpt34QMRffoJZuZilZUvX","client_secret":"[REDACTED]","app_type":"regular_web","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Test Regular Web Defaults - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"95TD3Bs6upSXKRzNXmNfy11jweC2XFIG","client_secret":"[REDACTED]","app_type":"regular_web","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 591.516583ms - - id: 23 + duration: 283.376791ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/cAgF2f1IsHpOpt34QMRffoJZuZilZUvX + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/95TD3Bs6upSXKRzNXmNfy11jweC2XFIG method: GET response: proto: HTTP/2.0 @@ -856,33 +909,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test Regular Web Defaults - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"cAgF2f1IsHpOpt34QMRffoJZuZilZUvX","client_secret":"[REDACTED]","app_type":"regular_web","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Test Regular Web Defaults - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"95TD3Bs6upSXKRzNXmNfy11jweC2XFIG","client_secret":"[REDACTED]","app_type":"regular_web","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.707208ms - - id: 24 + duration: 141.691792ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/cAgF2f1IsHpOpt34QMRffoJZuZilZUvX + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/95TD3Bs6upSXKRzNXmNfy11jweC2XFIG method: GET response: proto: HTTP/2.0 @@ -892,33 +944,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test Regular Web Defaults - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"cAgF2f1IsHpOpt34QMRffoJZuZilZUvX","client_secret":"[REDACTED]","app_type":"regular_web","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Test Regular Web Defaults - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"95TD3Bs6upSXKRzNXmNfy11jweC2XFIG","client_secret":"[REDACTED]","app_type":"regular_web","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 159.497833ms - - id: 25 + duration: 154.30225ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/cAgF2f1IsHpOpt34QMRffoJZuZilZUvX + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/95TD3Bs6upSXKRzNXmNfy11jweC2XFIG method: GET response: proto: HTTP/2.0 @@ -928,33 +979,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test Regular Web Defaults - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"cAgF2f1IsHpOpt34QMRffoJZuZilZUvX","client_secret":"[REDACTED]","app_type":"regular_web","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Test Regular Web Defaults - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"95TD3Bs6upSXKRzNXmNfy11jweC2XFIG","client_secret":"[REDACTED]","app_type":"regular_web","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.376875ms - - id: 26 + duration: 147.118833ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/cAgF2f1IsHpOpt34QMRffoJZuZilZUvX + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/95TD3Bs6upSXKRzNXmNfy11jweC2XFIG method: GET response: proto: HTTP/2.0 @@ -964,33 +1014,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test Regular Web Defaults - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"cAgF2f1IsHpOpt34QMRffoJZuZilZUvX","client_secret":"[REDACTED]","app_type":"regular_web","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Test Regular Web Defaults - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"95TD3Bs6upSXKRzNXmNfy11jweC2XFIG","client_secret":"[REDACTED]","app_type":"regular_web","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 136.171541ms - - id: 27 + duration: 221.320834ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/cAgF2f1IsHpOpt34QMRffoJZuZilZUvX + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/95TD3Bs6upSXKRzNXmNfy11jweC2XFIG method: GET response: proto: HTTP/2.0 @@ -1000,33 +1049,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test Regular Web Defaults - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"cAgF2f1IsHpOpt34QMRffoJZuZilZUvX","client_secret":"[REDACTED]","app_type":"regular_web","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Test Regular Web Defaults - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"95TD3Bs6upSXKRzNXmNfy11jweC2XFIG","client_secret":"[REDACTED]","app_type":"regular_web","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 163.794208ms - - id: 28 + duration: 258.607417ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/cAgF2f1IsHpOpt34QMRffoJZuZilZUvX?fields=client_id%2Capp_type&include_fields=true + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/95TD3Bs6upSXKRzNXmNfy11jweC2XFIG?fields=client_id%2Capp_type&include_fields=true method: GET response: proto: HTTP/2.0 @@ -1036,14 +1084,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"cAgF2f1IsHpOpt34QMRffoJZuZilZUvX","app_type":"regular_web","signing_keys":[{"cert":"[REDACTED]"}]}' + body: '{"client_id":"95TD3Bs6upSXKRzNXmNfy11jweC2XFIG","app_type":"regular_web","signing_keys":[{"cert":"[REDACTED]"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 134.152667ms - - id: 29 + duration: 150.900625ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/95TD3Bs6upSXKRzNXmNfy11jweC2XFIG/credentials?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2 + uncompressed: false + body: '[]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 189.978583ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1061,8 +1144,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/cAgF2f1IsHpOpt34QMRffoJZuZilZUvX + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/95TD3Bs6upSXKRzNXmNfy11jweC2XFIG method: PATCH response: proto: HTTP/2.0 @@ -1072,33 +1155,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test Regular Web Defaults - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"cAgF2f1IsHpOpt34QMRffoJZuZilZUvX","client_secret":"[REDACTED]","app_type":"regular_web","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Test Regular Web Defaults - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"95TD3Bs6upSXKRzNXmNfy11jweC2XFIG","client_secret":"[REDACTED]","app_type":"regular_web","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 154.242333ms - - id: 30 + duration: 161.284208ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/cAgF2f1IsHpOpt34QMRffoJZuZilZUvX + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/95TD3Bs6upSXKRzNXmNfy11jweC2XFIG method: GET response: proto: HTTP/2.0 @@ -1108,14 +1190,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Test Regular Web Defaults - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"cAgF2f1IsHpOpt34QMRffoJZuZilZUvX","client_secret":"[REDACTED]","app_type":"regular_web","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Test Regular Web Defaults - TestAccClientCanSetDefaultAuthMethodOnCreate","client_id":"95TD3Bs6upSXKRzNXmNfy11jweC2XFIG","client_secret":"[REDACTED]","app_type":"regular_web","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 199.11675ms - - id: 31 + duration: 148.120875ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1132,8 +1214,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/cAgF2f1IsHpOpt34QMRffoJZuZilZUvX + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/95TD3Bs6upSXKRzNXmNfy11jweC2XFIG method: DELETE response: proto: HTTP/2.0 @@ -1149,4 +1231,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 124.166083ms + duration: 198.996ms diff --git a/test/data/recordings/TestAccClientCredentialsImport.yaml b/test/data/recordings/TestAccClientCredentialsImport.yaml index c3711b7e..70455053 100644 --- a/test/data/recordings/TestAccClientCredentialsImport.yaml +++ b/test/data/recordings/TestAccClientCredentialsImport.yaml @@ -6,21 +6,20 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Bjnm4jQ66Kb5Ug33eSBDxHsW6teU7SE1 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/OPKABsgfP91ueA4oMF3NIyEzShuiB7KC method: GET response: proto: HTTP/2.0 @@ -30,33 +29,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"Bjnm4jQ66Kb5Ug33eSBDxHsW6teU7SE1","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"OPKABsgfP91ueA4oMF3NIyEzShuiB7KC","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 98.66025ms + duration: 196.869042ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Bjnm4jQ66Kb5Ug33eSBDxHsW6teU7SE1 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/OPKABsgfP91ueA4oMF3NIyEzShuiB7KC method: GET response: proto: HTTP/2.0 @@ -66,33 +64,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"Bjnm4jQ66Kb5Ug33eSBDxHsW6teU7SE1","client_secret":"[REDACTED]","signing_keys":[{"cert":"[REDACTED]"}],"token_endpoint_auth_method":"client_secret_post"}' + body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"OPKABsgfP91ueA4oMF3NIyEzShuiB7KC","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.977042ms + duration: 182.057125ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Bjnm4jQ66Kb5Ug33eSBDxHsW6teU7SE1 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/OPKABsgfP91ueA4oMF3NIyEzShuiB7KC method: GET response: proto: HTTP/2.0 @@ -102,33 +99,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"Bjnm4jQ66Kb5Ug33eSBDxHsW6teU7SE1","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"OPKABsgfP91ueA4oMF3NIyEzShuiB7KC","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 136.436792ms + duration: 170.720292ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Bjnm4jQ66Kb5Ug33eSBDxHsW6teU7SE1 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/OPKABsgfP91ueA4oMF3NIyEzShuiB7KC method: GET response: proto: HTTP/2.0 @@ -138,33 +134,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"Bjnm4jQ66Kb5Ug33eSBDxHsW6teU7SE1","client_secret":"[REDACTED]","signing_keys":[{"cert":"[REDACTED]"}],"token_endpoint_auth_method":"client_secret_post"}' + body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"OPKABsgfP91ueA4oMF3NIyEzShuiB7KC","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.064084ms + duration: 155.706584ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Bjnm4jQ66Kb5Ug33eSBDxHsW6teU7SE1 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/OPKABsgfP91ueA4oMF3NIyEzShuiB7KC method: GET response: proto: HTTP/2.0 @@ -174,33 +169,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"Bjnm4jQ66Kb5Ug33eSBDxHsW6teU7SE1","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"OPKABsgfP91ueA4oMF3NIyEzShuiB7KC","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.993625ms + duration: 146.770625ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Bjnm4jQ66Kb5Ug33eSBDxHsW6teU7SE1 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/OPKABsgfP91ueA4oMF3NIyEzShuiB7KC method: GET response: proto: HTTP/2.0 @@ -210,33 +204,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"Bjnm4jQ66Kb5Ug33eSBDxHsW6teU7SE1","client_secret":"[REDACTED]","signing_keys":[{"cert":"[REDACTED]"}],"token_endpoint_auth_method":"client_secret_post"}' + body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"OPKABsgfP91ueA4oMF3NIyEzShuiB7KC","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 148.118625ms + duration: 149.644542ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX method: GET response: proto: HTTP/2.0 @@ -246,33 +239,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_mwyJbhhnhzqYqCph6NUhSR"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"l2RlA0V5Bdf1tzoY98sui8uB787YmUCX","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_4b85kwpKmjHJNErFBkHbtw"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.024333ms + duration: 144.294917ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX method: GET response: proto: HTTP/2.0 @@ -282,33 +274,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu","signing_keys":[{"cert":"[REDACTED]"}],"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_mwyJbhhnhzqYqCph6NUhSR"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"l2RlA0V5Bdf1tzoY98sui8uB787YmUCX","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_4b85kwpKmjHJNErFBkHbtw"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 149.30125ms + duration: 148.827375ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu/credentials/cred_mwyJbhhnhzqYqCph6NUhSR + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX/credentials/cred_4b85kwpKmjHJNErFBkHbtw method: GET response: proto: HTTP/2.0 @@ -318,33 +309,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_mwyJbhhnhzqYqCph6NUhSR","name":"","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","created_at":"2023-05-30T14:45:37.970Z","updated_at":"2023-05-30T14:45:37.970Z","expires_at":null}' + body: '{"id":"cred_4b85kwpKmjHJNErFBkHbtw","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","created_at":"2024-09-03T22:00:46.856Z","updated_at":"2024-09-03T22:00:46.856Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.05075ms + duration: 135.5975ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Bjnm4jQ66Kb5Ug33eSBDxHsW6teU7SE1 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/OPKABsgfP91ueA4oMF3NIyEzShuiB7KC method: GET response: proto: HTTP/2.0 @@ -354,33 +344,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"Bjnm4jQ66Kb5Ug33eSBDxHsW6teU7SE1","client_secret":"[REDACTED]","signing_keys":[{"cert":"[REDACTED]"}],"token_endpoint_auth_method":"client_secret_post"}' + body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"OPKABsgfP91ueA4oMF3NIyEzShuiB7KC","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.714792ms + duration: 151.056417ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/OPKABsgfP91ueA4oMF3NIyEzShuiB7KC method: GET response: proto: HTTP/2.0 @@ -390,33 +379,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_mwyJbhhnhzqYqCph6NUhSR"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"OPKABsgfP91ueA4oMF3NIyEzShuiB7KC","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 176.800042ms + duration: 161.036042ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Bjnm4jQ66Kb5Ug33eSBDxHsW6teU7SE1 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX method: GET response: proto: HTTP/2.0 @@ -426,33 +414,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"Bjnm4jQ66Kb5Ug33eSBDxHsW6teU7SE1","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"l2RlA0V5Bdf1tzoY98sui8uB787YmUCX","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_4b85kwpKmjHJNErFBkHbtw"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 179.045416ms + duration: 169.026667ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX method: GET response: proto: HTTP/2.0 @@ -462,33 +449,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu","signing_keys":[{"cert":"[REDACTED]"}],"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_mwyJbhhnhzqYqCph6NUhSR"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"l2RlA0V5Bdf1tzoY98sui8uB787YmUCX","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_4b85kwpKmjHJNErFBkHbtw"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 137.72675ms + duration: 176.578083ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu/credentials/cred_mwyJbhhnhzqYqCph6NUhSR + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX/credentials/cred_4b85kwpKmjHJNErFBkHbtw method: GET response: proto: HTTP/2.0 @@ -498,33 +484,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_mwyJbhhnhzqYqCph6NUhSR","name":"","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","created_at":"2023-05-30T14:45:37.970Z","updated_at":"2023-05-30T14:45:37.970Z","expires_at":null}' + body: '{"id":"cred_4b85kwpKmjHJNErFBkHbtw","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","created_at":"2024-09-03T22:00:46.856Z","updated_at":"2024-09-03T22:00:46.856Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 202.185125ms + duration: 308.322333ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Bjnm4jQ66Kb5Ug33eSBDxHsW6teU7SE1?fields=client_id%2Capp_type&include_fields=true + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/OPKABsgfP91ueA4oMF3NIyEzShuiB7KC?fields=client_id%2Capp_type&include_fields=true method: GET response: proto: HTTP/2.0 @@ -534,33 +519,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"Bjnm4jQ66Kb5Ug33eSBDxHsW6teU7SE1","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + body: '{"client_id":"OPKABsgfP91ueA4oMF3NIyEzShuiB7KC","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 93.957333ms + duration: 144.138792ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu?fields=client_id%2Capp_type&include_fields=true + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX?fields=client_id%2Capp_type&include_fields=true method: GET response: proto: HTTP/2.0 @@ -570,33 +554,67 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + body: '{"client_id":"l2RlA0V5Bdf1tzoY98sui8uB787YmUCX","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 97.767583ms + duration: 183.901833ms - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/OPKABsgfP91ueA4oMF3NIyEzShuiB7KC/credentials?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2 + uncompressed: false + body: '[]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 146.675708ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu/credentials?include_totals=true&per_page=50 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX/credentials?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -606,14 +624,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"id":"cred_mwyJbhhnhzqYqCph6NUhSR","name":"","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","created_at":"2023-05-30T14:45:37.970Z","updated_at":"2023-05-30T14:45:37.970Z","expires_at":null}]' + body: '[{"id":"cred_4b85kwpKmjHJNErFBkHbtw","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","created_at":"2024-09-03T22:00:46.856Z","updated_at":"2024-09-03T22:00:46.856Z"}]' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 106.128166ms - - id: 17 + duration: 144.501042ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -631,8 +649,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Bjnm4jQ66Kb5Ug33eSBDxHsW6teU7SE1 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/OPKABsgfP91ueA4oMF3NIyEzShuiB7KC method: PATCH response: proto: HTTP/2.0 @@ -642,33 +660,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"Bjnm4jQ66Kb5Ug33eSBDxHsW6teU7SE1","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' + body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"OPKABsgfP91ueA4oMF3NIyEzShuiB7KC","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.995167ms - - id: 18 + duration: 162.861667ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 89 + content_length: 118 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"client_authentication_methods":null,"token_endpoint_auth_method":"client_secret_post"} + {"client_authentication_methods":null,"token_endpoint_auth_method":"client_secret_post","signed_request_object":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX method: PATCH response: proto: HTTP/2.0 @@ -678,14 +696,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"l2RlA0V5Bdf1tzoY98sui8uB787YmUCX","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 184.950875ms - - id: 19 + duration: 153.553625ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -702,8 +720,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu/credentials/cred_mwyJbhhnhzqYqCph6NUhSR + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX/credentials/cred_4b85kwpKmjHJNErFBkHbtw method: DELETE response: proto: HTTP/2.0 @@ -719,8 +737,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 91.246833ms - - id: 20 + duration: 139.776792ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -737,8 +755,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Bjnm4jQ66Kb5Ug33eSBDxHsW6teU7SE1 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/OPKABsgfP91ueA4oMF3NIyEzShuiB7KC method: DELETE response: proto: HTTP/2.0 @@ -754,27 +772,26 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 203.334667ms - - id: 21 + duration: 207.61125ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu?fields=client_id&include_fields=true + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX?fields=client_id&include_fields=true method: GET response: proto: HTTP/2.0 @@ -784,14 +801,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu","signing_keys":[{"cert":"[REDACTED]"}]}' + body: '{"client_id":"l2RlA0V5Bdf1tzoY98sui8uB787YmUCX","signing_keys":[{"cert":"[REDACTED]"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 101.735834ms - - id: 22 + duration: 140.66275ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -809,8 +826,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu/credentials + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX/credentials method: POST response: proto: HTTP/2.0 @@ -818,16 +835,16 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 223 + content_length: 213 uncompressed: false - body: '{"id":"cred_nvJtX8CnFZ5XRAbBi8encV","name":"","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","created_at":"2023-05-30T14:46:46.240Z","updated_at":"2023-05-30T14:46:46.240Z"}' + body: '{"id":"cred_jxBAC4Un28xbBCsnuPXgEn","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","created_at":"2024-09-03T22:09:15.067Z","updated_at":"2024-09-03T22:09:15.067Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 147.529583ms - - id: 23 + duration: 339.671167ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -839,14 +856,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_nvJtX8CnFZ5XRAbBi8encV"}]}},"token_endpoint_auth_method":null} + {"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_jxBAC4Un28xbBCsnuPXgEn"}]}},"token_endpoint_auth_method":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX method: PATCH response: proto: HTTP/2.0 @@ -856,33 +873,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_nvJtX8CnFZ5XRAbBi8encV"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"l2RlA0V5Bdf1tzoY98sui8uB787YmUCX","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_jxBAC4Un28xbBCsnuPXgEn"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 146.296417ms - - id: 24 + duration: 182.960459ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX method: GET response: proto: HTTP/2.0 @@ -892,33 +908,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu","signing_keys":[{"cert":"[REDACTED]"}],"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_nvJtX8CnFZ5XRAbBi8encV"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"l2RlA0V5Bdf1tzoY98sui8uB787YmUCX","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_jxBAC4Un28xbBCsnuPXgEn"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.080083ms - - id: 25 + duration: 148.002042ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu/credentials/cred_nvJtX8CnFZ5XRAbBi8encV + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX/credentials/cred_jxBAC4Un28xbBCsnuPXgEn method: GET response: proto: HTTP/2.0 @@ -928,33 +943,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_nvJtX8CnFZ5XRAbBi8encV","name":"","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","created_at":"2023-05-30T14:46:46.240Z","updated_at":"2023-05-30T14:46:46.240Z","expires_at":null}' + body: '{"id":"cred_jxBAC4Un28xbBCsnuPXgEn","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","created_at":"2024-09-03T22:09:15.067Z","updated_at":"2024-09-03T22:09:15.067Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 94.688667ms - - id: 26 + duration: 156.88775ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX method: GET response: proto: HTTP/2.0 @@ -964,33 +978,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_nvJtX8CnFZ5XRAbBi8encV"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"l2RlA0V5Bdf1tzoY98sui8uB787YmUCX","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_jxBAC4Un28xbBCsnuPXgEn"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.537083ms - - id: 27 + duration: 140.444958ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX method: GET response: proto: HTTP/2.0 @@ -1000,33 +1013,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu","signing_keys":[{"cert":"[REDACTED]"}],"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_nvJtX8CnFZ5XRAbBi8encV"}]}}}' + body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"l2RlA0V5Bdf1tzoY98sui8uB787YmUCX","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000},"client_authentication_methods":{"private_key_jwt":{"credentials":[{"id":"cred_jxBAC4Un28xbBCsnuPXgEn"}]}}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.073792ms - - id: 28 + duration: 139.714833ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu/credentials/cred_nvJtX8CnFZ5XRAbBi8encV + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX/credentials/cred_jxBAC4Un28xbBCsnuPXgEn method: GET response: proto: HTTP/2.0 @@ -1036,33 +1048,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cred_nvJtX8CnFZ5XRAbBi8encV","name":"","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","created_at":"2023-05-30T14:46:46.240Z","updated_at":"2023-05-30T14:46:46.240Z","expires_at":null}' + body: '{"id":"cred_jxBAC4Un28xbBCsnuPXgEn","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","created_at":"2024-09-03T22:09:15.067Z","updated_at":"2024-09-03T22:09:15.067Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 93.672958ms - - id: 29 + duration: 156.418542ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu?fields=client_id%2Capp_type&include_fields=true + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX?fields=client_id%2Capp_type&include_fields=true method: GET response: proto: HTTP/2.0 @@ -1072,33 +1083,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"client_id":"zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' + body: '{"client_id":"l2RlA0V5Bdf1tzoY98sui8uB787YmUCX","app_type":"non_interactive","signing_keys":[{"cert":"[REDACTED]"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 92.42125ms - - id: 30 + duration: 143.617417ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu/credentials?include_totals=true&per_page=50 + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX/credentials?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1108,33 +1118,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"id":"cred_nvJtX8CnFZ5XRAbBi8encV","name":"","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","created_at":"2023-05-30T14:46:46.240Z","updated_at":"2023-05-30T14:46:46.240Z","expires_at":null}]' + body: '[{"id":"cred_jxBAC4Un28xbBCsnuPXgEn","credential_type":"public_key","kid":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0","alg":"RS256","created_at":"2024-09-03T22:09:15.067Z","updated_at":"2024-09-03T22:09:15.067Z"}]' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 88.417084ms - - id: 31 + duration: 138.378833ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 89 + content_length: 118 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"client_authentication_methods":null,"token_endpoint_auth_method":"client_secret_post"} + {"client_authentication_methods":null,"token_endpoint_auth_method":"client_secret_post","signed_request_object":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX method: PATCH response: proto: HTTP/2.0 @@ -1144,14 +1154,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - Client Credentials Import","client_id":"l2RlA0V5Bdf1tzoY98sui8uB787YmUCX","client_secret":"[REDACTED]","app_type":"non_interactive","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"alg":"RS256"},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"token_endpoint_auth_method":"client_secret_post","refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":31557600,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":2592000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.801208ms - - id: 32 + duration: 161.258458ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1168,8 +1178,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu/credentials/cred_nvJtX8CnFZ5XRAbBi8encV + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX/credentials/cred_jxBAC4Un28xbBCsnuPXgEn method: DELETE response: proto: HTTP/2.0 @@ -1185,8 +1195,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 103.85675ms - - id: 33 + duration: 143.982083ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1203,8 +1213,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/zm5DPtaaSqenbpEX36nNLbmUQ2rW81Mu + - Go-Auth0/1.9.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/l2RlA0V5Bdf1tzoY98sui8uB787YmUCX method: DELETE response: proto: HTTP/2.0 @@ -1220,4 +1230,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 358.783709ms + duration: 210.874ms diff --git a/test/data/recordings/TestAccClientGrant.yaml b/test/data/recordings/TestAccClientGrant.yaml index 35ab60f4..0acf442b 100644 --- a/test/data/recordings/TestAccClientGrant.yaml +++ b/test/data/recordings/TestAccClientGrant.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers method: POST response: @@ -30,34 +30,34 @@ interactions: trailer: {} content_length: 345 uncompressed: false - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 137.167375ms + duration: 192.225833ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 31 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"authorization_details":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/65646b369ca89bc61b853f00 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a2a65708cdaf6d114ded + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -66,13 +66,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.381666ms + duration: 165.321041ms - id: 2 request: proto: HTTP/1.1 @@ -91,7 +91,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients method: POST response: @@ -102,34 +102,34 @@ interactions: trailer: {} content_length: -1 uncompressed: false - body: '{"name":"Acceptance Test - Client Grant - TestAccClientGrant","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - Client Grant - TestAccClientGrant","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 349.159125ms + duration: 430.248333ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 26 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"token_encryption":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.tf.terraform-provider-auth0.com%2Fclient-grant%2FTestAccClientGrant - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a2a65708cdaf6d114ded + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -138,33 +138,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.179459ms + duration: 172.636417ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/45vY8LGBEWaTH4t26qhndihoBtCh8s9A + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/SQUduIKITFewZ4vAICXjBcrJoPYqJjL4 method: GET response: proto: HTTP/2.0 @@ -174,14 +173,120 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Grant - TestAccClientGrant","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - Client Grant - TestAccClientGrant","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.006583ms + duration: 180.492708ms - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 29 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"proof_of_possession":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a2a65708cdaf6d114ded + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 187.510875ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a2a65708cdaf6d114ded + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 157.393333ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.tf.terraform-provider-auth0.com%2Fclient-grant%2FTestAccClientGrant + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 174.640417ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -199,7 +304,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.tf.terraform-provider-auth0.com%2Fclient-grant%2FTestAccClientGrant method: PATCH response: @@ -210,32 +315,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 98.960458ms - - id: 6 + duration: 153.212708ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.tf.terraform-provider-auth0.com%2Fclient-grant%2FTestAccClientGrant method: GET response: @@ -246,33 +350,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 95.460958ms - - id: 7 + duration: 178.536208ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?audience=https%3A%2F%2Fuat.tf.terraform-provider-auth0.com%2Fclient-grant%2FTestAccClientGrant&client_id=45vY8LGBEWaTH4t26qhndihoBtCh8s9A&include_totals=true&per_page=50 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?audience=https%3A%2F%2Fuat.tf.terraform-provider-auth0.com%2Fclient-grant%2FTestAccClientGrant&client_id=SQUduIKITFewZ4vAICXjBcrJoPYqJjL4&include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -288,8 +391,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.203833ms - - id: 8 + duration: 365.298292ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -301,13 +404,13 @@ interactions: remote_addr: "" request_uri: "" body: | - {"client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]} + {"client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants method: POST response: @@ -318,32 +421,31 @@ interactions: trailer: {} content_length: 176 uncompressed: false - body: '{"id":"cgr_VQp987tO6U2YcsmM","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]}' + body: '{"id":"cgr_iw7bvriSE7ICUqZ4","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 89.858584ms - - id: 9 + duration: 183.550084ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?include_totals=true&page=0&per_page=50 method: GET response: @@ -354,33 +456,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"total":7,"start":0,"limit":50,"client_grants":[{"id":"cgr_2Vts8dLuGtvZYYJ6","client_id":"CHI24TxGFCvpKNGCbaeda10PaKAAIKMh","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_8Pp7b8jtkWf5DjrG","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":[]},{"id":"cgr_Evsm7nFfvO4U0jnj","client_id":"S3OiXiZ6PZIX6LjpiCX9oKzcx0cfQFI4","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_LFqQ0mbRsNhuFSRN","client_id":"dax0nb80uCWmmTc5IPqDcPBDtVSsDXrB","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_VQp987tO6U2YcsmM","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_bufAdwXvdQ7CZvZU","client_id":"W119pw3cOr1Y7IYPTzE8LHXfGSsR73KD","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_vnYlD4bSR32Qhr4h","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://custom-api.example.com/api/v1","scope":["read:resource","update:resource","create:resource"]}]}' + body: '{"total":17,"start":0,"limit":50,"client_grants":[{"id":"cgr_0S7EhItKlqvoa7cY","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_5E9mB0HCpMeWj8Lf","client_id":"23UwozUpHtbveqWVfrhSWM854ImmF1eL","audience":"https://example.org/basic","scope":[]},{"id":"cgr_6QihfCasVrEMrDwt","client_id":"pswvebw9Ekpfhi9AgW5yHt6iDW9hY0pa","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_BJ2hL4GsTnEe5k1r","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_DnXfOnhkAoqpIa6r","client_id":"buneel628H5ujqwWDYqLfULQeDrEfXvZ","audience":"urn:my-api","scope":[]},{"id":"cgr_FtndonVtZ3KD4Jie","client_id":"nDQmRJbuQdSCet69DaIyk8IX4PWA7FHC","audience":"https://example.com/page","scope":[]},{"id":"cgr_R8UZ32YkfRCwKRi9","client_id":"2pUhtrKU5JHqYN98O6iliVq6LQcePX5W","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:flows_executions","delete:flows_executions","read:connections_options","update:connections_options","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_U5QPBryhuW27LT0M","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_VfN7OOtv77wA2jMQ","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"urn:my-api","scope":[]},{"id":"cgr_ZTM7vh2bE4Wab2eu","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_cLs8JV85BMzwqPoN","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_dG5exT1iHkt5qIfu","client_id":"bAgqG0KlkTcoasZjBQZyoQVVekYU1iEm","audience":"https://example.org/test-api","scope":["test"]},{"id":"cgr_eY32JCPm2zviZLBj","client_id":"wpSMVTtd3z7ieyZeGhSbDMNc61hxxBe5","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_heGhidMdCah54EwJ","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_iw7bvriSE7ICUqZ4","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_kKxibzaMf9xjnyj0","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_yIbMAMBzz1hVYa2T","client_id":"jx2QvRMljdXQGyZRdMc4GH4Af2wcJxho","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 94.636ms - - id: 10 + duration: 157.528667ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/65646b369ca89bc61b853f00 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a2a65708cdaf6d114ded method: GET response: proto: HTTP/2.0 @@ -390,33 +491,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 84.955625ms - - id: 11 + duration: 187.848167ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/45vY8LGBEWaTH4t26qhndihoBtCh8s9A + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/SQUduIKITFewZ4vAICXjBcrJoPYqJjL4 method: GET response: proto: HTTP/2.0 @@ -426,32 +526,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Grant - TestAccClientGrant","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - Client Grant - TestAccClientGrant","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.067459ms - - id: 12 + duration: 224.274583ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.tf.terraform-provider-auth0.com%2Fclient-grant%2FTestAccClientGrant method: GET response: @@ -462,32 +561,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 84.918708ms - - id: 13 + duration: 175.694625ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?include_totals=true&page=0&per_page=50 method: GET response: @@ -498,33 +596,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"total":7,"start":0,"limit":50,"client_grants":[{"id":"cgr_2Vts8dLuGtvZYYJ6","client_id":"CHI24TxGFCvpKNGCbaeda10PaKAAIKMh","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_8Pp7b8jtkWf5DjrG","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":[]},{"id":"cgr_Evsm7nFfvO4U0jnj","client_id":"S3OiXiZ6PZIX6LjpiCX9oKzcx0cfQFI4","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_LFqQ0mbRsNhuFSRN","client_id":"dax0nb80uCWmmTc5IPqDcPBDtVSsDXrB","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_VQp987tO6U2YcsmM","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_bufAdwXvdQ7CZvZU","client_id":"W119pw3cOr1Y7IYPTzE8LHXfGSsR73KD","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_vnYlD4bSR32Qhr4h","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://custom-api.example.com/api/v1","scope":["read:resource","update:resource","create:resource"]}]}' + body: '{"total":17,"start":0,"limit":50,"client_grants":[{"id":"cgr_0S7EhItKlqvoa7cY","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_5E9mB0HCpMeWj8Lf","client_id":"23UwozUpHtbveqWVfrhSWM854ImmF1eL","audience":"https://example.org/basic","scope":[]},{"id":"cgr_6QihfCasVrEMrDwt","client_id":"pswvebw9Ekpfhi9AgW5yHt6iDW9hY0pa","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_BJ2hL4GsTnEe5k1r","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_DnXfOnhkAoqpIa6r","client_id":"buneel628H5ujqwWDYqLfULQeDrEfXvZ","audience":"urn:my-api","scope":[]},{"id":"cgr_FtndonVtZ3KD4Jie","client_id":"nDQmRJbuQdSCet69DaIyk8IX4PWA7FHC","audience":"https://example.com/page","scope":[]},{"id":"cgr_R8UZ32YkfRCwKRi9","client_id":"2pUhtrKU5JHqYN98O6iliVq6LQcePX5W","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:flows_executions","delete:flows_executions","read:connections_options","update:connections_options","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_U5QPBryhuW27LT0M","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_VfN7OOtv77wA2jMQ","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"urn:my-api","scope":[]},{"id":"cgr_ZTM7vh2bE4Wab2eu","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_cLs8JV85BMzwqPoN","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_dG5exT1iHkt5qIfu","client_id":"bAgqG0KlkTcoasZjBQZyoQVVekYU1iEm","audience":"https://example.org/test-api","scope":["test"]},{"id":"cgr_eY32JCPm2zviZLBj","client_id":"wpSMVTtd3z7ieyZeGhSbDMNc61hxxBe5","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_heGhidMdCah54EwJ","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_iw7bvriSE7ICUqZ4","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_kKxibzaMf9xjnyj0","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_yIbMAMBzz1hVYa2T","client_id":"jx2QvRMljdXQGyZRdMc4GH4Af2wcJxho","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.424958ms - - id: 14 + duration: 160.93175ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/65646b369ca89bc61b853f00 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a2a65708cdaf6d114ded method: GET response: proto: HTTP/2.0 @@ -534,33 +631,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 78.69375ms - - id: 15 + duration: 155.49125ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/45vY8LGBEWaTH4t26qhndihoBtCh8s9A + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/SQUduIKITFewZ4vAICXjBcrJoPYqJjL4 method: GET response: proto: HTTP/2.0 @@ -570,32 +666,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Grant - TestAccClientGrant","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - Client Grant - TestAccClientGrant","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.912041ms - - id: 16 + duration: 188.846709ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.tf.terraform-provider-auth0.com%2Fclient-grant%2FTestAccClientGrant method: GET response: @@ -606,32 +701,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.659625ms - - id: 17 + duration: 184.285041ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?include_totals=true&page=0&per_page=50 method: GET response: @@ -642,14 +736,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"total":7,"start":0,"limit":50,"client_grants":[{"id":"cgr_2Vts8dLuGtvZYYJ6","client_id":"CHI24TxGFCvpKNGCbaeda10PaKAAIKMh","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_8Pp7b8jtkWf5DjrG","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":[]},{"id":"cgr_Evsm7nFfvO4U0jnj","client_id":"S3OiXiZ6PZIX6LjpiCX9oKzcx0cfQFI4","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_LFqQ0mbRsNhuFSRN","client_id":"dax0nb80uCWmmTc5IPqDcPBDtVSsDXrB","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_VQp987tO6U2YcsmM","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_bufAdwXvdQ7CZvZU","client_id":"W119pw3cOr1Y7IYPTzE8LHXfGSsR73KD","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_vnYlD4bSR32Qhr4h","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://custom-api.example.com/api/v1","scope":["read:resource","update:resource","create:resource"]}]}' + body: '{"total":17,"start":0,"limit":50,"client_grants":[{"id":"cgr_0S7EhItKlqvoa7cY","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_5E9mB0HCpMeWj8Lf","client_id":"23UwozUpHtbveqWVfrhSWM854ImmF1eL","audience":"https://example.org/basic","scope":[]},{"id":"cgr_6QihfCasVrEMrDwt","client_id":"pswvebw9Ekpfhi9AgW5yHt6iDW9hY0pa","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_BJ2hL4GsTnEe5k1r","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_DnXfOnhkAoqpIa6r","client_id":"buneel628H5ujqwWDYqLfULQeDrEfXvZ","audience":"urn:my-api","scope":[]},{"id":"cgr_FtndonVtZ3KD4Jie","client_id":"nDQmRJbuQdSCet69DaIyk8IX4PWA7FHC","audience":"https://example.com/page","scope":[]},{"id":"cgr_R8UZ32YkfRCwKRi9","client_id":"2pUhtrKU5JHqYN98O6iliVq6LQcePX5W","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:flows_executions","delete:flows_executions","read:connections_options","update:connections_options","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_U5QPBryhuW27LT0M","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_VfN7OOtv77wA2jMQ","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"urn:my-api","scope":[]},{"id":"cgr_ZTM7vh2bE4Wab2eu","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_cLs8JV85BMzwqPoN","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_dG5exT1iHkt5qIfu","client_id":"bAgqG0KlkTcoasZjBQZyoQVVekYU1iEm","audience":"https://example.org/test-api","scope":["test"]},{"id":"cgr_eY32JCPm2zviZLBj","client_id":"wpSMVTtd3z7ieyZeGhSbDMNc61hxxBe5","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_heGhidMdCah54EwJ","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_iw7bvriSE7ICUqZ4","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_kKxibzaMf9xjnyj0","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_yIbMAMBzz1hVYa2T","client_id":"jx2QvRMljdXQGyZRdMc4GH4Af2wcJxho","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 137.88825ms - - id: 18 + duration: 174.869375ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -667,8 +761,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants/cgr_VQp987tO6U2YcsmM + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants/cgr_iw7bvriSE7ICUqZ4 method: PATCH response: proto: HTTP/2.0 @@ -678,32 +772,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cgr_VQp987tO6U2YcsmM","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":["create:foo"]}' + body: '{"id":"cgr_iw7bvriSE7ICUqZ4","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":["create:foo"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 83.906583ms - - id: 19 + duration: 179.766ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?include_totals=true&page=0&per_page=50 method: GET response: @@ -714,33 +807,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"total":7,"start":0,"limit":50,"client_grants":[{"id":"cgr_2Vts8dLuGtvZYYJ6","client_id":"CHI24TxGFCvpKNGCbaeda10PaKAAIKMh","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_8Pp7b8jtkWf5DjrG","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":[]},{"id":"cgr_Evsm7nFfvO4U0jnj","client_id":"S3OiXiZ6PZIX6LjpiCX9oKzcx0cfQFI4","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_LFqQ0mbRsNhuFSRN","client_id":"dax0nb80uCWmmTc5IPqDcPBDtVSsDXrB","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_VQp987tO6U2YcsmM","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":["create:foo"]},{"id":"cgr_bufAdwXvdQ7CZvZU","client_id":"W119pw3cOr1Y7IYPTzE8LHXfGSsR73KD","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_vnYlD4bSR32Qhr4h","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://custom-api.example.com/api/v1","scope":["read:resource","update:resource","create:resource"]}]}' + body: '{"total":17,"start":0,"limit":50,"client_grants":[{"id":"cgr_0S7EhItKlqvoa7cY","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_5E9mB0HCpMeWj8Lf","client_id":"23UwozUpHtbveqWVfrhSWM854ImmF1eL","audience":"https://example.org/basic","scope":[]},{"id":"cgr_6QihfCasVrEMrDwt","client_id":"pswvebw9Ekpfhi9AgW5yHt6iDW9hY0pa","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_BJ2hL4GsTnEe5k1r","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_DnXfOnhkAoqpIa6r","client_id":"buneel628H5ujqwWDYqLfULQeDrEfXvZ","audience":"urn:my-api","scope":[]},{"id":"cgr_FtndonVtZ3KD4Jie","client_id":"nDQmRJbuQdSCet69DaIyk8IX4PWA7FHC","audience":"https://example.com/page","scope":[]},{"id":"cgr_R8UZ32YkfRCwKRi9","client_id":"2pUhtrKU5JHqYN98O6iliVq6LQcePX5W","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:flows_executions","delete:flows_executions","read:connections_options","update:connections_options","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_U5QPBryhuW27LT0M","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_VfN7OOtv77wA2jMQ","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"urn:my-api","scope":[]},{"id":"cgr_ZTM7vh2bE4Wab2eu","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_cLs8JV85BMzwqPoN","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_dG5exT1iHkt5qIfu","client_id":"bAgqG0KlkTcoasZjBQZyoQVVekYU1iEm","audience":"https://example.org/test-api","scope":["test"]},{"id":"cgr_eY32JCPm2zviZLBj","client_id":"wpSMVTtd3z7ieyZeGhSbDMNc61hxxBe5","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_heGhidMdCah54EwJ","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_iw7bvriSE7ICUqZ4","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":["create:foo"]},{"id":"cgr_kKxibzaMf9xjnyj0","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_yIbMAMBzz1hVYa2T","client_id":"jx2QvRMljdXQGyZRdMc4GH4Af2wcJxho","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.173ms - - id: 20 + duration: 199.278917ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/45vY8LGBEWaTH4t26qhndihoBtCh8s9A + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a2a65708cdaf6d114ded method: GET response: proto: HTTP/2.0 @@ -750,33 +842,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Grant - TestAccClientGrant","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 82.2895ms - - id: 21 + duration: 197.626375ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/65646b369ca89bc61b853f00 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/SQUduIKITFewZ4vAICXjBcrJoPYqJjL4 method: GET response: proto: HTTP/2.0 @@ -786,32 +877,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' + body: '{"name":"Acceptance Test - Client Grant - TestAccClientGrant","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 128.374791ms - - id: 22 + duration: 217.837ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.tf.terraform-provider-auth0.com%2Fclient-grant%2FTestAccClientGrant method: GET response: @@ -822,32 +912,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.162375ms - - id: 23 + duration: 159.655917ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?include_totals=true&page=0&per_page=50 method: GET response: @@ -858,33 +947,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"total":7,"start":0,"limit":50,"client_grants":[{"id":"cgr_2Vts8dLuGtvZYYJ6","client_id":"CHI24TxGFCvpKNGCbaeda10PaKAAIKMh","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_8Pp7b8jtkWf5DjrG","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":[]},{"id":"cgr_Evsm7nFfvO4U0jnj","client_id":"S3OiXiZ6PZIX6LjpiCX9oKzcx0cfQFI4","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_LFqQ0mbRsNhuFSRN","client_id":"dax0nb80uCWmmTc5IPqDcPBDtVSsDXrB","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_VQp987tO6U2YcsmM","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":["create:foo"]},{"id":"cgr_bufAdwXvdQ7CZvZU","client_id":"W119pw3cOr1Y7IYPTzE8LHXfGSsR73KD","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_vnYlD4bSR32Qhr4h","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://custom-api.example.com/api/v1","scope":["read:resource","update:resource","create:resource"]}]}' + body: '{"total":17,"start":0,"limit":50,"client_grants":[{"id":"cgr_0S7EhItKlqvoa7cY","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_5E9mB0HCpMeWj8Lf","client_id":"23UwozUpHtbveqWVfrhSWM854ImmF1eL","audience":"https://example.org/basic","scope":[]},{"id":"cgr_6QihfCasVrEMrDwt","client_id":"pswvebw9Ekpfhi9AgW5yHt6iDW9hY0pa","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_BJ2hL4GsTnEe5k1r","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_DnXfOnhkAoqpIa6r","client_id":"buneel628H5ujqwWDYqLfULQeDrEfXvZ","audience":"urn:my-api","scope":[]},{"id":"cgr_FtndonVtZ3KD4Jie","client_id":"nDQmRJbuQdSCet69DaIyk8IX4PWA7FHC","audience":"https://example.com/page","scope":[]},{"id":"cgr_R8UZ32YkfRCwKRi9","client_id":"2pUhtrKU5JHqYN98O6iliVq6LQcePX5W","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:flows_executions","delete:flows_executions","read:connections_options","update:connections_options","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_U5QPBryhuW27LT0M","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_VfN7OOtv77wA2jMQ","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"urn:my-api","scope":[]},{"id":"cgr_ZTM7vh2bE4Wab2eu","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_cLs8JV85BMzwqPoN","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_dG5exT1iHkt5qIfu","client_id":"bAgqG0KlkTcoasZjBQZyoQVVekYU1iEm","audience":"https://example.org/test-api","scope":["test"]},{"id":"cgr_eY32JCPm2zviZLBj","client_id":"wpSMVTtd3z7ieyZeGhSbDMNc61hxxBe5","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_heGhidMdCah54EwJ","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_iw7bvriSE7ICUqZ4","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":["create:foo"]},{"id":"cgr_kKxibzaMf9xjnyj0","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_yIbMAMBzz1hVYa2T","client_id":"jx2QvRMljdXQGyZRdMc4GH4Af2wcJxho","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 93.482834ms - - id: 24 + duration: 162.950834ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/65646b369ca89bc61b853f00 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a2a65708cdaf6d114ded method: GET response: proto: HTTP/2.0 @@ -894,33 +982,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 92.592667ms - - id: 25 + duration: 166.757208ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/45vY8LGBEWaTH4t26qhndihoBtCh8s9A + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/SQUduIKITFewZ4vAICXjBcrJoPYqJjL4 method: GET response: proto: HTTP/2.0 @@ -930,32 +1017,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Grant - TestAccClientGrant","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - Client Grant - TestAccClientGrant","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.364333ms - - id: 26 + duration: 263.375208ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.tf.terraform-provider-auth0.com%2Fclient-grant%2FTestAccClientGrant method: GET response: @@ -966,32 +1052,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 86.236958ms - - id: 27 + duration: 166.584167ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?include_totals=true&page=0&per_page=50 method: GET response: @@ -1002,14 +1087,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"total":7,"start":0,"limit":50,"client_grants":[{"id":"cgr_2Vts8dLuGtvZYYJ6","client_id":"CHI24TxGFCvpKNGCbaeda10PaKAAIKMh","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_8Pp7b8jtkWf5DjrG","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":[]},{"id":"cgr_Evsm7nFfvO4U0jnj","client_id":"S3OiXiZ6PZIX6LjpiCX9oKzcx0cfQFI4","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_LFqQ0mbRsNhuFSRN","client_id":"dax0nb80uCWmmTc5IPqDcPBDtVSsDXrB","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_VQp987tO6U2YcsmM","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":["create:foo"]},{"id":"cgr_bufAdwXvdQ7CZvZU","client_id":"W119pw3cOr1Y7IYPTzE8LHXfGSsR73KD","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_vnYlD4bSR32Qhr4h","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://custom-api.example.com/api/v1","scope":["read:resource","update:resource","create:resource"]}]}' + body: '{"total":17,"start":0,"limit":50,"client_grants":[{"id":"cgr_0S7EhItKlqvoa7cY","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_5E9mB0HCpMeWj8Lf","client_id":"23UwozUpHtbveqWVfrhSWM854ImmF1eL","audience":"https://example.org/basic","scope":[]},{"id":"cgr_6QihfCasVrEMrDwt","client_id":"pswvebw9Ekpfhi9AgW5yHt6iDW9hY0pa","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_BJ2hL4GsTnEe5k1r","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_DnXfOnhkAoqpIa6r","client_id":"buneel628H5ujqwWDYqLfULQeDrEfXvZ","audience":"urn:my-api","scope":[]},{"id":"cgr_FtndonVtZ3KD4Jie","client_id":"nDQmRJbuQdSCet69DaIyk8IX4PWA7FHC","audience":"https://example.com/page","scope":[]},{"id":"cgr_R8UZ32YkfRCwKRi9","client_id":"2pUhtrKU5JHqYN98O6iliVq6LQcePX5W","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:flows_executions","delete:flows_executions","read:connections_options","update:connections_options","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_U5QPBryhuW27LT0M","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_VfN7OOtv77wA2jMQ","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"urn:my-api","scope":[]},{"id":"cgr_ZTM7vh2bE4Wab2eu","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_cLs8JV85BMzwqPoN","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_dG5exT1iHkt5qIfu","client_id":"bAgqG0KlkTcoasZjBQZyoQVVekYU1iEm","audience":"https://example.org/test-api","scope":["test"]},{"id":"cgr_eY32JCPm2zviZLBj","client_id":"wpSMVTtd3z7ieyZeGhSbDMNc61hxxBe5","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_heGhidMdCah54EwJ","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_iw7bvriSE7ICUqZ4","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":["create:foo"]},{"id":"cgr_kKxibzaMf9xjnyj0","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_yIbMAMBzz1hVYa2T","client_id":"jx2QvRMljdXQGyZRdMc4GH4Af2wcJxho","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.809ms - - id: 28 + duration: 156.777792ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1027,8 +1112,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants/cgr_VQp987tO6U2YcsmM + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants/cgr_iw7bvriSE7ICUqZ4 method: PATCH response: proto: HTTP/2.0 @@ -1038,32 +1123,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"cgr_VQp987tO6U2YcsmM","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]}' + body: '{"id":"cgr_iw7bvriSE7ICUqZ4","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.532916ms - - id: 29 + duration: 161.697834ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?include_totals=true&page=0&per_page=50 method: GET response: @@ -1074,33 +1158,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"total":7,"start":0,"limit":50,"client_grants":[{"id":"cgr_2Vts8dLuGtvZYYJ6","client_id":"CHI24TxGFCvpKNGCbaeda10PaKAAIKMh","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_8Pp7b8jtkWf5DjrG","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":[]},{"id":"cgr_Evsm7nFfvO4U0jnj","client_id":"S3OiXiZ6PZIX6LjpiCX9oKzcx0cfQFI4","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_LFqQ0mbRsNhuFSRN","client_id":"dax0nb80uCWmmTc5IPqDcPBDtVSsDXrB","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_VQp987tO6U2YcsmM","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_bufAdwXvdQ7CZvZU","client_id":"W119pw3cOr1Y7IYPTzE8LHXfGSsR73KD","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_vnYlD4bSR32Qhr4h","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://custom-api.example.com/api/v1","scope":["read:resource","update:resource","create:resource"]}]}' + body: '{"total":17,"start":0,"limit":50,"client_grants":[{"id":"cgr_0S7EhItKlqvoa7cY","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_5E9mB0HCpMeWj8Lf","client_id":"23UwozUpHtbveqWVfrhSWM854ImmF1eL","audience":"https://example.org/basic","scope":[]},{"id":"cgr_6QihfCasVrEMrDwt","client_id":"pswvebw9Ekpfhi9AgW5yHt6iDW9hY0pa","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_BJ2hL4GsTnEe5k1r","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_DnXfOnhkAoqpIa6r","client_id":"buneel628H5ujqwWDYqLfULQeDrEfXvZ","audience":"urn:my-api","scope":[]},{"id":"cgr_FtndonVtZ3KD4Jie","client_id":"nDQmRJbuQdSCet69DaIyk8IX4PWA7FHC","audience":"https://example.com/page","scope":[]},{"id":"cgr_R8UZ32YkfRCwKRi9","client_id":"2pUhtrKU5JHqYN98O6iliVq6LQcePX5W","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:flows_executions","delete:flows_executions","read:connections_options","update:connections_options","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_U5QPBryhuW27LT0M","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_VfN7OOtv77wA2jMQ","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"urn:my-api","scope":[]},{"id":"cgr_ZTM7vh2bE4Wab2eu","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_cLs8JV85BMzwqPoN","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_dG5exT1iHkt5qIfu","client_id":"bAgqG0KlkTcoasZjBQZyoQVVekYU1iEm","audience":"https://example.org/test-api","scope":["test"]},{"id":"cgr_eY32JCPm2zviZLBj","client_id":"wpSMVTtd3z7ieyZeGhSbDMNc61hxxBe5","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_heGhidMdCah54EwJ","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_iw7bvriSE7ICUqZ4","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_kKxibzaMf9xjnyj0","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_yIbMAMBzz1hVYa2T","client_id":"jx2QvRMljdXQGyZRdMc4GH4Af2wcJxho","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.028625ms - - id: 30 + duration: 170.509667ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/65646b369ca89bc61b853f00 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a2a65708cdaf6d114ded method: GET response: proto: HTTP/2.0 @@ -1110,33 +1193,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 87.91675ms - - id: 31 + duration: 187.466792ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/45vY8LGBEWaTH4t26qhndihoBtCh8s9A + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.tf.terraform-provider-auth0.com%2Fclient-grant%2FTestAccClientGrant method: GET response: proto: HTTP/2.0 @@ -1146,33 +1228,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Grant - TestAccClientGrant","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 92.09225ms - - id: 32 + duration: 171.464167ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.tf.terraform-provider-auth0.com%2Fclient-grant%2FTestAccClientGrant + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/SQUduIKITFewZ4vAICXjBcrJoPYqJjL4 method: GET response: proto: HTTP/2.0 @@ -1182,32 +1263,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' + body: '{"name":"Acceptance Test - Client Grant - TestAccClientGrant","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 81.131917ms - - id: 33 + duration: 178.641958ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?include_totals=true&page=0&per_page=50 method: GET response: @@ -1218,33 +1298,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"total":7,"start":0,"limit":50,"client_grants":[{"id":"cgr_2Vts8dLuGtvZYYJ6","client_id":"CHI24TxGFCvpKNGCbaeda10PaKAAIKMh","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_8Pp7b8jtkWf5DjrG","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":[]},{"id":"cgr_Evsm7nFfvO4U0jnj","client_id":"S3OiXiZ6PZIX6LjpiCX9oKzcx0cfQFI4","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_LFqQ0mbRsNhuFSRN","client_id":"dax0nb80uCWmmTc5IPqDcPBDtVSsDXrB","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_VQp987tO6U2YcsmM","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_bufAdwXvdQ7CZvZU","client_id":"W119pw3cOr1Y7IYPTzE8LHXfGSsR73KD","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_vnYlD4bSR32Qhr4h","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://custom-api.example.com/api/v1","scope":["read:resource","update:resource","create:resource"]}]}' + body: '{"total":17,"start":0,"limit":50,"client_grants":[{"id":"cgr_0S7EhItKlqvoa7cY","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_5E9mB0HCpMeWj8Lf","client_id":"23UwozUpHtbveqWVfrhSWM854ImmF1eL","audience":"https://example.org/basic","scope":[]},{"id":"cgr_6QihfCasVrEMrDwt","client_id":"pswvebw9Ekpfhi9AgW5yHt6iDW9hY0pa","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_BJ2hL4GsTnEe5k1r","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_DnXfOnhkAoqpIa6r","client_id":"buneel628H5ujqwWDYqLfULQeDrEfXvZ","audience":"urn:my-api","scope":[]},{"id":"cgr_FtndonVtZ3KD4Jie","client_id":"nDQmRJbuQdSCet69DaIyk8IX4PWA7FHC","audience":"https://example.com/page","scope":[]},{"id":"cgr_R8UZ32YkfRCwKRi9","client_id":"2pUhtrKU5JHqYN98O6iliVq6LQcePX5W","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:flows_executions","delete:flows_executions","read:connections_options","update:connections_options","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_U5QPBryhuW27LT0M","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_VfN7OOtv77wA2jMQ","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"urn:my-api","scope":[]},{"id":"cgr_ZTM7vh2bE4Wab2eu","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_cLs8JV85BMzwqPoN","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_dG5exT1iHkt5qIfu","client_id":"bAgqG0KlkTcoasZjBQZyoQVVekYU1iEm","audience":"https://example.org/test-api","scope":["test"]},{"id":"cgr_eY32JCPm2zviZLBj","client_id":"wpSMVTtd3z7ieyZeGhSbDMNc61hxxBe5","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_heGhidMdCah54EwJ","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_iw7bvriSE7ICUqZ4","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_kKxibzaMf9xjnyj0","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_yIbMAMBzz1hVYa2T","client_id":"jx2QvRMljdXQGyZRdMc4GH4Af2wcJxho","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 87.293958ms - - id: 34 + duration: 184.296ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/65646b369ca89bc61b853f00 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a2a65708cdaf6d114ded method: GET response: proto: HTTP/2.0 @@ -1254,33 +1333,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 88.146ms - - id: 35 + duration: 158.163166ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/45vY8LGBEWaTH4t26qhndihoBtCh8s9A + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/SQUduIKITFewZ4vAICXjBcrJoPYqJjL4 method: GET response: proto: HTTP/2.0 @@ -1290,32 +1368,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Grant - TestAccClientGrant","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - Client Grant - TestAccClientGrant","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.161917ms - - id: 36 + duration: 219.010458ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.tf.terraform-provider-auth0.com%2Fclient-grant%2FTestAccClientGrant method: GET response: @@ -1326,32 +1403,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 92.050209ms - - id: 37 + duration: 176.017042ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?include_totals=true&page=0&per_page=50 method: GET response: @@ -1362,14 +1438,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"total":7,"start":0,"limit":50,"client_grants":[{"id":"cgr_2Vts8dLuGtvZYYJ6","client_id":"CHI24TxGFCvpKNGCbaeda10PaKAAIKMh","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_8Pp7b8jtkWf5DjrG","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":[]},{"id":"cgr_Evsm7nFfvO4U0jnj","client_id":"S3OiXiZ6PZIX6LjpiCX9oKzcx0cfQFI4","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_LFqQ0mbRsNhuFSRN","client_id":"dax0nb80uCWmmTc5IPqDcPBDtVSsDXrB","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_VQp987tO6U2YcsmM","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_bufAdwXvdQ7CZvZU","client_id":"W119pw3cOr1Y7IYPTzE8LHXfGSsR73KD","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_vnYlD4bSR32Qhr4h","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://custom-api.example.com/api/v1","scope":["read:resource","update:resource","create:resource"]}]}' + body: '{"total":17,"start":0,"limit":50,"client_grants":[{"id":"cgr_0S7EhItKlqvoa7cY","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_5E9mB0HCpMeWj8Lf","client_id":"23UwozUpHtbveqWVfrhSWM854ImmF1eL","audience":"https://example.org/basic","scope":[]},{"id":"cgr_6QihfCasVrEMrDwt","client_id":"pswvebw9Ekpfhi9AgW5yHt6iDW9hY0pa","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_BJ2hL4GsTnEe5k1r","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_DnXfOnhkAoqpIa6r","client_id":"buneel628H5ujqwWDYqLfULQeDrEfXvZ","audience":"urn:my-api","scope":[]},{"id":"cgr_FtndonVtZ3KD4Jie","client_id":"nDQmRJbuQdSCet69DaIyk8IX4PWA7FHC","audience":"https://example.com/page","scope":[]},{"id":"cgr_R8UZ32YkfRCwKRi9","client_id":"2pUhtrKU5JHqYN98O6iliVq6LQcePX5W","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:flows_executions","delete:flows_executions","read:connections_options","update:connections_options","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_U5QPBryhuW27LT0M","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_VfN7OOtv77wA2jMQ","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"urn:my-api","scope":[]},{"id":"cgr_ZTM7vh2bE4Wab2eu","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_cLs8JV85BMzwqPoN","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_dG5exT1iHkt5qIfu","client_id":"bAgqG0KlkTcoasZjBQZyoQVVekYU1iEm","audience":"https://example.org/test-api","scope":["test"]},{"id":"cgr_eY32JCPm2zviZLBj","client_id":"wpSMVTtd3z7ieyZeGhSbDMNc61hxxBe5","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_heGhidMdCah54EwJ","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_iw7bvriSE7ICUqZ4","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_kKxibzaMf9xjnyj0","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_yIbMAMBzz1hVYa2T","client_id":"jx2QvRMljdXQGyZRdMc4GH4Af2wcJxho","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 90.792ms - - id: 38 + duration: 184.199958ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1386,8 +1462,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants/cgr_VQp987tO6U2YcsmM + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants/cgr_iw7bvriSE7ICUqZ4 method: DELETE response: proto: HTTP/2.0 @@ -1403,8 +1479,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 106.858167ms - - id: 39 + duration: 147.228667ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -1422,7 +1498,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients method: POST response: @@ -1433,33 +1509,32 @@ interactions: trailer: {} content_length: -1 uncompressed: false - body: '{"name":"Acceptance Test - Client Grant Alt - TestAccClientGrant","client_id":"XEm92ueC5hiViSlXYEVSLxcqDeHoE3zE","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - Client Grant Alt - TestAccClientGrant","client_id":"ztPBESuO5fbzgpsObUBTJTaDR6AehXzD","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 290.155833ms - - id: 40 + duration: 307.943208ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/XEm92ueC5hiViSlXYEVSLxcqDeHoE3zE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/ztPBESuO5fbzgpsObUBTJTaDR6AehXzD method: GET response: proto: HTTP/2.0 @@ -1469,33 +1544,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Grant Alt - TestAccClientGrant","client_id":"XEm92ueC5hiViSlXYEVSLxcqDeHoE3zE","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - Client Grant Alt - TestAccClientGrant","client_id":"ztPBESuO5fbzgpsObUBTJTaDR6AehXzD","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 139.220209ms - - id: 41 + duration: 178.684ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?audience=https%3A%2F%2Fuat.tf.terraform-provider-auth0.com%2Fclient-grant%2FTestAccClientGrant&client_id=XEm92ueC5hiViSlXYEVSLxcqDeHoE3zE&include_totals=true&per_page=50 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?audience=https%3A%2F%2Fuat.tf.terraform-provider-auth0.com%2Fclient-grant%2FTestAccClientGrant&client_id=ztPBESuO5fbzgpsObUBTJTaDR6AehXzD&include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1511,8 +1585,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.554584ms - - id: 42 + duration: 201.695083ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -1524,13 +1598,13 @@ interactions: remote_addr: "" request_uri: "" body: | - {"client_id":"XEm92ueC5hiViSlXYEVSLxcqDeHoE3zE","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]} + {"client_id":"ztPBESuO5fbzgpsObUBTJTaDR6AehXzD","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants method: POST response: @@ -1541,32 +1615,31 @@ interactions: trailer: {} content_length: 176 uncompressed: false - body: '{"id":"cgr_HDUeNukGIysme7OL","client_id":"XEm92ueC5hiViSlXYEVSLxcqDeHoE3zE","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]}' + body: '{"id":"cgr_9o5A6TZa4yjofbyC","client_id":"ztPBESuO5fbzgpsObUBTJTaDR6AehXzD","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 115.704833ms - - id: 43 + duration: 162.459459ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?include_totals=true&page=0&per_page=50 method: GET response: @@ -1577,33 +1650,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"total":7,"start":0,"limit":50,"client_grants":[{"id":"cgr_2Vts8dLuGtvZYYJ6","client_id":"CHI24TxGFCvpKNGCbaeda10PaKAAIKMh","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_8Pp7b8jtkWf5DjrG","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":[]},{"id":"cgr_Evsm7nFfvO4U0jnj","client_id":"S3OiXiZ6PZIX6LjpiCX9oKzcx0cfQFI4","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_HDUeNukGIysme7OL","client_id":"XEm92ueC5hiViSlXYEVSLxcqDeHoE3zE","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_LFqQ0mbRsNhuFSRN","client_id":"dax0nb80uCWmmTc5IPqDcPBDtVSsDXrB","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_bufAdwXvdQ7CZvZU","client_id":"W119pw3cOr1Y7IYPTzE8LHXfGSsR73KD","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_vnYlD4bSR32Qhr4h","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://custom-api.example.com/api/v1","scope":["read:resource","update:resource","create:resource"]}]}' + body: '{"total":17,"start":0,"limit":50,"client_grants":[{"id":"cgr_0S7EhItKlqvoa7cY","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_5E9mB0HCpMeWj8Lf","client_id":"23UwozUpHtbveqWVfrhSWM854ImmF1eL","audience":"https://example.org/basic","scope":[]},{"id":"cgr_6QihfCasVrEMrDwt","client_id":"pswvebw9Ekpfhi9AgW5yHt6iDW9hY0pa","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_9o5A6TZa4yjofbyC","client_id":"ztPBESuO5fbzgpsObUBTJTaDR6AehXzD","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_BJ2hL4GsTnEe5k1r","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_DnXfOnhkAoqpIa6r","client_id":"buneel628H5ujqwWDYqLfULQeDrEfXvZ","audience":"urn:my-api","scope":[]},{"id":"cgr_FtndonVtZ3KD4Jie","client_id":"nDQmRJbuQdSCet69DaIyk8IX4PWA7FHC","audience":"https://example.com/page","scope":[]},{"id":"cgr_R8UZ32YkfRCwKRi9","client_id":"2pUhtrKU5JHqYN98O6iliVq6LQcePX5W","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:flows_executions","delete:flows_executions","read:connections_options","update:connections_options","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_U5QPBryhuW27LT0M","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_VfN7OOtv77wA2jMQ","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"urn:my-api","scope":[]},{"id":"cgr_ZTM7vh2bE4Wab2eu","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_cLs8JV85BMzwqPoN","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_dG5exT1iHkt5qIfu","client_id":"bAgqG0KlkTcoasZjBQZyoQVVekYU1iEm","audience":"https://example.org/test-api","scope":["test"]},{"id":"cgr_eY32JCPm2zviZLBj","client_id":"wpSMVTtd3z7ieyZeGhSbDMNc61hxxBe5","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_heGhidMdCah54EwJ","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_kKxibzaMf9xjnyj0","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_yIbMAMBzz1hVYa2T","client_id":"jx2QvRMljdXQGyZRdMc4GH4Af2wcJxho","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 101.034708ms - - id: 44 + duration: 182.396208ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/65646b369ca89bc61b853f00 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a2a65708cdaf6d114ded method: GET response: proto: HTTP/2.0 @@ -1613,33 +1685,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 86.453792ms - - id: 45 + duration: 182.878541ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/45vY8LGBEWaTH4t26qhndihoBtCh8s9A + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/SQUduIKITFewZ4vAICXjBcrJoPYqJjL4 method: GET response: proto: HTTP/2.0 @@ -1649,32 +1720,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Grant - TestAccClientGrant","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - Client Grant - TestAccClientGrant","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.852791ms - - id: 46 + duration: 189.81825ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.tf.terraform-provider-auth0.com%2Fclient-grant%2FTestAccClientGrant method: GET response: @@ -1685,33 +1755,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 78.6155ms - - id: 47 + duration: 162.774333ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/XEm92ueC5hiViSlXYEVSLxcqDeHoE3zE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/ztPBESuO5fbzgpsObUBTJTaDR6AehXzD method: GET response: proto: HTTP/2.0 @@ -1721,32 +1790,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Grant Alt - TestAccClientGrant","client_id":"XEm92ueC5hiViSlXYEVSLxcqDeHoE3zE","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - Client Grant Alt - TestAccClientGrant","client_id":"ztPBESuO5fbzgpsObUBTJTaDR6AehXzD","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.802916ms - - id: 48 + duration: 170.299041ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?include_totals=true&page=0&per_page=50 method: GET response: @@ -1757,33 +1825,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"total":7,"start":0,"limit":50,"client_grants":[{"id":"cgr_2Vts8dLuGtvZYYJ6","client_id":"CHI24TxGFCvpKNGCbaeda10PaKAAIKMh","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_8Pp7b8jtkWf5DjrG","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":[]},{"id":"cgr_Evsm7nFfvO4U0jnj","client_id":"S3OiXiZ6PZIX6LjpiCX9oKzcx0cfQFI4","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_HDUeNukGIysme7OL","client_id":"XEm92ueC5hiViSlXYEVSLxcqDeHoE3zE","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_LFqQ0mbRsNhuFSRN","client_id":"dax0nb80uCWmmTc5IPqDcPBDtVSsDXrB","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_bufAdwXvdQ7CZvZU","client_id":"W119pw3cOr1Y7IYPTzE8LHXfGSsR73KD","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_vnYlD4bSR32Qhr4h","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://custom-api.example.com/api/v1","scope":["read:resource","update:resource","create:resource"]}]}' + body: '{"total":17,"start":0,"limit":50,"client_grants":[{"id":"cgr_0S7EhItKlqvoa7cY","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_5E9mB0HCpMeWj8Lf","client_id":"23UwozUpHtbveqWVfrhSWM854ImmF1eL","audience":"https://example.org/basic","scope":[]},{"id":"cgr_6QihfCasVrEMrDwt","client_id":"pswvebw9Ekpfhi9AgW5yHt6iDW9hY0pa","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_9o5A6TZa4yjofbyC","client_id":"ztPBESuO5fbzgpsObUBTJTaDR6AehXzD","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_BJ2hL4GsTnEe5k1r","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_DnXfOnhkAoqpIa6r","client_id":"buneel628H5ujqwWDYqLfULQeDrEfXvZ","audience":"urn:my-api","scope":[]},{"id":"cgr_FtndonVtZ3KD4Jie","client_id":"nDQmRJbuQdSCet69DaIyk8IX4PWA7FHC","audience":"https://example.com/page","scope":[]},{"id":"cgr_R8UZ32YkfRCwKRi9","client_id":"2pUhtrKU5JHqYN98O6iliVq6LQcePX5W","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:flows_executions","delete:flows_executions","read:connections_options","update:connections_options","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_U5QPBryhuW27LT0M","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_VfN7OOtv77wA2jMQ","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"urn:my-api","scope":[]},{"id":"cgr_ZTM7vh2bE4Wab2eu","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_cLs8JV85BMzwqPoN","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_dG5exT1iHkt5qIfu","client_id":"bAgqG0KlkTcoasZjBQZyoQVVekYU1iEm","audience":"https://example.org/test-api","scope":["test"]},{"id":"cgr_eY32JCPm2zviZLBj","client_id":"wpSMVTtd3z7ieyZeGhSbDMNc61hxxBe5","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_heGhidMdCah54EwJ","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_kKxibzaMf9xjnyj0","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_yIbMAMBzz1hVYa2T","client_id":"jx2QvRMljdXQGyZRdMc4GH4Af2wcJxho","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 143.798334ms - - id: 49 + duration: 163.817875ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/65646b369ca89bc61b853f00 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a2a65708cdaf6d114ded method: GET response: proto: HTTP/2.0 @@ -1793,33 +1860,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 88.563084ms - - id: 50 + duration: 168.672334ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/45vY8LGBEWaTH4t26qhndihoBtCh8s9A + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/SQUduIKITFewZ4vAICXjBcrJoPYqJjL4 method: GET response: proto: HTTP/2.0 @@ -1829,32 +1895,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Grant - TestAccClientGrant","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - Client Grant - TestAccClientGrant","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.636417ms - - id: 51 + duration: 192.762125ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.tf.terraform-provider-auth0.com%2Fclient-grant%2FTestAccClientGrant method: GET response: @@ -1865,33 +1930,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 106.470416ms - - id: 52 + duration: 186.495916ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/XEm92ueC5hiViSlXYEVSLxcqDeHoE3zE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/ztPBESuO5fbzgpsObUBTJTaDR6AehXzD method: GET response: proto: HTTP/2.0 @@ -1901,32 +1965,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Grant Alt - TestAccClientGrant","client_id":"XEm92ueC5hiViSlXYEVSLxcqDeHoE3zE","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - Client Grant Alt - TestAccClientGrant","client_id":"ztPBESuO5fbzgpsObUBTJTaDR6AehXzD","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 131.359875ms - - id: 53 + duration: 167.54625ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?include_totals=true&page=0&per_page=50 method: GET response: @@ -1937,33 +2000,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"total":7,"start":0,"limit":50,"client_grants":[{"id":"cgr_2Vts8dLuGtvZYYJ6","client_id":"CHI24TxGFCvpKNGCbaeda10PaKAAIKMh","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_8Pp7b8jtkWf5DjrG","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":[]},{"id":"cgr_Evsm7nFfvO4U0jnj","client_id":"S3OiXiZ6PZIX6LjpiCX9oKzcx0cfQFI4","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_HDUeNukGIysme7OL","client_id":"XEm92ueC5hiViSlXYEVSLxcqDeHoE3zE","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_LFqQ0mbRsNhuFSRN","client_id":"dax0nb80uCWmmTc5IPqDcPBDtVSsDXrB","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_bufAdwXvdQ7CZvZU","client_id":"W119pw3cOr1Y7IYPTzE8LHXfGSsR73KD","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_vnYlD4bSR32Qhr4h","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://custom-api.example.com/api/v1","scope":["read:resource","update:resource","create:resource"]}]}' + body: '{"total":17,"start":0,"limit":50,"client_grants":[{"id":"cgr_0S7EhItKlqvoa7cY","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_5E9mB0HCpMeWj8Lf","client_id":"23UwozUpHtbveqWVfrhSWM854ImmF1eL","audience":"https://example.org/basic","scope":[]},{"id":"cgr_6QihfCasVrEMrDwt","client_id":"pswvebw9Ekpfhi9AgW5yHt6iDW9hY0pa","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_9o5A6TZa4yjofbyC","client_id":"ztPBESuO5fbzgpsObUBTJTaDR6AehXzD","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_BJ2hL4GsTnEe5k1r","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_DnXfOnhkAoqpIa6r","client_id":"buneel628H5ujqwWDYqLfULQeDrEfXvZ","audience":"urn:my-api","scope":[]},{"id":"cgr_FtndonVtZ3KD4Jie","client_id":"nDQmRJbuQdSCet69DaIyk8IX4PWA7FHC","audience":"https://example.com/page","scope":[]},{"id":"cgr_R8UZ32YkfRCwKRi9","client_id":"2pUhtrKU5JHqYN98O6iliVq6LQcePX5W","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:flows_executions","delete:flows_executions","read:connections_options","update:connections_options","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_U5QPBryhuW27LT0M","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_VfN7OOtv77wA2jMQ","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"urn:my-api","scope":[]},{"id":"cgr_ZTM7vh2bE4Wab2eu","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_cLs8JV85BMzwqPoN","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_dG5exT1iHkt5qIfu","client_id":"bAgqG0KlkTcoasZjBQZyoQVVekYU1iEm","audience":"https://example.org/test-api","scope":["test"]},{"id":"cgr_eY32JCPm2zviZLBj","client_id":"wpSMVTtd3z7ieyZeGhSbDMNc61hxxBe5","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_heGhidMdCah54EwJ","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_kKxibzaMf9xjnyj0","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_yIbMAMBzz1hVYa2T","client_id":"jx2QvRMljdXQGyZRdMc4GH4Af2wcJxho","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.840875ms - - id: 54 + duration: 180.715708ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?audience=https%3A%2F%2Fuat.tf.terraform-provider-auth0.com%2Fclient-grant%2FTestAccClientGrant&client_id=XEm92ueC5hiViSlXYEVSLxcqDeHoE3zE&include_totals=true&per_page=50 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?audience=https%3A%2F%2Fuat.tf.terraform-provider-auth0.com%2Fclient-grant%2FTestAccClientGrant&client_id=ztPBESuO5fbzgpsObUBTJTaDR6AehXzD&include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1973,32 +2035,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"total":1,"start":0,"limit":50,"client_grants":[{"id":"cgr_HDUeNukGIysme7OL","client_id":"XEm92ueC5hiViSlXYEVSLxcqDeHoE3zE","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]}]}' + body: '{"total":1,"start":0,"limit":50,"client_grants":[{"id":"cgr_9o5A6TZa4yjofbyC","client_id":"ztPBESuO5fbzgpsObUBTJTaDR6AehXzD","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 87.499583ms - - id: 55 + duration: 163.51825ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?include_totals=true&page=0&per_page=50 method: GET response: @@ -2009,33 +2070,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"total":7,"start":0,"limit":50,"client_grants":[{"id":"cgr_2Vts8dLuGtvZYYJ6","client_id":"CHI24TxGFCvpKNGCbaeda10PaKAAIKMh","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_8Pp7b8jtkWf5DjrG","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":[]},{"id":"cgr_Evsm7nFfvO4U0jnj","client_id":"S3OiXiZ6PZIX6LjpiCX9oKzcx0cfQFI4","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_HDUeNukGIysme7OL","client_id":"XEm92ueC5hiViSlXYEVSLxcqDeHoE3zE","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_LFqQ0mbRsNhuFSRN","client_id":"dax0nb80uCWmmTc5IPqDcPBDtVSsDXrB","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_bufAdwXvdQ7CZvZU","client_id":"W119pw3cOr1Y7IYPTzE8LHXfGSsR73KD","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_vnYlD4bSR32Qhr4h","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://custom-api.example.com/api/v1","scope":["read:resource","update:resource","create:resource"]}]}' + body: '{"total":17,"start":0,"limit":50,"client_grants":[{"id":"cgr_0S7EhItKlqvoa7cY","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_5E9mB0HCpMeWj8Lf","client_id":"23UwozUpHtbveqWVfrhSWM854ImmF1eL","audience":"https://example.org/basic","scope":[]},{"id":"cgr_6QihfCasVrEMrDwt","client_id":"pswvebw9Ekpfhi9AgW5yHt6iDW9hY0pa","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_9o5A6TZa4yjofbyC","client_id":"ztPBESuO5fbzgpsObUBTJTaDR6AehXzD","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_BJ2hL4GsTnEe5k1r","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_DnXfOnhkAoqpIa6r","client_id":"buneel628H5ujqwWDYqLfULQeDrEfXvZ","audience":"urn:my-api","scope":[]},{"id":"cgr_FtndonVtZ3KD4Jie","client_id":"nDQmRJbuQdSCet69DaIyk8IX4PWA7FHC","audience":"https://example.com/page","scope":[]},{"id":"cgr_R8UZ32YkfRCwKRi9","client_id":"2pUhtrKU5JHqYN98O6iliVq6LQcePX5W","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:flows_executions","delete:flows_executions","read:connections_options","update:connections_options","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_U5QPBryhuW27LT0M","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_VfN7OOtv77wA2jMQ","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"urn:my-api","scope":[]},{"id":"cgr_ZTM7vh2bE4Wab2eu","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_cLs8JV85BMzwqPoN","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_dG5exT1iHkt5qIfu","client_id":"bAgqG0KlkTcoasZjBQZyoQVVekYU1iEm","audience":"https://example.org/test-api","scope":["test"]},{"id":"cgr_eY32JCPm2zviZLBj","client_id":"wpSMVTtd3z7ieyZeGhSbDMNc61hxxBe5","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_heGhidMdCah54EwJ","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_kKxibzaMf9xjnyj0","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_yIbMAMBzz1hVYa2T","client_id":"jx2QvRMljdXQGyZRdMc4GH4Af2wcJxho","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 93.014ms - - id: 56 + duration: 186.409625ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/45vY8LGBEWaTH4t26qhndihoBtCh8s9A + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a2a65708cdaf6d114ded method: GET response: proto: HTTP/2.0 @@ -2045,33 +2105,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Grant - TestAccClientGrant","client_id":"45vY8LGBEWaTH4t26qhndihoBtCh8s9A","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 102.674833ms - - id: 57 + duration: 164.32725ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/65646b369ca89bc61b853f00 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/SQUduIKITFewZ4vAICXjBcrJoPYqJjL4 method: GET response: proto: HTTP/2.0 @@ -2081,32 +2140,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' + body: '{"name":"Acceptance Test - Client Grant - TestAccClientGrant","client_id":"SQUduIKITFewZ4vAICXjBcrJoPYqJjL4","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 82.694875ms - - id: 58 + duration: 169.719416ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.tf.terraform-provider-auth0.com%2Fclient-grant%2FTestAccClientGrant method: GET response: @@ -2117,33 +2175,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.914209ms - - id: 59 + duration: 173.724417ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/XEm92ueC5hiViSlXYEVSLxcqDeHoE3zE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/ztPBESuO5fbzgpsObUBTJTaDR6AehXzD method: GET response: proto: HTTP/2.0 @@ -2153,32 +2210,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance Test - Client Grant Alt - TestAccClientGrant","client_id":"XEm92ueC5hiViSlXYEVSLxcqDeHoE3zE","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance Test - Client Grant Alt - TestAccClientGrant","client_id":"ztPBESuO5fbzgpsObUBTJTaDR6AehXzD","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 162.462083ms - - id: 60 + duration: 182.181708ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?include_totals=true&page=0&per_page=50 method: GET response: @@ -2189,32 +2245,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"total":7,"start":0,"limit":50,"client_grants":[{"id":"cgr_2Vts8dLuGtvZYYJ6","client_id":"CHI24TxGFCvpKNGCbaeda10PaKAAIKMh","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_8Pp7b8jtkWf5DjrG","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":[]},{"id":"cgr_Evsm7nFfvO4U0jnj","client_id":"S3OiXiZ6PZIX6LjpiCX9oKzcx0cfQFI4","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_HDUeNukGIysme7OL","client_id":"XEm92ueC5hiViSlXYEVSLxcqDeHoE3zE","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_LFqQ0mbRsNhuFSRN","client_id":"dax0nb80uCWmmTc5IPqDcPBDtVSsDXrB","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_bufAdwXvdQ7CZvZU","client_id":"W119pw3cOr1Y7IYPTzE8LHXfGSsR73KD","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_vnYlD4bSR32Qhr4h","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://custom-api.example.com/api/v1","scope":["read:resource","update:resource","create:resource"]}]}' + body: '{"total":17,"start":0,"limit":50,"client_grants":[{"id":"cgr_0S7EhItKlqvoa7cY","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_5E9mB0HCpMeWj8Lf","client_id":"23UwozUpHtbveqWVfrhSWM854ImmF1eL","audience":"https://example.org/basic","scope":[]},{"id":"cgr_6QihfCasVrEMrDwt","client_id":"pswvebw9Ekpfhi9AgW5yHt6iDW9hY0pa","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_9o5A6TZa4yjofbyC","client_id":"ztPBESuO5fbzgpsObUBTJTaDR6AehXzD","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_BJ2hL4GsTnEe5k1r","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_DnXfOnhkAoqpIa6r","client_id":"buneel628H5ujqwWDYqLfULQeDrEfXvZ","audience":"urn:my-api","scope":[]},{"id":"cgr_FtndonVtZ3KD4Jie","client_id":"nDQmRJbuQdSCet69DaIyk8IX4PWA7FHC","audience":"https://example.com/page","scope":[]},{"id":"cgr_R8UZ32YkfRCwKRi9","client_id":"2pUhtrKU5JHqYN98O6iliVq6LQcePX5W","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:flows_executions","delete:flows_executions","read:connections_options","update:connections_options","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_U5QPBryhuW27LT0M","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_VfN7OOtv77wA2jMQ","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"urn:my-api","scope":[]},{"id":"cgr_ZTM7vh2bE4Wab2eu","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_cLs8JV85BMzwqPoN","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_dG5exT1iHkt5qIfu","client_id":"bAgqG0KlkTcoasZjBQZyoQVVekYU1iEm","audience":"https://example.org/test-api","scope":["test"]},{"id":"cgr_eY32JCPm2zviZLBj","client_id":"wpSMVTtd3z7ieyZeGhSbDMNc61hxxBe5","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_heGhidMdCah54EwJ","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_kKxibzaMf9xjnyj0","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_yIbMAMBzz1hVYa2T","client_id":"jx2QvRMljdXQGyZRdMc4GH4Af2wcJxho","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 155.732833ms - - id: 61 + duration: 163.531875ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants?include_totals=true&page=0&per_page=50 method: GET response: @@ -2225,14 +2280,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"total":7,"start":0,"limit":50,"client_grants":[{"id":"cgr_2Vts8dLuGtvZYYJ6","client_id":"CHI24TxGFCvpKNGCbaeda10PaKAAIKMh","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_8Pp7b8jtkWf5DjrG","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":[]},{"id":"cgr_Evsm7nFfvO4U0jnj","client_id":"S3OiXiZ6PZIX6LjpiCX9oKzcx0cfQFI4","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_HDUeNukGIysme7OL","client_id":"XEm92ueC5hiViSlXYEVSLxcqDeHoE3zE","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_LFqQ0mbRsNhuFSRN","client_id":"dax0nb80uCWmmTc5IPqDcPBDtVSsDXrB","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:organizations_summary","create:actions_log_sessions","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_bufAdwXvdQ7CZvZU","client_id":"W119pw3cOr1Y7IYPTzE8LHXfGSsR73KD","audience":"https://custom-api.example.com/api/v1","scope":[]},{"id":"cgr_vnYlD4bSR32Qhr4h","client_id":"8ldsGbPqOiTBO2biI5eEPLVcnLuxjQQu","audience":"https://custom-api.example.com/api/v1","scope":["read:resource","update:resource","create:resource"]}]}' + body: '{"total":17,"start":0,"limit":50,"client_grants":[{"id":"cgr_0S7EhItKlqvoa7cY","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_5E9mB0HCpMeWj8Lf","client_id":"23UwozUpHtbveqWVfrhSWM854ImmF1eL","audience":"https://example.org/basic","scope":[]},{"id":"cgr_6QihfCasVrEMrDwt","client_id":"pswvebw9Ekpfhi9AgW5yHt6iDW9hY0pa","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_9o5A6TZa4yjofbyC","client_id":"ztPBESuO5fbzgpsObUBTJTaDR6AehXzD","audience":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","scope":[]},{"id":"cgr_BJ2hL4GsTnEe5k1r","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_DnXfOnhkAoqpIa6r","client_id":"buneel628H5ujqwWDYqLfULQeDrEfXvZ","audience":"urn:my-api","scope":[]},{"id":"cgr_FtndonVtZ3KD4Jie","client_id":"nDQmRJbuQdSCet69DaIyk8IX4PWA7FHC","audience":"https://example.com/page","scope":[]},{"id":"cgr_R8UZ32YkfRCwKRi9","client_id":"2pUhtrKU5JHqYN98O6iliVq6LQcePX5W","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:forms","update:forms","delete:forms","create:forms","read:flows","update:flows","delete:flows","create:flows","read:flows_vault","update:flows_vault","delete:flows_vault","create:flows_vault","read:flows_executions","delete:flows_executions","read:connections_options","update:connections_options","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_U5QPBryhuW27LT0M","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_VfN7OOtv77wA2jMQ","client_id":"rir5ICwdhSbS18vGgaj7rMA4lZwgQMBg","audience":"urn:my-api","scope":[]},{"id":"cgr_ZTM7vh2bE4Wab2eu","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","read:scim_config","create:scim_config","update:scim_config","delete:scim_config","create:scim_token","read:scim_token","delete:scim_token","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]},{"id":"cgr_cLs8JV85BMzwqPoN","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_dG5exT1iHkt5qIfu","client_id":"bAgqG0KlkTcoasZjBQZyoQVVekYU1iEm","audience":"https://example.org/test-api","scope":["test"]},{"id":"cgr_eY32JCPm2zviZLBj","client_id":"wpSMVTtd3z7ieyZeGhSbDMNc61hxxBe5","audience":"https://example.org/test-me","scope":[]},{"id":"cgr_heGhidMdCah54EwJ","client_id":"9LbN6gr44wiB2j702CCxFGFPiJFLBOYg","audience":"https://example.org/jwe-api","scope":[]},{"id":"cgr_kKxibzaMf9xjnyj0","client_id":"dRDCichnI5aJKpvjaRMdm2QgSELrqYGU","audience":"https://example.org/test-api","scope":[]},{"id":"cgr_yIbMAMBzz1hVYa2T","client_id":"jx2QvRMljdXQGyZRdMc4GH4Af2wcJxho","audience":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","scope":["read:client_grants","create:client_grants","delete:client_grants","update:client_grants","read:users","update:users","delete:users","create:users","read:users_app_metadata","update:users_app_metadata","delete:users_app_metadata","create:users_app_metadata","read:user_custom_blocks","create:user_custom_blocks","delete:user_custom_blocks","create:user_tickets","read:clients","update:clients","delete:clients","create:clients","read:client_keys","update:client_keys","delete:client_keys","create:client_keys","read:connections","update:connections","delete:connections","create:connections","read:resource_servers","update:resource_servers","delete:resource_servers","create:resource_servers","read:device_credentials","update:device_credentials","delete:device_credentials","create:device_credentials","read:rules","update:rules","delete:rules","create:rules","read:rules_configs","update:rules_configs","delete:rules_configs","read:hooks","update:hooks","delete:hooks","create:hooks","read:actions","update:actions","delete:actions","create:actions","read:email_provider","update:email_provider","delete:email_provider","create:email_provider","blacklist:tokens","read:stats","read:insights","read:tenant_settings","update:tenant_settings","read:logs","read:logs_users","read:shields","create:shields","update:shields","delete:shields","read:anomaly_blocks","delete:anomaly_blocks","update:triggers","read:triggers","read:grants","delete:grants","read:guardian_factors","update:guardian_factors","read:guardian_enrollments","delete:guardian_enrollments","create:guardian_enrollment_tickets","read:user_idp_tokens","create:passwords_checking_job","delete:passwords_checking_job","read:custom_domains","delete:custom_domains","create:custom_domains","update:custom_domains","read:email_templates","create:email_templates","update:email_templates","read:mfa_policies","update:mfa_policies","read:roles","create:roles","delete:roles","update:roles","read:prompts","update:prompts","read:branding","update:branding","delete:branding","read:log_streams","create:log_streams","delete:log_streams","update:log_streams","create:signing_keys","read:signing_keys","update:signing_keys","read:limits","update:limits","create:role_members","read:role_members","delete:role_members","read:entitlements","read:attack_protection","update:attack_protection","read:organizations_summary","create:authentication_methods","read:authentication_methods","update:authentication_methods","delete:authentication_methods","read:organizations","update:organizations","create:organizations","delete:organizations","create:organization_members","read:organization_members","delete:organization_members","create:organization_connections","read:organization_connections","update:organization_connections","delete:organization_connections","create:organization_member_roles","read:organization_member_roles","delete:organization_member_roles","create:organization_invitations","read:organization_invitations","delete:organization_invitations","delete:phone_providers","create:phone_providers","read:phone_providers","update:phone_providers","delete:phone_templates","create:phone_templates","read:phone_templates","update:phone_templates","create:encryption_keys","read:encryption_keys","update:encryption_keys","delete:encryption_keys","read:sessions","delete:sessions","read:refresh_tokens","delete:refresh_tokens","create:self_service_profiles","read:self_service_profiles","update:self_service_profiles","delete:self_service_profiles","create:sso_access_tickets","read:client_credentials","create:client_credentials","update:client_credentials","delete:client_credentials"]}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.112667ms - - id: 62 + duration: 169.661625ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -2249,8 +2304,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants/cgr_HDUeNukGIysme7OL + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants/cgr_9o5A6TZa4yjofbyC method: DELETE response: proto: HTTP/2.0 @@ -2266,8 +2321,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 392.48225ms - - id: 63 + duration: 172.75775ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -2284,8 +2339,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/45vY8LGBEWaTH4t26qhndihoBtCh8s9A + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/SQUduIKITFewZ4vAICXjBcrJoPYqJjL4 method: DELETE response: proto: HTTP/2.0 @@ -2301,8 +2356,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 392.472833ms - - id: 64 + duration: 213.079875ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -2319,8 +2374,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants/cgr_HDUeNukGIysme7OL + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/client-grants/cgr_9o5A6TZa4yjofbyC method: DELETE response: proto: HTTP/2.0 @@ -2336,8 +2391,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 77.505708ms - - id: 65 + duration: 167.352125ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -2354,8 +2409,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/XEm92ueC5hiViSlXYEVSLxcqDeHoE3zE + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/ztPBESuO5fbzgpsObUBTJTaDR6AehXzD method: DELETE response: proto: HTTP/2.0 @@ -2371,8 +2426,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 126.500958ms - - id: 66 + duration: 170.863375ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -2390,7 +2445,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.tf.terraform-provider-auth0.com%2Fclient-grant%2FTestAccClientGrant method: PATCH response: @@ -2401,14 +2456,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"65646b369ca89bc61b853f00","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e0a2a65708cdaf6d114ded","name":"Acceptance Test - Client Grant - TestAccClientGrant","identifier":"https://uat.tf.terraform-provider-auth0.com/client-grant/TestAccClientGrant","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 494.230917ms - - id: 67 + duration: 199.911458ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -2425,8 +2480,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/65646b369ca89bc61b853f00 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a2a65708cdaf6d114ded method: DELETE response: proto: HTTP/2.0 @@ -2442,4 +2497,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 190.939792ms + duration: 233.77025ms diff --git a/test/data/recordings/TestAccDataSourceResourceServer.yaml b/test/data/recordings/TestAccDataSourceResourceServer.yaml index 67f14196..6a5fb8a8 100644 --- a/test/data/recordings/TestAccDataSourceResourceServer.yaml +++ b/test/data/recordings/TestAccDataSourceResourceServer.yaml @@ -6,20 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/this-resource-server-does-not-exist method: GET response: @@ -36,7 +35,7 @@ interactions: - application/json; charset=utf-8 status: 404 Not Found code: 404 - duration: 104.456792ms + duration: 224.217875ms - id: 1 request: proto: HTTP/1.1 @@ -55,7 +54,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers method: POST response: @@ -66,34 +65,34 @@ interactions: trailer: {} content_length: 365 uncompressed: false - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 102.382833ms + duration: 216.605292ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 31 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"authorization_details":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/64aea85ee1bc3eacba0afb18 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a075f78b6885dea05711 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -102,34 +101,34 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 204.768792ms + duration: 199.307958ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 26 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"token_encryption":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2FTestAccDataSourceResourceServer - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a075f78b6885dea05711 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -138,33 +137,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 219.655125ms + duration: 173.619708ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 115 + content_length: 29 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]} + {"proof_of_possession":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2FTestAccDataSourceResourceServer + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a075f78b6885dea05711 method: PATCH response: proto: HTTP/2.0 @@ -174,33 +173,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.648333ms + duration: 206.686875ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2FTestAccDataSourceResourceServer + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a075f78b6885dea05711 method: GET response: proto: HTTP/2.0 @@ -210,33 +208,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 104.717875ms + duration: 185.931208ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%252F%252Fuat.api.terraform-provider-auth0.com%252FTestAccDataSourceResourceServer + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2FTestAccDataSourceResourceServer method: GET response: proto: HTTP/2.0 @@ -246,34 +243,34 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 104.214959ms + duration: 202.005291ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 115 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%252F%252Fuat.api.terraform-provider-auth0.com%252FTestAccDataSourceResourceServer - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2FTestAccDataSourceResourceServer + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -282,33 +279,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 90.646208ms + duration: 206.748375ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/64aea85ee1bc3eacba0afb18 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2FTestAccDataSourceResourceServer method: GET response: proto: HTTP/2.0 @@ -318,33 +314,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 88.722542ms + duration: 348.434458ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2FTestAccDataSourceResourceServer + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%252F%252Fuat.api.terraform-provider-auth0.com%252FTestAccDataSourceResourceServer method: GET response: proto: HTTP/2.0 @@ -354,32 +349,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.079ms + duration: 218.010583ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%252F%252Fuat.api.terraform-provider-auth0.com%252FTestAccDataSourceResourceServer method: GET response: @@ -390,33 +384,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 85.193584ms + duration: 176.853958ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%252F%252Fuat.api.terraform-provider-auth0.com%252FTestAccDataSourceResourceServer + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a075f78b6885dea05711 method: GET response: proto: HTTP/2.0 @@ -426,33 +419,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 94.359584ms + duration: 193.424417ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/64aea85ee1bc3eacba0afb18 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2FTestAccDataSourceResourceServer method: GET response: proto: HTTP/2.0 @@ -462,33 +454,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.373708ms + duration: 196.964334ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2FTestAccDataSourceResourceServer + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%252F%252Fuat.api.terraform-provider-auth0.com%252FTestAccDataSourceResourceServer method: GET response: proto: HTTP/2.0 @@ -498,33 +489,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 88.097667ms + duration: 207.167584ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/64aea85ee1bc3eacba0afb18 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a075f78b6885dea05711 method: GET response: proto: HTTP/2.0 @@ -534,33 +524,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 101.365208ms + duration: 170.270167ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/64aea85ee1bc3eacba0afb18 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2FTestAccDataSourceResourceServer method: GET response: proto: HTTP/2.0 @@ -570,33 +559,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.648834ms + duration: 217.379583ms - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/64aea85ee1bc3eacba0afb18 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a075f78b6885dea05711 method: GET response: proto: HTTP/2.0 @@ -606,33 +594,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 90.994667ms + duration: 166.08825ms - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/64aea85ee1bc3eacba0afb18 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a075f78b6885dea05711 method: GET response: proto: HTTP/2.0 @@ -642,33 +629,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.013625ms + duration: 168.946292ms - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2FTestAccDataSourceResourceServer + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a075f78b6885dea05711 method: GET response: proto: HTTP/2.0 @@ -678,33 +664,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 102.652583ms + duration: 196.808584ms - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/64aea85ee1bc3eacba0afb18 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2FTestAccDataSourceResourceServer method: GET response: proto: HTTP/2.0 @@ -714,33 +699,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 94.779875ms + duration: 195.76175ms - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/64aea85ee1bc3eacba0afb18 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a075f78b6885dea05711 method: GET response: proto: HTTP/2.0 @@ -750,33 +734,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 95.69ms + duration: 221.510166ms - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%252F%252Fterraform-provider-auth0-dev.eu.auth0.com%252Fapi%252Fv2%252F + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2FTestAccDataSourceResourceServer method: GET response: proto: HTTP/2.0 @@ -786,33 +769,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"648ae5ed23565d920eff640d","name":"Auth0 Management API","identifier":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"description":"Read Client Grants","value":"read:client_grants"},{"description":"Create Client Grants","value":"create:client_grants"},{"description":"Delete Client Grants","value":"delete:client_grants"},{"description":"Update Client Grants","value":"update:client_grants"},{"description":"Read Users","value":"read:users"},{"description":"Update Users","value":"update:users"},{"description":"Delete Users","value":"delete:users"},{"description":"Create Users","value":"create:users"},{"description":"Read Users App Metadata","value":"read:users_app_metadata"},{"description":"Update Users App Metadata","value":"update:users_app_metadata"},{"description":"Delete Users App Metadata","value":"delete:users_app_metadata"},{"description":"Create Users App Metadata","value":"create:users_app_metadata"},{"description":"Read Custom User Blocks","value":"read:user_custom_blocks"},{"description":"Create Custom User Blocks","value":"create:user_custom_blocks"},{"description":"Delete Custom User Blocks","value":"delete:user_custom_blocks"},{"description":"Create User Tickets","value":"create:user_tickets"},{"description":"Read Clients","value":"read:clients"},{"description":"Update Clients","value":"update:clients"},{"description":"Delete Clients","value":"delete:clients"},{"description":"Create Clients","value":"create:clients"},{"description":"Read Client Keys","value":"read:client_keys"},{"description":"Update Client Keys","value":"update:client_keys"},{"description":"Delete Client Keys","value":"delete:client_keys"},{"description":"Create Client Keys","value":"create:client_keys"},{"description":"Read Connections","value":"read:connections"},{"description":"Update Connections","value":"update:connections"},{"description":"Delete Connections","value":"delete:connections"},{"description":"Create Connections","value":"create:connections"},{"description":"Read Resource Servers","value":"read:resource_servers"},{"description":"Update Resource Servers","value":"update:resource_servers"},{"description":"Delete Resource Servers","value":"delete:resource_servers"},{"description":"Create Resource Servers","value":"create:resource_servers"},{"description":"Read Device Credentials","value":"read:device_credentials"},{"description":"Update Device Credentials","value":"update:device_credentials"},{"description":"Delete Device Credentials","value":"delete:device_credentials"},{"description":"Create Device Credentials","value":"create:device_credentials"},{"description":"Read Rules","value":"read:rules"},{"description":"Update Rules","value":"update:rules"},{"description":"Delete Rules","value":"delete:rules"},{"description":"Create Rules","value":"create:rules"},{"description":"Read Rules Configs","value":"read:rules_configs"},{"description":"Update Rules Configs","value":"update:rules_configs"},{"description":"Delete Rules Configs","value":"delete:rules_configs"},{"description":"Read Hooks","value":"read:hooks"},{"description":"Update Hooks","value":"update:hooks"},{"description":"Delete Hooks","value":"delete:hooks"},{"description":"Create Hooks","value":"create:hooks"},{"description":"Read Actions","value":"read:actions"},{"description":"Update Actions","value":"update:actions"},{"description":"Delete Actions","value":"delete:actions"},{"description":"Create Actions","value":"create:actions"},{"description":"Read Email Provider","value":"read:email_provider"},{"description":"Update Email Provider","value":"update:email_provider"},{"description":"Delete Email Provider","value":"delete:email_provider"},{"description":"Create Email Provider","value":"create:email_provider"},{"description":"Blacklist Tokens","value":"blacklist:tokens"},{"description":"Read Stats","value":"read:stats"},{"description":"Read Insights","value":"read:insights"},{"description":"Read Tenant Settings","value":"read:tenant_settings"},{"description":"Update Tenant Settings","value":"update:tenant_settings"},{"description":"Read Logs","value":"read:logs"},{"description":"Read logs relating to users","value":"read:logs_users"},{"description":"Read Shields","value":"read:shields"},{"description":"Create Shields","value":"create:shields"},{"description":"Update Shields","value":"update:shields"},{"description":"Delete Shields","value":"delete:shields"},{"description":"Read Anomaly Detection Blocks","value":"read:anomaly_blocks"},{"description":"Delete Anomaly Detection Blocks","value":"delete:anomaly_blocks"},{"description":"Update Triggers","value":"update:triggers"},{"description":"Read Triggers","value":"read:triggers"},{"description":"Read User Grants","value":"read:grants"},{"description":"Delete User Grants","value":"delete:grants"},{"description":"Read Guardian factors configuration","value":"read:guardian_factors"},{"description":"Update Guardian factors","value":"update:guardian_factors"},{"description":"Read Guardian enrollments","value":"read:guardian_enrollments"},{"description":"Delete Guardian enrollments","value":"delete:guardian_enrollments"},{"description":"Create enrollment tickets for Guardian","value":"create:guardian_enrollment_tickets"},{"description":"Read Users IDP tokens","value":"read:user_idp_tokens"},{"description":"Create password checking jobs","value":"create:passwords_checking_job"},{"description":"Deletes password checking job and all its resources","value":"delete:passwords_checking_job"},{"description":"Read custom domains configurations","value":"read:custom_domains"},{"description":"Delete custom domains configurations","value":"delete:custom_domains"},{"description":"Configure new custom domains","value":"create:custom_domains"},{"description":"Update custom domain configurations","value":"update:custom_domains"},{"description":"Read email templates","value":"read:email_templates"},{"description":"Create email templates","value":"create:email_templates"},{"description":"Update email templates","value":"update:email_templates"},{"description":"Read Multifactor Authentication policies","value":"read:mfa_policies"},{"description":"Update Multifactor Authentication policies","value":"update:mfa_policies"},{"description":"Read roles","value":"read:roles"},{"description":"Create roles","value":"create:roles"},{"description":"Delete roles","value":"delete:roles"},{"description":"Update roles","value":"update:roles"},{"description":"Read prompts settings","value":"read:prompts"},{"description":"Update prompts settings","value":"update:prompts"},{"description":"Read branding settings","value":"read:branding"},{"description":"Update branding settings","value":"update:branding"},{"description":"Delete branding settings","value":"delete:branding"},{"description":"Read log_streams","value":"read:log_streams"},{"description":"Create log_streams","value":"create:log_streams"},{"description":"Delete log_streams","value":"delete:log_streams"},{"description":"Update log_streams","value":"update:log_streams"},{"description":"Create signing keys","value":"create:signing_keys"},{"description":"Read signing keys","value":"read:signing_keys"},{"description":"Update signing keys","value":"update:signing_keys"},{"description":"Read entity limits","value":"read:limits"},{"description":"Update entity limits","value":"update:limits"},{"description":"Create role members","value":"create:role_members"},{"description":"Read role members","value":"read:role_members"},{"description":"Update role members","value":"delete:role_members"},{"description":"Read entitlements","value":"read:entitlements"},{"description":"Read attack protection","value":"read:attack_protection"},{"description":"Update attack protection","value":"update:attack_protection"},{"description":"Read Organizations","value":"read:organizations"},{"description":"Update Organizations","value":"update:organizations"},{"description":"Create Organizations","value":"create:organizations"},{"description":"Delete Organizations","value":"delete:organizations"},{"description":"Create organization members","value":"create:organization_members"},{"description":"Read organization members","value":"read:organization_members"},{"description":"Delete organization members","value":"delete:organization_members"},{"description":"Create organization connections","value":"create:organization_connections"},{"description":"Read organization connections","value":"read:organization_connections"},{"description":"Update organization connections","value":"update:organization_connections"},{"description":"Delete organization connections","value":"delete:organization_connections"},{"description":"Create organization member roles","value":"create:organization_member_roles"},{"description":"Read organization member roles","value":"read:organization_member_roles"},{"description":"Delete organization member roles","value":"delete:organization_member_roles"},{"description":"Create organization invitations","value":"create:organization_invitations"},{"description":"Read organization invitations","value":"read:organization_invitations"},{"description":"Delete organization invitations","value":"delete:organization_invitations"},{"description":"Read organization summary","value":"read:organizations_summary"},{"description":"Create Actions Log Sessions","value":"create:actions_log_sessions"},{"description":"Create Authentication Methods","value":"create:authentication_methods"},{"description":"Read Authentication Methods","value":"read:authentication_methods"},{"description":"Update Authentication Methods","value":"update:authentication_methods"},{"description":"Delete Authentication Methods","value":"delete:authentication_methods"},{"value":"read:client_credentials","description":"Read Client Credentials"},{"value":"create:client_credentials","description":"Create Client Credentials"},{"value":"update:client_credentials","description":"Update Client Credentials"},{"value":"delete:client_credentials","description":"delete Client Credentials"}],"is_system":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 89.452667ms + duration: 200.0435ms - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2FTestAccDataSourceResourceServer + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%252F%252Fterraform-provider-auth0-dev.eu.auth0.com%252Fapi%252Fv2%252F method: GET response: proto: HTTP/2.0 @@ -822,33 +804,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' + body: '{"id":"630fb8508f2040fc2d041057","name":"Auth0 Management API","identifier":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"description":"Read Client Grants","value":"read:client_grants"},{"description":"Create Client Grants","value":"create:client_grants"},{"description":"Delete Client Grants","value":"delete:client_grants"},{"description":"Update Client Grants","value":"update:client_grants"},{"description":"Read Users","value":"read:users"},{"description":"Update Users","value":"update:users"},{"description":"Delete Users","value":"delete:users"},{"description":"Create Users","value":"create:users"},{"description":"Read Users App Metadata","value":"read:users_app_metadata"},{"description":"Update Users App Metadata","value":"update:users_app_metadata"},{"description":"Delete Users App Metadata","value":"delete:users_app_metadata"},{"description":"Create Users App Metadata","value":"create:users_app_metadata"},{"description":"Read Custom User Blocks","value":"read:user_custom_blocks"},{"description":"Create Custom User Blocks","value":"create:user_custom_blocks"},{"description":"Delete Custom User Blocks","value":"delete:user_custom_blocks"},{"description":"Create User Tickets","value":"create:user_tickets"},{"description":"Read Clients","value":"read:clients"},{"description":"Update Clients","value":"update:clients"},{"description":"Delete Clients","value":"delete:clients"},{"description":"Create Clients","value":"create:clients"},{"description":"Read Client Keys","value":"read:client_keys"},{"description":"Update Client Keys","value":"update:client_keys"},{"description":"Delete Client Keys","value":"delete:client_keys"},{"description":"Create Client Keys","value":"create:client_keys"},{"description":"Read Connections","value":"read:connections"},{"description":"Update Connections","value":"update:connections"},{"description":"Delete Connections","value":"delete:connections"},{"description":"Create Connections","value":"create:connections"},{"description":"Read Resource Servers","value":"read:resource_servers"},{"description":"Update Resource Servers","value":"update:resource_servers"},{"description":"Delete Resource Servers","value":"delete:resource_servers"},{"description":"Create Resource Servers","value":"create:resource_servers"},{"description":"Read Device Credentials","value":"read:device_credentials"},{"description":"Update Device Credentials","value":"update:device_credentials"},{"description":"Delete Device Credentials","value":"delete:device_credentials"},{"description":"Create Device Credentials","value":"create:device_credentials"},{"description":"Read Rules","value":"read:rules"},{"description":"Update Rules","value":"update:rules"},{"description":"Delete Rules","value":"delete:rules"},{"description":"Create Rules","value":"create:rules"},{"description":"Read Rules Configs","value":"read:rules_configs"},{"description":"Update Rules Configs","value":"update:rules_configs"},{"description":"Delete Rules Configs","value":"delete:rules_configs"},{"description":"Read Hooks","value":"read:hooks"},{"description":"Update Hooks","value":"update:hooks"},{"description":"Delete Hooks","value":"delete:hooks"},{"description":"Create Hooks","value":"create:hooks"},{"description":"Read Actions","value":"read:actions"},{"description":"Update Actions","value":"update:actions"},{"description":"Delete Actions","value":"delete:actions"},{"description":"Create Actions","value":"create:actions"},{"description":"Read Email Provider","value":"read:email_provider"},{"description":"Update Email Provider","value":"update:email_provider"},{"description":"Delete Email Provider","value":"delete:email_provider"},{"description":"Create Email Provider","value":"create:email_provider"},{"description":"Blacklist Tokens","value":"blacklist:tokens"},{"description":"Read Stats","value":"read:stats"},{"description":"Read Insights","value":"read:insights"},{"description":"Read Tenant Settings","value":"read:tenant_settings"},{"description":"Update Tenant Settings","value":"update:tenant_settings"},{"description":"Read Logs","value":"read:logs"},{"description":"Read logs relating to users","value":"read:logs_users"},{"description":"Read Shields","value":"read:shields"},{"description":"Create Shields","value":"create:shields"},{"description":"Update Shields","value":"update:shields"},{"description":"Delete Shields","value":"delete:shields"},{"description":"Read Anomaly Detection Blocks","value":"read:anomaly_blocks"},{"description":"Delete Anomaly Detection Blocks","value":"delete:anomaly_blocks"},{"description":"Update Triggers","value":"update:triggers"},{"description":"Read Triggers","value":"read:triggers"},{"description":"Read User Grants","value":"read:grants"},{"description":"Delete User Grants","value":"delete:grants"},{"description":"Read Guardian factors configuration","value":"read:guardian_factors"},{"description":"Update Guardian factors","value":"update:guardian_factors"},{"description":"Read Guardian enrollments","value":"read:guardian_enrollments"},{"description":"Delete Guardian enrollments","value":"delete:guardian_enrollments"},{"description":"Create enrollment tickets for Guardian","value":"create:guardian_enrollment_tickets"},{"description":"Read Users IDP tokens","value":"read:user_idp_tokens"},{"description":"Create password checking jobs","value":"create:passwords_checking_job"},{"description":"Deletes password checking job and all its resources","value":"delete:passwords_checking_job"},{"description":"Read custom domains configurations","value":"read:custom_domains"},{"description":"Delete custom domains configurations","value":"delete:custom_domains"},{"description":"Configure new custom domains","value":"create:custom_domains"},{"description":"Update custom domain configurations","value":"update:custom_domains"},{"description":"Read email templates","value":"read:email_templates"},{"description":"Create email templates","value":"create:email_templates"},{"description":"Update email templates","value":"update:email_templates"},{"description":"Read Multifactor Authentication policies","value":"read:mfa_policies"},{"description":"Update Multifactor Authentication policies","value":"update:mfa_policies"},{"description":"Read roles","value":"read:roles"},{"description":"Create roles","value":"create:roles"},{"description":"Delete roles","value":"delete:roles"},{"description":"Update roles","value":"update:roles"},{"description":"Read prompts settings","value":"read:prompts"},{"description":"Update prompts settings","value":"update:prompts"},{"description":"Read branding settings","value":"read:branding"},{"description":"Update branding settings","value":"update:branding"},{"description":"Delete branding settings","value":"delete:branding"},{"description":"Read log_streams","value":"read:log_streams"},{"description":"Create log_streams","value":"create:log_streams"},{"description":"Delete log_streams","value":"delete:log_streams"},{"description":"Update log_streams","value":"update:log_streams"},{"description":"Create signing keys","value":"create:signing_keys"},{"description":"Read signing keys","value":"read:signing_keys"},{"description":"Update signing keys","value":"update:signing_keys"},{"description":"Read entity limits","value":"read:limits"},{"description":"Update entity limits","value":"update:limits"},{"description":"Create role members","value":"create:role_members"},{"description":"Read role members","value":"read:role_members"},{"description":"Update role members","value":"delete:role_members"},{"description":"Read entitlements","value":"read:entitlements"},{"description":"Read attack protection","value":"read:attack_protection"},{"description":"Update attack protection","value":"update:attack_protection"},{"description":"Read organization summary","value":"read:organizations_summary"},{"description":"Create Authentication Methods","value":"create:authentication_methods"},{"description":"Read Authentication Methods","value":"read:authentication_methods"},{"description":"Update Authentication Methods","value":"update:authentication_methods"},{"description":"Delete Authentication Methods","value":"delete:authentication_methods"},{"description":"Read Organizations","value":"read:organizations"},{"description":"Update Organizations","value":"update:organizations"},{"description":"Create Organizations","value":"create:organizations"},{"description":"Delete Organizations","value":"delete:organizations"},{"description":"Create organization members","value":"create:organization_members"},{"description":"Read organization members","value":"read:organization_members"},{"description":"Delete organization members","value":"delete:organization_members"},{"description":"Create organization connections","value":"create:organization_connections"},{"description":"Read organization connections","value":"read:organization_connections"},{"description":"Update organization connections","value":"update:organization_connections"},{"description":"Delete organization connections","value":"delete:organization_connections"},{"description":"Create organization member roles","value":"create:organization_member_roles"},{"description":"Read organization member roles","value":"read:organization_member_roles"},{"description":"Delete organization member roles","value":"delete:organization_member_roles"},{"description":"Create organization invitations","value":"create:organization_invitations"},{"description":"Read organization invitations","value":"read:organization_invitations"},{"description":"Delete organization invitations","value":"delete:organization_invitations"},{"description":"Read SCIM configuration","value":"read:scim_config"},{"description":"Create SCIM configuration","value":"create:scim_config"},{"description":"Update SCIM configuration","value":"update:scim_config"},{"description":"Delete SCIM configuration","value":"delete:scim_config"},{"description":"Create SCIM token","value":"create:scim_token"},{"description":"Read SCIM token","value":"read:scim_token"},{"description":"Delete SCIM token","value":"delete:scim_token"},{"description":"Delete a Phone Notification Provider","value":"delete:phone_providers"},{"description":"Create a Phone Notification Provider","value":"create:phone_providers"},{"description":"Read a Phone Notification Provider","value":"read:phone_providers"},{"description":"Update a Phone Notification Provider","value":"update:phone_providers"},{"description":"Delete a Phone Notification Template","value":"delete:phone_templates"},{"description":"Create a Phone Notification Template","value":"create:phone_templates"},{"description":"Read a Phone Notification Template","value":"read:phone_templates"},{"description":"Update a Phone Notification Template","value":"update:phone_templates"},{"description":"Create encryption keys","value":"create:encryption_keys"},{"description":"Read encryption keys","value":"read:encryption_keys"},{"description":"Update encryption keys","value":"update:encryption_keys"},{"description":"Delete encryption keys","value":"delete:encryption_keys"},{"description":"Read Sessions","value":"read:sessions"},{"description":"Delete Sessions","value":"delete:sessions"},{"description":"Read Refresh Tokens","value":"read:refresh_tokens"},{"description":"Delete Refresh Tokens","value":"delete:refresh_tokens"},{"description":"Create Self Service Profiles","value":"create:self_service_profiles"},{"description":"Read Self Service Profiles","value":"read:self_service_profiles"},{"description":"Update Self Service Profiles","value":"update:self_service_profiles"},{"description":"Delete Self Service Profiles","value":"delete:self_service_profiles"},{"description":"Create SSO Access Tickets","value":"create:sso_access_tickets"},{"description":"Read Forms","value":"read:forms"},{"description":"Update Forms","value":"update:forms"},{"description":"Delete Forms","value":"delete:forms"},{"description":"Create Forms","value":"create:forms"},{"description":"Read Flows","value":"read:flows"},{"description":"Update Flows","value":"update:flows"},{"description":"Delete Flows","value":"delete:flows"},{"description":"Create Flows","value":"create:flows"},{"description":"Read Flows Vault items","value":"read:flows_vault"},{"description":"Read Flows Vault connections","value":"read:flows_vault_connections"},{"description":"Update Flows Vault connections","value":"update:flows_vault_connections"},{"description":"Delete Flows Vault connections","value":"delete:flows_vault_connections"},{"description":"Create Flows Vault connections","value":"create:flows_vault_connections"},{"description":"Read Flows Executions","value":"read:flows_executions"},{"description":"Delete Flows Executions","value":"delete:flows_executions"},{"description":"Read Connections Options","value":"read:connections_options"},{"description":"Update Connections Options","value":"update:connections_options"},{"value":"read:client_credentials","description":"Read Client Credentials"},{"value":"create:client_credentials","description":"Create Client Credentials"},{"value":"update:client_credentials","description":"Update Client Credentials"},{"value":"delete:client_credentials","description":"delete Client Credentials"}],"is_system":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.134458ms + duration: 202.801833ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/64aea85ee1bc3eacba0afb18 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a075f78b6885dea05711 method: GET response: proto: HTTP/2.0 @@ -858,50 +839,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[{"value":"create:bar","description":"Create bars"},{"value":"create:foo","description":"Create foos"}],"enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.163417ms + duration: 165.313417ms - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%252F%252Fterraform-provider-auth0-dev.eu.auth0.com%252Fapi%252Fv2%252F - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"648ae5ed23565d920eff640d","name":"Auth0 Management API","identifier":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"description":"Read Client Grants","value":"read:client_grants"},{"description":"Create Client Grants","value":"create:client_grants"},{"description":"Delete Client Grants","value":"delete:client_grants"},{"description":"Update Client Grants","value":"update:client_grants"},{"description":"Read Users","value":"read:users"},{"description":"Update Users","value":"update:users"},{"description":"Delete Users","value":"delete:users"},{"description":"Create Users","value":"create:users"},{"description":"Read Users App Metadata","value":"read:users_app_metadata"},{"description":"Update Users App Metadata","value":"update:users_app_metadata"},{"description":"Delete Users App Metadata","value":"delete:users_app_metadata"},{"description":"Create Users App Metadata","value":"create:users_app_metadata"},{"description":"Read Custom User Blocks","value":"read:user_custom_blocks"},{"description":"Create Custom User Blocks","value":"create:user_custom_blocks"},{"description":"Delete Custom User Blocks","value":"delete:user_custom_blocks"},{"description":"Create User Tickets","value":"create:user_tickets"},{"description":"Read Clients","value":"read:clients"},{"description":"Update Clients","value":"update:clients"},{"description":"Delete Clients","value":"delete:clients"},{"description":"Create Clients","value":"create:clients"},{"description":"Read Client Keys","value":"read:client_keys"},{"description":"Update Client Keys","value":"update:client_keys"},{"description":"Delete Client Keys","value":"delete:client_keys"},{"description":"Create Client Keys","value":"create:client_keys"},{"description":"Read Connections","value":"read:connections"},{"description":"Update Connections","value":"update:connections"},{"description":"Delete Connections","value":"delete:connections"},{"description":"Create Connections","value":"create:connections"},{"description":"Read Resource Servers","value":"read:resource_servers"},{"description":"Update Resource Servers","value":"update:resource_servers"},{"description":"Delete Resource Servers","value":"delete:resource_servers"},{"description":"Create Resource Servers","value":"create:resource_servers"},{"description":"Read Device Credentials","value":"read:device_credentials"},{"description":"Update Device Credentials","value":"update:device_credentials"},{"description":"Delete Device Credentials","value":"delete:device_credentials"},{"description":"Create Device Credentials","value":"create:device_credentials"},{"description":"Read Rules","value":"read:rules"},{"description":"Update Rules","value":"update:rules"},{"description":"Delete Rules","value":"delete:rules"},{"description":"Create Rules","value":"create:rules"},{"description":"Read Rules Configs","value":"read:rules_configs"},{"description":"Update Rules Configs","value":"update:rules_configs"},{"description":"Delete Rules Configs","value":"delete:rules_configs"},{"description":"Read Hooks","value":"read:hooks"},{"description":"Update Hooks","value":"update:hooks"},{"description":"Delete Hooks","value":"delete:hooks"},{"description":"Create Hooks","value":"create:hooks"},{"description":"Read Actions","value":"read:actions"},{"description":"Update Actions","value":"update:actions"},{"description":"Delete Actions","value":"delete:actions"},{"description":"Create Actions","value":"create:actions"},{"description":"Read Email Provider","value":"read:email_provider"},{"description":"Update Email Provider","value":"update:email_provider"},{"description":"Delete Email Provider","value":"delete:email_provider"},{"description":"Create Email Provider","value":"create:email_provider"},{"description":"Blacklist Tokens","value":"blacklist:tokens"},{"description":"Read Stats","value":"read:stats"},{"description":"Read Insights","value":"read:insights"},{"description":"Read Tenant Settings","value":"read:tenant_settings"},{"description":"Update Tenant Settings","value":"update:tenant_settings"},{"description":"Read Logs","value":"read:logs"},{"description":"Read logs relating to users","value":"read:logs_users"},{"description":"Read Shields","value":"read:shields"},{"description":"Create Shields","value":"create:shields"},{"description":"Update Shields","value":"update:shields"},{"description":"Delete Shields","value":"delete:shields"},{"description":"Read Anomaly Detection Blocks","value":"read:anomaly_blocks"},{"description":"Delete Anomaly Detection Blocks","value":"delete:anomaly_blocks"},{"description":"Update Triggers","value":"update:triggers"},{"description":"Read Triggers","value":"read:triggers"},{"description":"Read User Grants","value":"read:grants"},{"description":"Delete User Grants","value":"delete:grants"},{"description":"Read Guardian factors configuration","value":"read:guardian_factors"},{"description":"Update Guardian factors","value":"update:guardian_factors"},{"description":"Read Guardian enrollments","value":"read:guardian_enrollments"},{"description":"Delete Guardian enrollments","value":"delete:guardian_enrollments"},{"description":"Create enrollment tickets for Guardian","value":"create:guardian_enrollment_tickets"},{"description":"Read Users IDP tokens","value":"read:user_idp_tokens"},{"description":"Create password checking jobs","value":"create:passwords_checking_job"},{"description":"Deletes password checking job and all its resources","value":"delete:passwords_checking_job"},{"description":"Read custom domains configurations","value":"read:custom_domains"},{"description":"Delete custom domains configurations","value":"delete:custom_domains"},{"description":"Configure new custom domains","value":"create:custom_domains"},{"description":"Update custom domain configurations","value":"update:custom_domains"},{"description":"Read email templates","value":"read:email_templates"},{"description":"Create email templates","value":"create:email_templates"},{"description":"Update email templates","value":"update:email_templates"},{"description":"Read Multifactor Authentication policies","value":"read:mfa_policies"},{"description":"Update Multifactor Authentication policies","value":"update:mfa_policies"},{"description":"Read roles","value":"read:roles"},{"description":"Create roles","value":"create:roles"},{"description":"Delete roles","value":"delete:roles"},{"description":"Update roles","value":"update:roles"},{"description":"Read prompts settings","value":"read:prompts"},{"description":"Update prompts settings","value":"update:prompts"},{"description":"Read branding settings","value":"read:branding"},{"description":"Update branding settings","value":"update:branding"},{"description":"Delete branding settings","value":"delete:branding"},{"description":"Read log_streams","value":"read:log_streams"},{"description":"Create log_streams","value":"create:log_streams"},{"description":"Delete log_streams","value":"delete:log_streams"},{"description":"Update log_streams","value":"update:log_streams"},{"description":"Create signing keys","value":"create:signing_keys"},{"description":"Read signing keys","value":"read:signing_keys"},{"description":"Update signing keys","value":"update:signing_keys"},{"description":"Read entity limits","value":"read:limits"},{"description":"Update entity limits","value":"update:limits"},{"description":"Create role members","value":"create:role_members"},{"description":"Read role members","value":"read:role_members"},{"description":"Update role members","value":"delete:role_members"},{"description":"Read entitlements","value":"read:entitlements"},{"description":"Read attack protection","value":"read:attack_protection"},{"description":"Update attack protection","value":"update:attack_protection"},{"description":"Read Organizations","value":"read:organizations"},{"description":"Update Organizations","value":"update:organizations"},{"description":"Create Organizations","value":"create:organizations"},{"description":"Delete Organizations","value":"delete:organizations"},{"description":"Create organization members","value":"create:organization_members"},{"description":"Read organization members","value":"read:organization_members"},{"description":"Delete organization members","value":"delete:organization_members"},{"description":"Create organization connections","value":"create:organization_connections"},{"description":"Read organization connections","value":"read:organization_connections"},{"description":"Update organization connections","value":"update:organization_connections"},{"description":"Delete organization connections","value":"delete:organization_connections"},{"description":"Create organization member roles","value":"create:organization_member_roles"},{"description":"Read organization member roles","value":"read:organization_member_roles"},{"description":"Delete organization member roles","value":"delete:organization_member_roles"},{"description":"Create organization invitations","value":"create:organization_invitations"},{"description":"Read organization invitations","value":"read:organization_invitations"},{"description":"Delete organization invitations","value":"delete:organization_invitations"},{"description":"Read organization summary","value":"read:organizations_summary"},{"description":"Create Actions Log Sessions","value":"create:actions_log_sessions"},{"description":"Create Authentication Methods","value":"create:authentication_methods"},{"description":"Read Authentication Methods","value":"read:authentication_methods"},{"description":"Update Authentication Methods","value":"update:authentication_methods"},{"description":"Delete Authentication Methods","value":"delete:authentication_methods"},{"value":"read:client_credentials","description":"Read Client Credentials"},{"value":"create:client_credentials","description":"Create Client Credentials"},{"value":"update:client_credentials","description":"Update Client Credentials"},{"value":"delete:client_credentials","description":"delete Client Credentials"}],"is_system":true}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 106.462041ms - - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -919,7 +864,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2FTestAccDataSourceResourceServer method: PATCH response: @@ -930,14 +875,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64aea85ee1bc3eacba0afb18","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[],"enforce_policies":true}' + body: '{"id":"66e0a075f78b6885dea05711","name":"Acceptance Test - TestAccDataSourceResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccDataSourceResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","scopes":[],"enforce_policies":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 165.017125ms - - id: 26 + duration: 228.940041ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -954,8 +899,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/64aea85ee1bc3eacba0afb18 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a075f78b6885dea05711 method: DELETE response: proto: HTTP/2.0 @@ -971,62 +916,25 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 183.708375ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%252F%252Fterraform-provider-auth0-dev.eu.auth0.com%252Fapi%252Fv2%252F - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"648ae5ed23565d920eff640d","name":"Auth0 Management API","identifier":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"description":"Read Client Grants","value":"read:client_grants"},{"description":"Create Client Grants","value":"create:client_grants"},{"description":"Delete Client Grants","value":"delete:client_grants"},{"description":"Update Client Grants","value":"update:client_grants"},{"description":"Read Users","value":"read:users"},{"description":"Update Users","value":"update:users"},{"description":"Delete Users","value":"delete:users"},{"description":"Create Users","value":"create:users"},{"description":"Read Users App Metadata","value":"read:users_app_metadata"},{"description":"Update Users App Metadata","value":"update:users_app_metadata"},{"description":"Delete Users App Metadata","value":"delete:users_app_metadata"},{"description":"Create Users App Metadata","value":"create:users_app_metadata"},{"description":"Read Custom User Blocks","value":"read:user_custom_blocks"},{"description":"Create Custom User Blocks","value":"create:user_custom_blocks"},{"description":"Delete Custom User Blocks","value":"delete:user_custom_blocks"},{"description":"Create User Tickets","value":"create:user_tickets"},{"description":"Read Clients","value":"read:clients"},{"description":"Update Clients","value":"update:clients"},{"description":"Delete Clients","value":"delete:clients"},{"description":"Create Clients","value":"create:clients"},{"description":"Read Client Keys","value":"read:client_keys"},{"description":"Update Client Keys","value":"update:client_keys"},{"description":"Delete Client Keys","value":"delete:client_keys"},{"description":"Create Client Keys","value":"create:client_keys"},{"description":"Read Connections","value":"read:connections"},{"description":"Update Connections","value":"update:connections"},{"description":"Delete Connections","value":"delete:connections"},{"description":"Create Connections","value":"create:connections"},{"description":"Read Resource Servers","value":"read:resource_servers"},{"description":"Update Resource Servers","value":"update:resource_servers"},{"description":"Delete Resource Servers","value":"delete:resource_servers"},{"description":"Create Resource Servers","value":"create:resource_servers"},{"description":"Read Device Credentials","value":"read:device_credentials"},{"description":"Update Device Credentials","value":"update:device_credentials"},{"description":"Delete Device Credentials","value":"delete:device_credentials"},{"description":"Create Device Credentials","value":"create:device_credentials"},{"description":"Read Rules","value":"read:rules"},{"description":"Update Rules","value":"update:rules"},{"description":"Delete Rules","value":"delete:rules"},{"description":"Create Rules","value":"create:rules"},{"description":"Read Rules Configs","value":"read:rules_configs"},{"description":"Update Rules Configs","value":"update:rules_configs"},{"description":"Delete Rules Configs","value":"delete:rules_configs"},{"description":"Read Hooks","value":"read:hooks"},{"description":"Update Hooks","value":"update:hooks"},{"description":"Delete Hooks","value":"delete:hooks"},{"description":"Create Hooks","value":"create:hooks"},{"description":"Read Actions","value":"read:actions"},{"description":"Update Actions","value":"update:actions"},{"description":"Delete Actions","value":"delete:actions"},{"description":"Create Actions","value":"create:actions"},{"description":"Read Email Provider","value":"read:email_provider"},{"description":"Update Email Provider","value":"update:email_provider"},{"description":"Delete Email Provider","value":"delete:email_provider"},{"description":"Create Email Provider","value":"create:email_provider"},{"description":"Blacklist Tokens","value":"blacklist:tokens"},{"description":"Read Stats","value":"read:stats"},{"description":"Read Insights","value":"read:insights"},{"description":"Read Tenant Settings","value":"read:tenant_settings"},{"description":"Update Tenant Settings","value":"update:tenant_settings"},{"description":"Read Logs","value":"read:logs"},{"description":"Read logs relating to users","value":"read:logs_users"},{"description":"Read Shields","value":"read:shields"},{"description":"Create Shields","value":"create:shields"},{"description":"Update Shields","value":"update:shields"},{"description":"Delete Shields","value":"delete:shields"},{"description":"Read Anomaly Detection Blocks","value":"read:anomaly_blocks"},{"description":"Delete Anomaly Detection Blocks","value":"delete:anomaly_blocks"},{"description":"Update Triggers","value":"update:triggers"},{"description":"Read Triggers","value":"read:triggers"},{"description":"Read User Grants","value":"read:grants"},{"description":"Delete User Grants","value":"delete:grants"},{"description":"Read Guardian factors configuration","value":"read:guardian_factors"},{"description":"Update Guardian factors","value":"update:guardian_factors"},{"description":"Read Guardian enrollments","value":"read:guardian_enrollments"},{"description":"Delete Guardian enrollments","value":"delete:guardian_enrollments"},{"description":"Create enrollment tickets for Guardian","value":"create:guardian_enrollment_tickets"},{"description":"Read Users IDP tokens","value":"read:user_idp_tokens"},{"description":"Create password checking jobs","value":"create:passwords_checking_job"},{"description":"Deletes password checking job and all its resources","value":"delete:passwords_checking_job"},{"description":"Read custom domains configurations","value":"read:custom_domains"},{"description":"Delete custom domains configurations","value":"delete:custom_domains"},{"description":"Configure new custom domains","value":"create:custom_domains"},{"description":"Update custom domain configurations","value":"update:custom_domains"},{"description":"Read email templates","value":"read:email_templates"},{"description":"Create email templates","value":"create:email_templates"},{"description":"Update email templates","value":"update:email_templates"},{"description":"Read Multifactor Authentication policies","value":"read:mfa_policies"},{"description":"Update Multifactor Authentication policies","value":"update:mfa_policies"},{"description":"Read roles","value":"read:roles"},{"description":"Create roles","value":"create:roles"},{"description":"Delete roles","value":"delete:roles"},{"description":"Update roles","value":"update:roles"},{"description":"Read prompts settings","value":"read:prompts"},{"description":"Update prompts settings","value":"update:prompts"},{"description":"Read branding settings","value":"read:branding"},{"description":"Update branding settings","value":"update:branding"},{"description":"Delete branding settings","value":"delete:branding"},{"description":"Read log_streams","value":"read:log_streams"},{"description":"Create log_streams","value":"create:log_streams"},{"description":"Delete log_streams","value":"delete:log_streams"},{"description":"Update log_streams","value":"update:log_streams"},{"description":"Create signing keys","value":"create:signing_keys"},{"description":"Read signing keys","value":"read:signing_keys"},{"description":"Update signing keys","value":"update:signing_keys"},{"description":"Read entity limits","value":"read:limits"},{"description":"Update entity limits","value":"update:limits"},{"description":"Create role members","value":"create:role_members"},{"description":"Read role members","value":"read:role_members"},{"description":"Update role members","value":"delete:role_members"},{"description":"Read entitlements","value":"read:entitlements"},{"description":"Read attack protection","value":"read:attack_protection"},{"description":"Update attack protection","value":"update:attack_protection"},{"description":"Read Organizations","value":"read:organizations"},{"description":"Update Organizations","value":"update:organizations"},{"description":"Create Organizations","value":"create:organizations"},{"description":"Delete Organizations","value":"delete:organizations"},{"description":"Create organization members","value":"create:organization_members"},{"description":"Read organization members","value":"read:organization_members"},{"description":"Delete organization members","value":"delete:organization_members"},{"description":"Create organization connections","value":"create:organization_connections"},{"description":"Read organization connections","value":"read:organization_connections"},{"description":"Update organization connections","value":"update:organization_connections"},{"description":"Delete organization connections","value":"delete:organization_connections"},{"description":"Create organization member roles","value":"create:organization_member_roles"},{"description":"Read organization member roles","value":"read:organization_member_roles"},{"description":"Delete organization member roles","value":"delete:organization_member_roles"},{"description":"Create organization invitations","value":"create:organization_invitations"},{"description":"Read organization invitations","value":"read:organization_invitations"},{"description":"Delete organization invitations","value":"delete:organization_invitations"},{"description":"Read organization summary","value":"read:organizations_summary"},{"description":"Create Actions Log Sessions","value":"create:actions_log_sessions"},{"description":"Create Authentication Methods","value":"create:authentication_methods"},{"description":"Read Authentication Methods","value":"read:authentication_methods"},{"description":"Update Authentication Methods","value":"update:authentication_methods"},{"description":"Delete Authentication Methods","value":"delete:authentication_methods"},{"value":"read:client_credentials","description":"Read Client Credentials"},{"value":"create:client_credentials","description":"Create Client Credentials"},{"value":"update:client_credentials","description":"Update Client Credentials"},{"value":"delete:client_credentials","description":"delete Client Credentials"}],"is_system":true}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 97.700875ms - - id: 28 + duration: 217.113084ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%252F%252Fterraform-provider-auth0-dev.eu.auth0.com%252Fapi%252Fv2%252F method: GET response: @@ -1037,32 +945,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"648ae5ed23565d920eff640d","name":"Auth0 Management API","identifier":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"description":"Read Client Grants","value":"read:client_grants"},{"description":"Create Client Grants","value":"create:client_grants"},{"description":"Delete Client Grants","value":"delete:client_grants"},{"description":"Update Client Grants","value":"update:client_grants"},{"description":"Read Users","value":"read:users"},{"description":"Update Users","value":"update:users"},{"description":"Delete Users","value":"delete:users"},{"description":"Create Users","value":"create:users"},{"description":"Read Users App Metadata","value":"read:users_app_metadata"},{"description":"Update Users App Metadata","value":"update:users_app_metadata"},{"description":"Delete Users App Metadata","value":"delete:users_app_metadata"},{"description":"Create Users App Metadata","value":"create:users_app_metadata"},{"description":"Read Custom User Blocks","value":"read:user_custom_blocks"},{"description":"Create Custom User Blocks","value":"create:user_custom_blocks"},{"description":"Delete Custom User Blocks","value":"delete:user_custom_blocks"},{"description":"Create User Tickets","value":"create:user_tickets"},{"description":"Read Clients","value":"read:clients"},{"description":"Update Clients","value":"update:clients"},{"description":"Delete Clients","value":"delete:clients"},{"description":"Create Clients","value":"create:clients"},{"description":"Read Client Keys","value":"read:client_keys"},{"description":"Update Client Keys","value":"update:client_keys"},{"description":"Delete Client Keys","value":"delete:client_keys"},{"description":"Create Client Keys","value":"create:client_keys"},{"description":"Read Connections","value":"read:connections"},{"description":"Update Connections","value":"update:connections"},{"description":"Delete Connections","value":"delete:connections"},{"description":"Create Connections","value":"create:connections"},{"description":"Read Resource Servers","value":"read:resource_servers"},{"description":"Update Resource Servers","value":"update:resource_servers"},{"description":"Delete Resource Servers","value":"delete:resource_servers"},{"description":"Create Resource Servers","value":"create:resource_servers"},{"description":"Read Device Credentials","value":"read:device_credentials"},{"description":"Update Device Credentials","value":"update:device_credentials"},{"description":"Delete Device Credentials","value":"delete:device_credentials"},{"description":"Create Device Credentials","value":"create:device_credentials"},{"description":"Read Rules","value":"read:rules"},{"description":"Update Rules","value":"update:rules"},{"description":"Delete Rules","value":"delete:rules"},{"description":"Create Rules","value":"create:rules"},{"description":"Read Rules Configs","value":"read:rules_configs"},{"description":"Update Rules Configs","value":"update:rules_configs"},{"description":"Delete Rules Configs","value":"delete:rules_configs"},{"description":"Read Hooks","value":"read:hooks"},{"description":"Update Hooks","value":"update:hooks"},{"description":"Delete Hooks","value":"delete:hooks"},{"description":"Create Hooks","value":"create:hooks"},{"description":"Read Actions","value":"read:actions"},{"description":"Update Actions","value":"update:actions"},{"description":"Delete Actions","value":"delete:actions"},{"description":"Create Actions","value":"create:actions"},{"description":"Read Email Provider","value":"read:email_provider"},{"description":"Update Email Provider","value":"update:email_provider"},{"description":"Delete Email Provider","value":"delete:email_provider"},{"description":"Create Email Provider","value":"create:email_provider"},{"description":"Blacklist Tokens","value":"blacklist:tokens"},{"description":"Read Stats","value":"read:stats"},{"description":"Read Insights","value":"read:insights"},{"description":"Read Tenant Settings","value":"read:tenant_settings"},{"description":"Update Tenant Settings","value":"update:tenant_settings"},{"description":"Read Logs","value":"read:logs"},{"description":"Read logs relating to users","value":"read:logs_users"},{"description":"Read Shields","value":"read:shields"},{"description":"Create Shields","value":"create:shields"},{"description":"Update Shields","value":"update:shields"},{"description":"Delete Shields","value":"delete:shields"},{"description":"Read Anomaly Detection Blocks","value":"read:anomaly_blocks"},{"description":"Delete Anomaly Detection Blocks","value":"delete:anomaly_blocks"},{"description":"Update Triggers","value":"update:triggers"},{"description":"Read Triggers","value":"read:triggers"},{"description":"Read User Grants","value":"read:grants"},{"description":"Delete User Grants","value":"delete:grants"},{"description":"Read Guardian factors configuration","value":"read:guardian_factors"},{"description":"Update Guardian factors","value":"update:guardian_factors"},{"description":"Read Guardian enrollments","value":"read:guardian_enrollments"},{"description":"Delete Guardian enrollments","value":"delete:guardian_enrollments"},{"description":"Create enrollment tickets for Guardian","value":"create:guardian_enrollment_tickets"},{"description":"Read Users IDP tokens","value":"read:user_idp_tokens"},{"description":"Create password checking jobs","value":"create:passwords_checking_job"},{"description":"Deletes password checking job and all its resources","value":"delete:passwords_checking_job"},{"description":"Read custom domains configurations","value":"read:custom_domains"},{"description":"Delete custom domains configurations","value":"delete:custom_domains"},{"description":"Configure new custom domains","value":"create:custom_domains"},{"description":"Update custom domain configurations","value":"update:custom_domains"},{"description":"Read email templates","value":"read:email_templates"},{"description":"Create email templates","value":"create:email_templates"},{"description":"Update email templates","value":"update:email_templates"},{"description":"Read Multifactor Authentication policies","value":"read:mfa_policies"},{"description":"Update Multifactor Authentication policies","value":"update:mfa_policies"},{"description":"Read roles","value":"read:roles"},{"description":"Create roles","value":"create:roles"},{"description":"Delete roles","value":"delete:roles"},{"description":"Update roles","value":"update:roles"},{"description":"Read prompts settings","value":"read:prompts"},{"description":"Update prompts settings","value":"update:prompts"},{"description":"Read branding settings","value":"read:branding"},{"description":"Update branding settings","value":"update:branding"},{"description":"Delete branding settings","value":"delete:branding"},{"description":"Read log_streams","value":"read:log_streams"},{"description":"Create log_streams","value":"create:log_streams"},{"description":"Delete log_streams","value":"delete:log_streams"},{"description":"Update log_streams","value":"update:log_streams"},{"description":"Create signing keys","value":"create:signing_keys"},{"description":"Read signing keys","value":"read:signing_keys"},{"description":"Update signing keys","value":"update:signing_keys"},{"description":"Read entity limits","value":"read:limits"},{"description":"Update entity limits","value":"update:limits"},{"description":"Create role members","value":"create:role_members"},{"description":"Read role members","value":"read:role_members"},{"description":"Update role members","value":"delete:role_members"},{"description":"Read entitlements","value":"read:entitlements"},{"description":"Read attack protection","value":"read:attack_protection"},{"description":"Update attack protection","value":"update:attack_protection"},{"description":"Read Organizations","value":"read:organizations"},{"description":"Update Organizations","value":"update:organizations"},{"description":"Create Organizations","value":"create:organizations"},{"description":"Delete Organizations","value":"delete:organizations"},{"description":"Create organization members","value":"create:organization_members"},{"description":"Read organization members","value":"read:organization_members"},{"description":"Delete organization members","value":"delete:organization_members"},{"description":"Create organization connections","value":"create:organization_connections"},{"description":"Read organization connections","value":"read:organization_connections"},{"description":"Update organization connections","value":"update:organization_connections"},{"description":"Delete organization connections","value":"delete:organization_connections"},{"description":"Create organization member roles","value":"create:organization_member_roles"},{"description":"Read organization member roles","value":"read:organization_member_roles"},{"description":"Delete organization member roles","value":"delete:organization_member_roles"},{"description":"Create organization invitations","value":"create:organization_invitations"},{"description":"Read organization invitations","value":"read:organization_invitations"},{"description":"Delete organization invitations","value":"delete:organization_invitations"},{"description":"Read organization summary","value":"read:organizations_summary"},{"description":"Create Actions Log Sessions","value":"create:actions_log_sessions"},{"description":"Create Authentication Methods","value":"create:authentication_methods"},{"description":"Read Authentication Methods","value":"read:authentication_methods"},{"description":"Update Authentication Methods","value":"update:authentication_methods"},{"description":"Delete Authentication Methods","value":"delete:authentication_methods"},{"value":"read:client_credentials","description":"Read Client Credentials"},{"value":"create:client_credentials","description":"Create Client Credentials"},{"value":"update:client_credentials","description":"Update Client Credentials"},{"value":"delete:client_credentials","description":"delete Client Credentials"}],"is_system":true}' + body: '{"id":"630fb8508f2040fc2d041057","name":"Auth0 Management API","identifier":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"description":"Read Client Grants","value":"read:client_grants"},{"description":"Create Client Grants","value":"create:client_grants"},{"description":"Delete Client Grants","value":"delete:client_grants"},{"description":"Update Client Grants","value":"update:client_grants"},{"description":"Read Users","value":"read:users"},{"description":"Update Users","value":"update:users"},{"description":"Delete Users","value":"delete:users"},{"description":"Create Users","value":"create:users"},{"description":"Read Users App Metadata","value":"read:users_app_metadata"},{"description":"Update Users App Metadata","value":"update:users_app_metadata"},{"description":"Delete Users App Metadata","value":"delete:users_app_metadata"},{"description":"Create Users App Metadata","value":"create:users_app_metadata"},{"description":"Read Custom User Blocks","value":"read:user_custom_blocks"},{"description":"Create Custom User Blocks","value":"create:user_custom_blocks"},{"description":"Delete Custom User Blocks","value":"delete:user_custom_blocks"},{"description":"Create User Tickets","value":"create:user_tickets"},{"description":"Read Clients","value":"read:clients"},{"description":"Update Clients","value":"update:clients"},{"description":"Delete Clients","value":"delete:clients"},{"description":"Create Clients","value":"create:clients"},{"description":"Read Client Keys","value":"read:client_keys"},{"description":"Update Client Keys","value":"update:client_keys"},{"description":"Delete Client Keys","value":"delete:client_keys"},{"description":"Create Client Keys","value":"create:client_keys"},{"description":"Read Connections","value":"read:connections"},{"description":"Update Connections","value":"update:connections"},{"description":"Delete Connections","value":"delete:connections"},{"description":"Create Connections","value":"create:connections"},{"description":"Read Resource Servers","value":"read:resource_servers"},{"description":"Update Resource Servers","value":"update:resource_servers"},{"description":"Delete Resource Servers","value":"delete:resource_servers"},{"description":"Create Resource Servers","value":"create:resource_servers"},{"description":"Read Device Credentials","value":"read:device_credentials"},{"description":"Update Device Credentials","value":"update:device_credentials"},{"description":"Delete Device Credentials","value":"delete:device_credentials"},{"description":"Create Device Credentials","value":"create:device_credentials"},{"description":"Read Rules","value":"read:rules"},{"description":"Update Rules","value":"update:rules"},{"description":"Delete Rules","value":"delete:rules"},{"description":"Create Rules","value":"create:rules"},{"description":"Read Rules Configs","value":"read:rules_configs"},{"description":"Update Rules Configs","value":"update:rules_configs"},{"description":"Delete Rules Configs","value":"delete:rules_configs"},{"description":"Read Hooks","value":"read:hooks"},{"description":"Update Hooks","value":"update:hooks"},{"description":"Delete Hooks","value":"delete:hooks"},{"description":"Create Hooks","value":"create:hooks"},{"description":"Read Actions","value":"read:actions"},{"description":"Update Actions","value":"update:actions"},{"description":"Delete Actions","value":"delete:actions"},{"description":"Create Actions","value":"create:actions"},{"description":"Read Email Provider","value":"read:email_provider"},{"description":"Update Email Provider","value":"update:email_provider"},{"description":"Delete Email Provider","value":"delete:email_provider"},{"description":"Create Email Provider","value":"create:email_provider"},{"description":"Blacklist Tokens","value":"blacklist:tokens"},{"description":"Read Stats","value":"read:stats"},{"description":"Read Insights","value":"read:insights"},{"description":"Read Tenant Settings","value":"read:tenant_settings"},{"description":"Update Tenant Settings","value":"update:tenant_settings"},{"description":"Read Logs","value":"read:logs"},{"description":"Read logs relating to users","value":"read:logs_users"},{"description":"Read Shields","value":"read:shields"},{"description":"Create Shields","value":"create:shields"},{"description":"Update Shields","value":"update:shields"},{"description":"Delete Shields","value":"delete:shields"},{"description":"Read Anomaly Detection Blocks","value":"read:anomaly_blocks"},{"description":"Delete Anomaly Detection Blocks","value":"delete:anomaly_blocks"},{"description":"Update Triggers","value":"update:triggers"},{"description":"Read Triggers","value":"read:triggers"},{"description":"Read User Grants","value":"read:grants"},{"description":"Delete User Grants","value":"delete:grants"},{"description":"Read Guardian factors configuration","value":"read:guardian_factors"},{"description":"Update Guardian factors","value":"update:guardian_factors"},{"description":"Read Guardian enrollments","value":"read:guardian_enrollments"},{"description":"Delete Guardian enrollments","value":"delete:guardian_enrollments"},{"description":"Create enrollment tickets for Guardian","value":"create:guardian_enrollment_tickets"},{"description":"Read Users IDP tokens","value":"read:user_idp_tokens"},{"description":"Create password checking jobs","value":"create:passwords_checking_job"},{"description":"Deletes password checking job and all its resources","value":"delete:passwords_checking_job"},{"description":"Read custom domains configurations","value":"read:custom_domains"},{"description":"Delete custom domains configurations","value":"delete:custom_domains"},{"description":"Configure new custom domains","value":"create:custom_domains"},{"description":"Update custom domain configurations","value":"update:custom_domains"},{"description":"Read email templates","value":"read:email_templates"},{"description":"Create email templates","value":"create:email_templates"},{"description":"Update email templates","value":"update:email_templates"},{"description":"Read Multifactor Authentication policies","value":"read:mfa_policies"},{"description":"Update Multifactor Authentication policies","value":"update:mfa_policies"},{"description":"Read roles","value":"read:roles"},{"description":"Create roles","value":"create:roles"},{"description":"Delete roles","value":"delete:roles"},{"description":"Update roles","value":"update:roles"},{"description":"Read prompts settings","value":"read:prompts"},{"description":"Update prompts settings","value":"update:prompts"},{"description":"Read branding settings","value":"read:branding"},{"description":"Update branding settings","value":"update:branding"},{"description":"Delete branding settings","value":"delete:branding"},{"description":"Read log_streams","value":"read:log_streams"},{"description":"Create log_streams","value":"create:log_streams"},{"description":"Delete log_streams","value":"delete:log_streams"},{"description":"Update log_streams","value":"update:log_streams"},{"description":"Create signing keys","value":"create:signing_keys"},{"description":"Read signing keys","value":"read:signing_keys"},{"description":"Update signing keys","value":"update:signing_keys"},{"description":"Read entity limits","value":"read:limits"},{"description":"Update entity limits","value":"update:limits"},{"description":"Create role members","value":"create:role_members"},{"description":"Read role members","value":"read:role_members"},{"description":"Update role members","value":"delete:role_members"},{"description":"Read entitlements","value":"read:entitlements"},{"description":"Read attack protection","value":"read:attack_protection"},{"description":"Update attack protection","value":"update:attack_protection"},{"description":"Read organization summary","value":"read:organizations_summary"},{"description":"Create Authentication Methods","value":"create:authentication_methods"},{"description":"Read Authentication Methods","value":"read:authentication_methods"},{"description":"Update Authentication Methods","value":"update:authentication_methods"},{"description":"Delete Authentication Methods","value":"delete:authentication_methods"},{"description":"Read Organizations","value":"read:organizations"},{"description":"Update Organizations","value":"update:organizations"},{"description":"Create Organizations","value":"create:organizations"},{"description":"Delete Organizations","value":"delete:organizations"},{"description":"Create organization members","value":"create:organization_members"},{"description":"Read organization members","value":"read:organization_members"},{"description":"Delete organization members","value":"delete:organization_members"},{"description":"Create organization connections","value":"create:organization_connections"},{"description":"Read organization connections","value":"read:organization_connections"},{"description":"Update organization connections","value":"update:organization_connections"},{"description":"Delete organization connections","value":"delete:organization_connections"},{"description":"Create organization member roles","value":"create:organization_member_roles"},{"description":"Read organization member roles","value":"read:organization_member_roles"},{"description":"Delete organization member roles","value":"delete:organization_member_roles"},{"description":"Create organization invitations","value":"create:organization_invitations"},{"description":"Read organization invitations","value":"read:organization_invitations"},{"description":"Delete organization invitations","value":"delete:organization_invitations"},{"description":"Read SCIM configuration","value":"read:scim_config"},{"description":"Create SCIM configuration","value":"create:scim_config"},{"description":"Update SCIM configuration","value":"update:scim_config"},{"description":"Delete SCIM configuration","value":"delete:scim_config"},{"description":"Create SCIM token","value":"create:scim_token"},{"description":"Read SCIM token","value":"read:scim_token"},{"description":"Delete SCIM token","value":"delete:scim_token"},{"description":"Delete a Phone Notification Provider","value":"delete:phone_providers"},{"description":"Create a Phone Notification Provider","value":"create:phone_providers"},{"description":"Read a Phone Notification Provider","value":"read:phone_providers"},{"description":"Update a Phone Notification Provider","value":"update:phone_providers"},{"description":"Delete a Phone Notification Template","value":"delete:phone_templates"},{"description":"Create a Phone Notification Template","value":"create:phone_templates"},{"description":"Read a Phone Notification Template","value":"read:phone_templates"},{"description":"Update a Phone Notification Template","value":"update:phone_templates"},{"description":"Create encryption keys","value":"create:encryption_keys"},{"description":"Read encryption keys","value":"read:encryption_keys"},{"description":"Update encryption keys","value":"update:encryption_keys"},{"description":"Delete encryption keys","value":"delete:encryption_keys"},{"description":"Read Sessions","value":"read:sessions"},{"description":"Delete Sessions","value":"delete:sessions"},{"description":"Read Refresh Tokens","value":"read:refresh_tokens"},{"description":"Delete Refresh Tokens","value":"delete:refresh_tokens"},{"description":"Create Self Service Profiles","value":"create:self_service_profiles"},{"description":"Read Self Service Profiles","value":"read:self_service_profiles"},{"description":"Update Self Service Profiles","value":"update:self_service_profiles"},{"description":"Delete Self Service Profiles","value":"delete:self_service_profiles"},{"description":"Create SSO Access Tickets","value":"create:sso_access_tickets"},{"description":"Read Forms","value":"read:forms"},{"description":"Update Forms","value":"update:forms"},{"description":"Delete Forms","value":"delete:forms"},{"description":"Create Forms","value":"create:forms"},{"description":"Read Flows","value":"read:flows"},{"description":"Update Flows","value":"update:flows"},{"description":"Delete Flows","value":"delete:flows"},{"description":"Create Flows","value":"create:flows"},{"description":"Read Flows Vault items","value":"read:flows_vault"},{"description":"Read Flows Vault connections","value":"read:flows_vault_connections"},{"description":"Update Flows Vault connections","value":"update:flows_vault_connections"},{"description":"Delete Flows Vault connections","value":"delete:flows_vault_connections"},{"description":"Create Flows Vault connections","value":"create:flows_vault_connections"},{"description":"Read Flows Executions","value":"read:flows_executions"},{"description":"Delete Flows Executions","value":"delete:flows_executions"},{"description":"Read Connections Options","value":"read:connections_options"},{"description":"Update Connections Options","value":"update:connections_options"},{"value":"read:client_credentials","description":"Read Client Credentials"},{"value":"create:client_credentials","description":"Create Client Credentials"},{"value":"update:client_credentials","description":"Update Client Credentials"},{"value":"delete:client_credentials","description":"delete Client Credentials"}],"is_system":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 89.484042ms - - id: 29 + duration: 169.535167ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%252F%252Fterraform-provider-auth0-dev.eu.auth0.com%252Fapi%252Fv2%252F method: GET response: @@ -1073,10 +980,10 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"648ae5ed23565d920eff640d","name":"Auth0 Management API","identifier":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"description":"Read Client Grants","value":"read:client_grants"},{"description":"Create Client Grants","value":"create:client_grants"},{"description":"Delete Client Grants","value":"delete:client_grants"},{"description":"Update Client Grants","value":"update:client_grants"},{"description":"Read Users","value":"read:users"},{"description":"Update Users","value":"update:users"},{"description":"Delete Users","value":"delete:users"},{"description":"Create Users","value":"create:users"},{"description":"Read Users App Metadata","value":"read:users_app_metadata"},{"description":"Update Users App Metadata","value":"update:users_app_metadata"},{"description":"Delete Users App Metadata","value":"delete:users_app_metadata"},{"description":"Create Users App Metadata","value":"create:users_app_metadata"},{"description":"Read Custom User Blocks","value":"read:user_custom_blocks"},{"description":"Create Custom User Blocks","value":"create:user_custom_blocks"},{"description":"Delete Custom User Blocks","value":"delete:user_custom_blocks"},{"description":"Create User Tickets","value":"create:user_tickets"},{"description":"Read Clients","value":"read:clients"},{"description":"Update Clients","value":"update:clients"},{"description":"Delete Clients","value":"delete:clients"},{"description":"Create Clients","value":"create:clients"},{"description":"Read Client Keys","value":"read:client_keys"},{"description":"Update Client Keys","value":"update:client_keys"},{"description":"Delete Client Keys","value":"delete:client_keys"},{"description":"Create Client Keys","value":"create:client_keys"},{"description":"Read Connections","value":"read:connections"},{"description":"Update Connections","value":"update:connections"},{"description":"Delete Connections","value":"delete:connections"},{"description":"Create Connections","value":"create:connections"},{"description":"Read Resource Servers","value":"read:resource_servers"},{"description":"Update Resource Servers","value":"update:resource_servers"},{"description":"Delete Resource Servers","value":"delete:resource_servers"},{"description":"Create Resource Servers","value":"create:resource_servers"},{"description":"Read Device Credentials","value":"read:device_credentials"},{"description":"Update Device Credentials","value":"update:device_credentials"},{"description":"Delete Device Credentials","value":"delete:device_credentials"},{"description":"Create Device Credentials","value":"create:device_credentials"},{"description":"Read Rules","value":"read:rules"},{"description":"Update Rules","value":"update:rules"},{"description":"Delete Rules","value":"delete:rules"},{"description":"Create Rules","value":"create:rules"},{"description":"Read Rules Configs","value":"read:rules_configs"},{"description":"Update Rules Configs","value":"update:rules_configs"},{"description":"Delete Rules Configs","value":"delete:rules_configs"},{"description":"Read Hooks","value":"read:hooks"},{"description":"Update Hooks","value":"update:hooks"},{"description":"Delete Hooks","value":"delete:hooks"},{"description":"Create Hooks","value":"create:hooks"},{"description":"Read Actions","value":"read:actions"},{"description":"Update Actions","value":"update:actions"},{"description":"Delete Actions","value":"delete:actions"},{"description":"Create Actions","value":"create:actions"},{"description":"Read Email Provider","value":"read:email_provider"},{"description":"Update Email Provider","value":"update:email_provider"},{"description":"Delete Email Provider","value":"delete:email_provider"},{"description":"Create Email Provider","value":"create:email_provider"},{"description":"Blacklist Tokens","value":"blacklist:tokens"},{"description":"Read Stats","value":"read:stats"},{"description":"Read Insights","value":"read:insights"},{"description":"Read Tenant Settings","value":"read:tenant_settings"},{"description":"Update Tenant Settings","value":"update:tenant_settings"},{"description":"Read Logs","value":"read:logs"},{"description":"Read logs relating to users","value":"read:logs_users"},{"description":"Read Shields","value":"read:shields"},{"description":"Create Shields","value":"create:shields"},{"description":"Update Shields","value":"update:shields"},{"description":"Delete Shields","value":"delete:shields"},{"description":"Read Anomaly Detection Blocks","value":"read:anomaly_blocks"},{"description":"Delete Anomaly Detection Blocks","value":"delete:anomaly_blocks"},{"description":"Update Triggers","value":"update:triggers"},{"description":"Read Triggers","value":"read:triggers"},{"description":"Read User Grants","value":"read:grants"},{"description":"Delete User Grants","value":"delete:grants"},{"description":"Read Guardian factors configuration","value":"read:guardian_factors"},{"description":"Update Guardian factors","value":"update:guardian_factors"},{"description":"Read Guardian enrollments","value":"read:guardian_enrollments"},{"description":"Delete Guardian enrollments","value":"delete:guardian_enrollments"},{"description":"Create enrollment tickets for Guardian","value":"create:guardian_enrollment_tickets"},{"description":"Read Users IDP tokens","value":"read:user_idp_tokens"},{"description":"Create password checking jobs","value":"create:passwords_checking_job"},{"description":"Deletes password checking job and all its resources","value":"delete:passwords_checking_job"},{"description":"Read custom domains configurations","value":"read:custom_domains"},{"description":"Delete custom domains configurations","value":"delete:custom_domains"},{"description":"Configure new custom domains","value":"create:custom_domains"},{"description":"Update custom domain configurations","value":"update:custom_domains"},{"description":"Read email templates","value":"read:email_templates"},{"description":"Create email templates","value":"create:email_templates"},{"description":"Update email templates","value":"update:email_templates"},{"description":"Read Multifactor Authentication policies","value":"read:mfa_policies"},{"description":"Update Multifactor Authentication policies","value":"update:mfa_policies"},{"description":"Read roles","value":"read:roles"},{"description":"Create roles","value":"create:roles"},{"description":"Delete roles","value":"delete:roles"},{"description":"Update roles","value":"update:roles"},{"description":"Read prompts settings","value":"read:prompts"},{"description":"Update prompts settings","value":"update:prompts"},{"description":"Read branding settings","value":"read:branding"},{"description":"Update branding settings","value":"update:branding"},{"description":"Delete branding settings","value":"delete:branding"},{"description":"Read log_streams","value":"read:log_streams"},{"description":"Create log_streams","value":"create:log_streams"},{"description":"Delete log_streams","value":"delete:log_streams"},{"description":"Update log_streams","value":"update:log_streams"},{"description":"Create signing keys","value":"create:signing_keys"},{"description":"Read signing keys","value":"read:signing_keys"},{"description":"Update signing keys","value":"update:signing_keys"},{"description":"Read entity limits","value":"read:limits"},{"description":"Update entity limits","value":"update:limits"},{"description":"Create role members","value":"create:role_members"},{"description":"Read role members","value":"read:role_members"},{"description":"Update role members","value":"delete:role_members"},{"description":"Read entitlements","value":"read:entitlements"},{"description":"Read attack protection","value":"read:attack_protection"},{"description":"Update attack protection","value":"update:attack_protection"},{"description":"Read Organizations","value":"read:organizations"},{"description":"Update Organizations","value":"update:organizations"},{"description":"Create Organizations","value":"create:organizations"},{"description":"Delete Organizations","value":"delete:organizations"},{"description":"Create organization members","value":"create:organization_members"},{"description":"Read organization members","value":"read:organization_members"},{"description":"Delete organization members","value":"delete:organization_members"},{"description":"Create organization connections","value":"create:organization_connections"},{"description":"Read organization connections","value":"read:organization_connections"},{"description":"Update organization connections","value":"update:organization_connections"},{"description":"Delete organization connections","value":"delete:organization_connections"},{"description":"Create organization member roles","value":"create:organization_member_roles"},{"description":"Read organization member roles","value":"read:organization_member_roles"},{"description":"Delete organization member roles","value":"delete:organization_member_roles"},{"description":"Create organization invitations","value":"create:organization_invitations"},{"description":"Read organization invitations","value":"read:organization_invitations"},{"description":"Delete organization invitations","value":"delete:organization_invitations"},{"description":"Read organization summary","value":"read:organizations_summary"},{"description":"Create Actions Log Sessions","value":"create:actions_log_sessions"},{"description":"Create Authentication Methods","value":"create:authentication_methods"},{"description":"Read Authentication Methods","value":"read:authentication_methods"},{"description":"Update Authentication Methods","value":"update:authentication_methods"},{"description":"Delete Authentication Methods","value":"delete:authentication_methods"},{"value":"read:client_credentials","description":"Read Client Credentials"},{"value":"create:client_credentials","description":"Create Client Credentials"},{"value":"update:client_credentials","description":"Update Client Credentials"},{"value":"delete:client_credentials","description":"delete Client Credentials"}],"is_system":true}' + body: '{"id":"630fb8508f2040fc2d041057","name":"Auth0 Management API","identifier":"https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"description":"Read Client Grants","value":"read:client_grants"},{"description":"Create Client Grants","value":"create:client_grants"},{"description":"Delete Client Grants","value":"delete:client_grants"},{"description":"Update Client Grants","value":"update:client_grants"},{"description":"Read Users","value":"read:users"},{"description":"Update Users","value":"update:users"},{"description":"Delete Users","value":"delete:users"},{"description":"Create Users","value":"create:users"},{"description":"Read Users App Metadata","value":"read:users_app_metadata"},{"description":"Update Users App Metadata","value":"update:users_app_metadata"},{"description":"Delete Users App Metadata","value":"delete:users_app_metadata"},{"description":"Create Users App Metadata","value":"create:users_app_metadata"},{"description":"Read Custom User Blocks","value":"read:user_custom_blocks"},{"description":"Create Custom User Blocks","value":"create:user_custom_blocks"},{"description":"Delete Custom User Blocks","value":"delete:user_custom_blocks"},{"description":"Create User Tickets","value":"create:user_tickets"},{"description":"Read Clients","value":"read:clients"},{"description":"Update Clients","value":"update:clients"},{"description":"Delete Clients","value":"delete:clients"},{"description":"Create Clients","value":"create:clients"},{"description":"Read Client Keys","value":"read:client_keys"},{"description":"Update Client Keys","value":"update:client_keys"},{"description":"Delete Client Keys","value":"delete:client_keys"},{"description":"Create Client Keys","value":"create:client_keys"},{"description":"Read Connections","value":"read:connections"},{"description":"Update Connections","value":"update:connections"},{"description":"Delete Connections","value":"delete:connections"},{"description":"Create Connections","value":"create:connections"},{"description":"Read Resource Servers","value":"read:resource_servers"},{"description":"Update Resource Servers","value":"update:resource_servers"},{"description":"Delete Resource Servers","value":"delete:resource_servers"},{"description":"Create Resource Servers","value":"create:resource_servers"},{"description":"Read Device Credentials","value":"read:device_credentials"},{"description":"Update Device Credentials","value":"update:device_credentials"},{"description":"Delete Device Credentials","value":"delete:device_credentials"},{"description":"Create Device Credentials","value":"create:device_credentials"},{"description":"Read Rules","value":"read:rules"},{"description":"Update Rules","value":"update:rules"},{"description":"Delete Rules","value":"delete:rules"},{"description":"Create Rules","value":"create:rules"},{"description":"Read Rules Configs","value":"read:rules_configs"},{"description":"Update Rules Configs","value":"update:rules_configs"},{"description":"Delete Rules Configs","value":"delete:rules_configs"},{"description":"Read Hooks","value":"read:hooks"},{"description":"Update Hooks","value":"update:hooks"},{"description":"Delete Hooks","value":"delete:hooks"},{"description":"Create Hooks","value":"create:hooks"},{"description":"Read Actions","value":"read:actions"},{"description":"Update Actions","value":"update:actions"},{"description":"Delete Actions","value":"delete:actions"},{"description":"Create Actions","value":"create:actions"},{"description":"Read Email Provider","value":"read:email_provider"},{"description":"Update Email Provider","value":"update:email_provider"},{"description":"Delete Email Provider","value":"delete:email_provider"},{"description":"Create Email Provider","value":"create:email_provider"},{"description":"Blacklist Tokens","value":"blacklist:tokens"},{"description":"Read Stats","value":"read:stats"},{"description":"Read Insights","value":"read:insights"},{"description":"Read Tenant Settings","value":"read:tenant_settings"},{"description":"Update Tenant Settings","value":"update:tenant_settings"},{"description":"Read Logs","value":"read:logs"},{"description":"Read logs relating to users","value":"read:logs_users"},{"description":"Read Shields","value":"read:shields"},{"description":"Create Shields","value":"create:shields"},{"description":"Update Shields","value":"update:shields"},{"description":"Delete Shields","value":"delete:shields"},{"description":"Read Anomaly Detection Blocks","value":"read:anomaly_blocks"},{"description":"Delete Anomaly Detection Blocks","value":"delete:anomaly_blocks"},{"description":"Update Triggers","value":"update:triggers"},{"description":"Read Triggers","value":"read:triggers"},{"description":"Read User Grants","value":"read:grants"},{"description":"Delete User Grants","value":"delete:grants"},{"description":"Read Guardian factors configuration","value":"read:guardian_factors"},{"description":"Update Guardian factors","value":"update:guardian_factors"},{"description":"Read Guardian enrollments","value":"read:guardian_enrollments"},{"description":"Delete Guardian enrollments","value":"delete:guardian_enrollments"},{"description":"Create enrollment tickets for Guardian","value":"create:guardian_enrollment_tickets"},{"description":"Read Users IDP tokens","value":"read:user_idp_tokens"},{"description":"Create password checking jobs","value":"create:passwords_checking_job"},{"description":"Deletes password checking job and all its resources","value":"delete:passwords_checking_job"},{"description":"Read custom domains configurations","value":"read:custom_domains"},{"description":"Delete custom domains configurations","value":"delete:custom_domains"},{"description":"Configure new custom domains","value":"create:custom_domains"},{"description":"Update custom domain configurations","value":"update:custom_domains"},{"description":"Read email templates","value":"read:email_templates"},{"description":"Create email templates","value":"create:email_templates"},{"description":"Update email templates","value":"update:email_templates"},{"description":"Read Multifactor Authentication policies","value":"read:mfa_policies"},{"description":"Update Multifactor Authentication policies","value":"update:mfa_policies"},{"description":"Read roles","value":"read:roles"},{"description":"Create roles","value":"create:roles"},{"description":"Delete roles","value":"delete:roles"},{"description":"Update roles","value":"update:roles"},{"description":"Read prompts settings","value":"read:prompts"},{"description":"Update prompts settings","value":"update:prompts"},{"description":"Read branding settings","value":"read:branding"},{"description":"Update branding settings","value":"update:branding"},{"description":"Delete branding settings","value":"delete:branding"},{"description":"Read log_streams","value":"read:log_streams"},{"description":"Create log_streams","value":"create:log_streams"},{"description":"Delete log_streams","value":"delete:log_streams"},{"description":"Update log_streams","value":"update:log_streams"},{"description":"Create signing keys","value":"create:signing_keys"},{"description":"Read signing keys","value":"read:signing_keys"},{"description":"Update signing keys","value":"update:signing_keys"},{"description":"Read entity limits","value":"read:limits"},{"description":"Update entity limits","value":"update:limits"},{"description":"Create role members","value":"create:role_members"},{"description":"Read role members","value":"read:role_members"},{"description":"Update role members","value":"delete:role_members"},{"description":"Read entitlements","value":"read:entitlements"},{"description":"Read attack protection","value":"read:attack_protection"},{"description":"Update attack protection","value":"update:attack_protection"},{"description":"Read organization summary","value":"read:organizations_summary"},{"description":"Create Authentication Methods","value":"create:authentication_methods"},{"description":"Read Authentication Methods","value":"read:authentication_methods"},{"description":"Update Authentication Methods","value":"update:authentication_methods"},{"description":"Delete Authentication Methods","value":"delete:authentication_methods"},{"description":"Read Organizations","value":"read:organizations"},{"description":"Update Organizations","value":"update:organizations"},{"description":"Create Organizations","value":"create:organizations"},{"description":"Delete Organizations","value":"delete:organizations"},{"description":"Create organization members","value":"create:organization_members"},{"description":"Read organization members","value":"read:organization_members"},{"description":"Delete organization members","value":"delete:organization_members"},{"description":"Create organization connections","value":"create:organization_connections"},{"description":"Read organization connections","value":"read:organization_connections"},{"description":"Update organization connections","value":"update:organization_connections"},{"description":"Delete organization connections","value":"delete:organization_connections"},{"description":"Create organization member roles","value":"create:organization_member_roles"},{"description":"Read organization member roles","value":"read:organization_member_roles"},{"description":"Delete organization member roles","value":"delete:organization_member_roles"},{"description":"Create organization invitations","value":"create:organization_invitations"},{"description":"Read organization invitations","value":"read:organization_invitations"},{"description":"Delete organization invitations","value":"delete:organization_invitations"},{"description":"Read SCIM configuration","value":"read:scim_config"},{"description":"Create SCIM configuration","value":"create:scim_config"},{"description":"Update SCIM configuration","value":"update:scim_config"},{"description":"Delete SCIM configuration","value":"delete:scim_config"},{"description":"Create SCIM token","value":"create:scim_token"},{"description":"Read SCIM token","value":"read:scim_token"},{"description":"Delete SCIM token","value":"delete:scim_token"},{"description":"Delete a Phone Notification Provider","value":"delete:phone_providers"},{"description":"Create a Phone Notification Provider","value":"create:phone_providers"},{"description":"Read a Phone Notification Provider","value":"read:phone_providers"},{"description":"Update a Phone Notification Provider","value":"update:phone_providers"},{"description":"Delete a Phone Notification Template","value":"delete:phone_templates"},{"description":"Create a Phone Notification Template","value":"create:phone_templates"},{"description":"Read a Phone Notification Template","value":"read:phone_templates"},{"description":"Update a Phone Notification Template","value":"update:phone_templates"},{"description":"Create encryption keys","value":"create:encryption_keys"},{"description":"Read encryption keys","value":"read:encryption_keys"},{"description":"Update encryption keys","value":"update:encryption_keys"},{"description":"Delete encryption keys","value":"delete:encryption_keys"},{"description":"Read Sessions","value":"read:sessions"},{"description":"Delete Sessions","value":"delete:sessions"},{"description":"Read Refresh Tokens","value":"read:refresh_tokens"},{"description":"Delete Refresh Tokens","value":"delete:refresh_tokens"},{"description":"Create Self Service Profiles","value":"create:self_service_profiles"},{"description":"Read Self Service Profiles","value":"read:self_service_profiles"},{"description":"Update Self Service Profiles","value":"update:self_service_profiles"},{"description":"Delete Self Service Profiles","value":"delete:self_service_profiles"},{"description":"Create SSO Access Tickets","value":"create:sso_access_tickets"},{"description":"Read Forms","value":"read:forms"},{"description":"Update Forms","value":"update:forms"},{"description":"Delete Forms","value":"delete:forms"},{"description":"Create Forms","value":"create:forms"},{"description":"Read Flows","value":"read:flows"},{"description":"Update Flows","value":"update:flows"},{"description":"Delete Flows","value":"delete:flows"},{"description":"Create Flows","value":"create:flows"},{"description":"Read Flows Vault items","value":"read:flows_vault"},{"description":"Read Flows Vault connections","value":"read:flows_vault_connections"},{"description":"Update Flows Vault connections","value":"update:flows_vault_connections"},{"description":"Delete Flows Vault connections","value":"delete:flows_vault_connections"},{"description":"Create Flows Vault connections","value":"create:flows_vault_connections"},{"description":"Read Flows Executions","value":"read:flows_executions"},{"description":"Delete Flows Executions","value":"delete:flows_executions"},{"description":"Read Connections Options","value":"read:connections_options"},{"description":"Update Connections Options","value":"update:connections_options"},{"value":"read:client_credentials","description":"Read Client Credentials"},{"value":"create:client_credentials","description":"Create Client Credentials"},{"value":"update:client_credentials","description":"Update Client Credentials"},{"value":"delete:client_credentials","description":"delete Client Credentials"}],"is_system":true}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 162.597792ms + duration: 180.872208ms diff --git a/test/data/recordings/TestAccDataSourceRole.yaml b/test/data/recordings/TestAccDataSourceRole.yaml index b0baba8c..88826fc7 100644 --- a/test/data/recordings/TestAccDataSourceRole.yaml +++ b/test/data/recordings/TestAccDataSourceRole.yaml @@ -6,20 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles?include_totals=true&name_filter=this-role-does-not-exist&page=0&per_page=100 method: GET response: @@ -28,15 +27,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true + content_length: 44 + uncompressed: false body: '{"roles":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 106.303917ms + duration: 230.279875ms - id: 1 request: proto: HTTP/1.1 @@ -55,7 +54,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers method: POST response: @@ -66,34 +65,34 @@ interactions: trailer: {} content_length: 306 uncompressed: false - body: '{"id":"64c125638bbb632f263bfae8","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 98.004833ms + duration: 189.065792ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 31 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"authorization_details":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/64c125638bbb632f263bfae8 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a11320b2fc32cb4cfd23 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -102,34 +101,34 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64c125638bbb632f263bfae8","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 158.631958ms + duration: 176.161ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 26 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"token_encryption":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Ftestaccdatasourcerole.matrix.com%2F - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a11320b2fc32cb4cfd23 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -138,33 +137,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64c125638bbb632f263bfae8","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 96.642208ms + duration: 195.215ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 119 + content_length: 29 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]} + {"proof_of_possession":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Ftestaccdatasourcerole.matrix.com%2F + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a11320b2fc32cb4cfd23 method: PATCH response: proto: HTTP/2.0 @@ -174,33 +173,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64c125638bbb632f263bfae8","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' + body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.888583ms + duration: 196.571875ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Ftestaccdatasourcerole.matrix.com%2F + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a11320b2fc32cb4cfd23 method: GET response: proto: HTTP/2.0 @@ -210,34 +208,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64c125638bbb632f263bfae8","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' + body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.967875ms + duration: 162.37425ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 103 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Ftestaccdatasourcerole.matrix.com%2F + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -246,34 +243,34 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_C0v6v6t97PUIMe2e","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' + body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 100.151084ms + duration: 159.229292ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 119 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Ftestaccdatasourcerole.matrix.com%2F + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -282,69 +279,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_C0v6v6t97PUIMe2e","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' + body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.847666ms + duration: 195.444209ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 233 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"permissions":[{"resource_server_identifier":"https://testaccdatasourcerole.matrix.com/","permission_name":"stop:bullets"},{"resource_server_identifier":"https://testaccdatasourcerole.matrix.com/","permission_name":"bring:peace"}]} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/permissions - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2 - uncompressed: false - body: '{}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 108.468625ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Ftestaccdatasourcerole.matrix.com%2F method: GET response: proto: HTTP/2.0 @@ -354,33 +314,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[{"permission_name":"bring:peace","description":"Bring peace","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"},{"permission_name":"stop:bullets","description":"Stop bullets","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"}],"start":0,"limit":100,"total":2}' + body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.661958ms - - id: 10 + duration: 193.0345ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 167 + content_length: 103 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"connection":"Username-Password-Authentication","email":"testaccdatasourcerole1@acceptance.test.com","username":"testaccdatasourcerole1","password":"passpass$12$12"} + {"name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles method: POST response: proto: HTTP/2.0 @@ -388,35 +348,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 597 - uncompressed: false - body: '{"created_at":"2023-07-26T13:53:40.875Z","email":"testaccdatasourcerole1@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64c125648869dc46598fc62a","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole1@acceptance.test.com","nickname":"testaccdatasourcerole1","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-07-26T13:53:40.875Z","user_id":"auth0|64c125648869dc46598fc62a","username":"testaccdatasourcerole1"}' + content_length: -1 + uncompressed: true + body: '{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 250.562416ms - - id: 11 + status: 200 OK + code: 200 + duration: 203.651083ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64c125648869dc46598fc62a + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP method: GET response: proto: HTTP/2.0 @@ -426,33 +385,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-07-26T13:53:40.875Z","email":"testaccdatasourcerole1@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64c125648869dc46598fc62a","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole1@acceptance.test.com","nickname":"testaccdatasourcerole1","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-07-26T13:53:40.875Z","user_id":"auth0|64c125648869dc46598fc62a","username":"testaccdatasourcerole1"}' + body: '{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 131.06475ms - - id: 12 + duration: 173.610625ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 35 + content_length: 233 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"roles":["rol_C0v6v6t97PUIMe2e"]} + {"permissions":[{"resource_server_identifier":"https://testaccdatasourcerole.matrix.com/","permission_name":"stop:bullets"},{"resource_server_identifier":"https://testaccdatasourcerole.matrix.com/","permission_name":"bring:peace"}]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64c125648869dc46598fc62a/roles + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions method: POST response: proto: HTTP/2.0 @@ -460,35 +419,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2 uncompressed: false - body: "" + body: '{}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 107.759625ms - - id: 13 + status: 201 Created + code: 201 + duration: 346.642959ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64c125648869dc46598fc62a/roles?include_totals=true&per_page=50 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -498,14 +456,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_C0v6v6t97PUIMe2e","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' + body: '{"permissions":[{"permission_name":"bring:peace","description":"Bring peace","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"},{"permission_name":"stop:bullets","description":"Stop bullets","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 97.7705ms - - id: 14 + duration: 174.757417ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -517,13 +475,13 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection":"Username-Password-Authentication","email":"testaccdatasourcerole2@acceptance.test.com","username":"testaccdatasourcerole2","password":"passpass$12$12"} + {"connection":"Username-Password-Authentication","email":"testaccdatasourcerole1@acceptance.test.com","username":"testaccdatasourcerole1","password":"passpass$12$12"} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users method: POST response: @@ -534,33 +492,32 @@ interactions: trailer: {} content_length: 597 uncompressed: false - body: '{"created_at":"2023-07-26T13:53:47.666Z","email":"testaccdatasourcerole2@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64c1256bcf71fa8ca0ae26bb","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole2@acceptance.test.com","nickname":"testaccdatasourcerole2","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-07-26T13:53:47.666Z","user_id":"auth0|64c1256bcf71fa8ca0ae26bb","username":"testaccdatasourcerole2"}' + body: '{"created_at":"2024-09-10T19:42:13.975Z","email":"testaccdatasourcerole1@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66e0a1158ec876ea516ff4a2","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole1@acceptance.test.com","nickname":"testaccdatasourcerole1","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:42:13.976Z","user_id":"auth0|66e0a1158ec876ea516ff4a2","username":"testaccdatasourcerole1"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 288.101958ms - - id: 15 + duration: 388.294333ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64c1256bcf71fa8ca0ae26bb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a1158ec876ea516ff4a2 method: GET response: proto: HTTP/2.0 @@ -570,14 +527,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-07-26T13:53:47.666Z","email":"testaccdatasourcerole2@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64c1256bcf71fa8ca0ae26bb","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole2@acceptance.test.com","nickname":"testaccdatasourcerole2","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-07-26T13:53:47.666Z","user_id":"auth0|64c1256bcf71fa8ca0ae26bb","username":"testaccdatasourcerole2"}' + body: '{"created_at":"2024-09-10T19:42:13.975Z","email":"testaccdatasourcerole1@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66e0a1158ec876ea516ff4a2","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole1@acceptance.test.com","nickname":"testaccdatasourcerole1","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:42:13.976Z","user_id":"auth0|66e0a1158ec876ea516ff4a2","username":"testaccdatasourcerole1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 125.825792ms - - id: 16 + duration: 206.027167ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -589,14 +546,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_C0v6v6t97PUIMe2e"]} + {"roles":["rol_LmR90bBh3V7DLCPP"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64c1256bcf71fa8ca0ae26bb/roles + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a1158ec876ea516ff4a2/roles method: POST response: proto: HTTP/2.0 @@ -612,27 +569,26 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 122.28175ms - - id: 17 + duration: 189.687209ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64c1256bcf71fa8ca0ae26bb/roles?include_totals=true&per_page=50 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a1158ec876ea516ff4a2/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -642,33 +598,68 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_C0v6v6t97PUIMe2e","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' + body: '{"roles":[{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 199.728583ms - - id: 18 + duration: 178.395291ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 167 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"connection":"Username-Password-Authentication","email":"testaccdatasourcerole2@acceptance.test.com","username":"testaccdatasourcerole2","password":"passpass$12$12"} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles?include_totals=true&name_filter=The+One+-+Acceptance+Test+-+testaccdatasourcerole&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 597 + uncompressed: false + body: '{"created_at":"2024-09-10T19:42:21.206Z","email":"testaccdatasourcerole2@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66e0a11d6064cbd20c35e0b9","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole2@acceptance.test.com","nickname":"testaccdatasourcerole2","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:42:21.206Z","user_id":"auth0|66e0a11d6064cbd20c35e0b9","username":"testaccdatasourcerole2"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 418.775959ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a11d6064cbd20c35e0b9 method: GET response: proto: HTTP/2.0 @@ -678,69 +669,68 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_C0v6v6t97PUIMe2e","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":100,"total":1}' + body: '{"created_at":"2024-09-10T19:42:21.206Z","email":"testaccdatasourcerole2@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66e0a11d6064cbd20c35e0b9","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole2@acceptance.test.com","nickname":"testaccdatasourcerole2","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:42:21.206Z","user_id":"auth0|66e0a11d6064cbd20c35e0b9","username":"testaccdatasourcerole2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 91.739417ms + duration: 165.862209ms - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 35 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"roles":["rol_LmR90bBh3V7DLCPP"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/permissions?include_totals=true&page=0&per_page=100 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a11d6064cbd20c35e0b9/roles + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"permissions":[{"permission_name":"bring:peace","description":"Bring peace","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"},{"permission_name":"stop:bullets","description":"Stop bullets","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"}],"start":0,"limit":100,"total":2}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 105.493042ms + status: 204 No Content + code: 204 + duration: 218.188667ms - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a11d6064cbd20c35e0b9/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -750,32 +740,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"users":[{"user_id":"auth0|64c125648869dc46598fc62a","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|64c1256bcf71fa8ca0ae26bb","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.502291ms + duration: 204.987709ms - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles?include_totals=true&name_filter=The+One+-+Acceptance+Test+-+testaccdatasourcerole&page=0&per_page=100 method: GET response: @@ -786,33 +775,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_C0v6v6t97PUIMe2e","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 129.620333ms + duration: 211.980709ms - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -828,27 +816,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.711ms + duration: 195.679875ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -858,33 +845,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"users":[{"user_id":"auth0|64c125648869dc46598fc62a","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|64c1256bcf71fa8ca0ae26bb","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}],"start":0,"limit":100,"total":2}' + body: '{"users":[{"user_id":"auth0|66e0a1158ec876ea516ff4a2","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|66e0a11d6064cbd20c35e0b9","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 161.17175ms + duration: 203.123542ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/64c125638bbb632f263bfae8 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles?include_totals=true&name_filter=The+One+-+Acceptance+Test+-+testaccdatasourcerole&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -894,33 +880,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64c125638bbb632f263bfae8","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' + body: '{"roles":[{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 94.730333ms + duration: 195.921542ms - id: 25 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Ftestaccdatasourcerole.matrix.com%2F + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -930,33 +915,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64c125638bbb632f263bfae8","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' + body: '{"permissions":[{"permission_name":"bring:peace","description":"Bring peace","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"},{"permission_name":"stop:bullets","description":"Stop bullets","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 147.671333ms + duration: 370.00825ms - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -966,33 +950,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_C0v6v6t97PUIMe2e","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' + body: '{"users":[{"user_id":"auth0|66e0a1158ec876ea516ff4a2","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|66e0a11d6064cbd20c35e0b9","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 95.177542ms + duration: 211.396542ms - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a11320b2fc32cb4cfd23 method: GET response: proto: HTTP/2.0 @@ -1002,33 +985,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[{"permission_name":"bring:peace","description":"Bring peace","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"},{"permission_name":"stop:bullets","description":"Stop bullets","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"}],"start":0,"limit":100,"total":2}' + body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 102.424542ms + duration: 147.612334ms - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64c125648869dc46598fc62a + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Ftestaccdatasourcerole.matrix.com%2F method: GET response: proto: HTTP/2.0 @@ -1038,33 +1020,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-07-26T13:53:40.875Z","email":"testaccdatasourcerole1@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64c125648869dc46598fc62a","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole1@acceptance.test.com","nickname":"testaccdatasourcerole1","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-07-26T13:53:40.875Z","user_id":"auth0|64c125648869dc46598fc62a","username":"testaccdatasourcerole1"}' + body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 133.018459ms + duration: 156.040083ms - id: 29 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64c125648869dc46598fc62a/roles?include_totals=true&per_page=50 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP method: GET response: proto: HTTP/2.0 @@ -1074,33 +1055,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_C0v6v6t97PUIMe2e","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' + body: '{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 100.430708ms + duration: 153.941167ms - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64c1256bcf71fa8ca0ae26bb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1110,33 +1090,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-07-26T13:53:47.666Z","email":"testaccdatasourcerole2@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64c1256bcf71fa8ca0ae26bb","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole2@acceptance.test.com","nickname":"testaccdatasourcerole2","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-07-26T13:53:47.666Z","user_id":"auth0|64c1256bcf71fa8ca0ae26bb","username":"testaccdatasourcerole2"}' + body: '{"permissions":[{"permission_name":"bring:peace","description":"Bring peace","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"},{"permission_name":"stop:bullets","description":"Stop bullets","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 96.343709ms + duration: 205.988042ms - id: 31 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64c1256bcf71fa8ca0ae26bb/roles?include_totals=true&per_page=50 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a1158ec876ea516ff4a2 method: GET response: proto: HTTP/2.0 @@ -1146,33 +1125,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_C0v6v6t97PUIMe2e","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' + body: '{"created_at":"2024-09-10T19:42:13.975Z","email":"testaccdatasourcerole1@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66e0a1158ec876ea516ff4a2","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole1@acceptance.test.com","nickname":"testaccdatasourcerole1","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:42:13.976Z","user_id":"auth0|66e0a1158ec876ea516ff4a2","username":"testaccdatasourcerole1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 127.698833ms + duration: 173.271333ms - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles?include_totals=true&name_filter=The+One+-+Acceptance+Test+-+testaccdatasourcerole&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a1158ec876ea516ff4a2/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1182,33 +1160,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_C0v6v6t97PUIMe2e","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 138.339458ms + duration: 193.695667ms - id: 33 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a11d6064cbd20c35e0b9 method: GET response: proto: HTTP/2.0 @@ -1218,33 +1195,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[{"permission_name":"bring:peace","description":"Bring peace","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"},{"permission_name":"stop:bullets","description":"Stop bullets","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"}],"start":0,"limit":100,"total":2}' + body: '{"created_at":"2024-09-10T19:42:21.206Z","email":"testaccdatasourcerole2@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66e0a11d6064cbd20c35e0b9","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole2@acceptance.test.com","nickname":"testaccdatasourcerole2","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:42:21.206Z","user_id":"auth0|66e0a11d6064cbd20c35e0b9","username":"testaccdatasourcerole2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 100.272917ms + duration: 172.949417ms - id: 34 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a11d6064cbd20c35e0b9/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1254,32 +1230,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"users":[{"user_id":"auth0|64c125648869dc46598fc62a","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|64c1256bcf71fa8ca0ae26bb","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 104.341291ms + duration: 205.711458ms - id: 35 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles?include_totals=true&name_filter=The+One+-+Acceptance+Test+-+testaccdatasourcerole&page=0&per_page=100 method: GET response: @@ -1290,33 +1265,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_C0v6v6t97PUIMe2e","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 106.431125ms + duration: 159.798042ms - id: 36 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1332,27 +1306,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 149.46625ms + duration: 196.054917ms - id: 37 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1362,33 +1335,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"users":[{"user_id":"auth0|64c125648869dc46598fc62a","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|64c1256bcf71fa8ca0ae26bb","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}],"start":0,"limit":100,"total":2}' + body: '{"users":[{"user_id":"auth0|66e0a1158ec876ea516ff4a2","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|66e0a11d6064cbd20c35e0b9","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.767666ms + duration: 208.908667ms - id: 38 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/64c125638bbb632f263bfae8 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a11320b2fc32cb4cfd23 method: GET response: proto: HTTP/2.0 @@ -1398,32 +1370,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64c125638bbb632f263bfae8","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' + body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.010291ms + duration: 161.509917ms - id: 39 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Ftestaccdatasourcerole.matrix.com%2F method: GET response: @@ -1434,33 +1405,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64c125638bbb632f263bfae8","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' + body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 154.6855ms + duration: 167.625958ms - id: 40 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP method: GET response: proto: HTTP/2.0 @@ -1470,33 +1440,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_C0v6v6t97PUIMe2e","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' + body: '{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 100.872834ms + duration: 164.32225ms - id: 41 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1512,27 +1481,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 101.3495ms + duration: 211.146833ms - id: 42 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64c125648869dc46598fc62a + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a1158ec876ea516ff4a2 method: GET response: proto: HTTP/2.0 @@ -1542,33 +1510,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-07-26T13:53:40.875Z","email":"testaccdatasourcerole1@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64c125648869dc46598fc62a","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole1@acceptance.test.com","nickname":"testaccdatasourcerole1","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-07-26T13:53:40.875Z","user_id":"auth0|64c125648869dc46598fc62a","username":"testaccdatasourcerole1"}' + body: '{"created_at":"2024-09-10T19:42:13.975Z","email":"testaccdatasourcerole1@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66e0a1158ec876ea516ff4a2","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole1@acceptance.test.com","nickname":"testaccdatasourcerole1","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:42:13.976Z","user_id":"auth0|66e0a1158ec876ea516ff4a2","username":"testaccdatasourcerole1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 96.278208ms + duration: 174.513875ms - id: 43 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64c125648869dc46598fc62a/roles?include_totals=true&per_page=50 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a1158ec876ea516ff4a2/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1578,33 +1545,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_C0v6v6t97PUIMe2e","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' + body: '{"roles":[{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 148.150042ms + duration: 163.23025ms - id: 44 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64c1256bcf71fa8ca0ae26bb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a11d6064cbd20c35e0b9 method: GET response: proto: HTTP/2.0 @@ -1614,33 +1580,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-07-26T13:53:47.666Z","email":"testaccdatasourcerole2@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64c1256bcf71fa8ca0ae26bb","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole2@acceptance.test.com","nickname":"testaccdatasourcerole2","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-07-26T13:53:47.666Z","user_id":"auth0|64c1256bcf71fa8ca0ae26bb","username":"testaccdatasourcerole2"}' + body: '{"created_at":"2024-09-10T19:42:21.206Z","email":"testaccdatasourcerole2@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66e0a11d6064cbd20c35e0b9","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole2@acceptance.test.com","nickname":"testaccdatasourcerole2","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:42:21.206Z","user_id":"auth0|66e0a11d6064cbd20c35e0b9","username":"testaccdatasourcerole2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 142.194833ms + duration: 173.37875ms - id: 45 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64c1256bcf71fa8ca0ae26bb/roles?include_totals=true&per_page=50 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a11d6064cbd20c35e0b9/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1650,33 +1615,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_C0v6v6t97PUIMe2e","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' + body: '{"roles":[{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 89.863791ms + duration: 205.98325ms - id: 46 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP method: GET response: proto: HTTP/2.0 @@ -1686,33 +1650,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_C0v6v6t97PUIMe2e","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' + body: '{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.274958ms + duration: 154.81025ms - id: 47 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1728,27 +1691,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 125.579625ms + duration: 201.929583ms - id: 48 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1758,33 +1720,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"users":[{"user_id":"auth0|64c125648869dc46598fc62a","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|64c1256bcf71fa8ca0ae26bb","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}],"start":0,"limit":100,"total":2}' + body: '{"users":[{"user_id":"auth0|66e0a1158ec876ea516ff4a2","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|66e0a11d6064cbd20c35e0b9","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.284333ms + duration: 178.817375ms - id: 49 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP method: GET response: proto: HTTP/2.0 @@ -1794,33 +1755,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_C0v6v6t97PUIMe2e","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' + body: '{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.780958ms + duration: 192.951792ms - id: 50 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1836,27 +1796,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 102.579375ms + duration: 172.216833ms - id: 51 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1866,33 +1825,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"users":[{"user_id":"auth0|64c125648869dc46598fc62a","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|64c1256bcf71fa8ca0ae26bb","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}],"start":0,"limit":100,"total":2}' + body: '{"users":[{"user_id":"auth0|66e0a1158ec876ea516ff4a2","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|66e0a11d6064cbd20c35e0b9","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.968542ms + duration: 175.089416ms - id: 52 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a11320b2fc32cb4cfd23 method: GET response: proto: HTTP/2.0 @@ -1902,33 +1860,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_C0v6v6t97PUIMe2e","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' + body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.704875ms + duration: 201.057291ms - id: 53 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Ftestaccdatasourcerole.matrix.com%2F method: GET response: proto: HTTP/2.0 @@ -1938,33 +1895,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[{"permission_name":"bring:peace","description":"Bring peace","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"},{"permission_name":"stop:bullets","description":"Stop bullets","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"}],"start":0,"limit":100,"total":2}' + body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 147.387917ms + duration: 157.152833ms - id: 54 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP method: GET response: proto: HTTP/2.0 @@ -1974,33 +1930,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"users":[{"user_id":"auth0|64c125648869dc46598fc62a","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|64c1256bcf71fa8ca0ae26bb","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}],"start":0,"limit":100,"total":2}' + body: '{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 104.818833ms + duration: 169.801125ms - id: 55 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/64c125638bbb632f263bfae8 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2010,33 +1965,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64c125638bbb632f263bfae8","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' + body: '{"permissions":[{"permission_name":"bring:peace","description":"Bring peace","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"},{"permission_name":"stop:bullets","description":"Stop bullets","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 100.590833ms + duration: 157.481125ms - id: 56 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Ftestaccdatasourcerole.matrix.com%2F + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a1158ec876ea516ff4a2 method: GET response: proto: HTTP/2.0 @@ -2046,33 +2000,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64c125638bbb632f263bfae8","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"bring:peace","description":"Bring peace"},{"value":"stop:bullets","description":"Stop bullets"}]}' + body: '{"created_at":"2024-09-10T19:42:13.975Z","email":"testaccdatasourcerole1@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66e0a1158ec876ea516ff4a2","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole1@acceptance.test.com","nickname":"testaccdatasourcerole1","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:42:13.976Z","user_id":"auth0|66e0a1158ec876ea516ff4a2","username":"testaccdatasourcerole1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 97.251916ms + duration: 169.823042ms - id: 57 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a1158ec876ea516ff4a2/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2082,33 +2035,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_C0v6v6t97PUIMe2e","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' + body: '{"roles":[{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.841916ms + duration: 193.441625ms - id: 58 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a11d6064cbd20c35e0b9 method: GET response: proto: HTTP/2.0 @@ -2118,33 +2070,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[{"permission_name":"bring:peace","description":"Bring peace","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"},{"permission_name":"stop:bullets","description":"Stop bullets","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"}],"start":0,"limit":100,"total":2}' + body: '{"created_at":"2024-09-10T19:42:21.206Z","email":"testaccdatasourcerole2@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66e0a11d6064cbd20c35e0b9","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole2@acceptance.test.com","nickname":"testaccdatasourcerole2","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:42:21.206Z","user_id":"auth0|66e0a11d6064cbd20c35e0b9","username":"testaccdatasourcerole2"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.822333ms + duration: 195.589542ms - id: 59 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64c125648869dc46598fc62a + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a11d6064cbd20c35e0b9/roles?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2154,33 +2105,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-07-26T13:53:40.875Z","email":"testaccdatasourcerole1@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64c125648869dc46598fc62a","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole1@acceptance.test.com","nickname":"testaccdatasourcerole1","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-07-26T13:53:40.875Z","user_id":"auth0|64c125648869dc46598fc62a","username":"testaccdatasourcerole1"}' + body: '{"roles":[{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 89.525709ms + duration: 169.111583ms - id: 60 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64c125648869dc46598fc62a/roles?include_totals=true&per_page=50 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP method: GET response: proto: HTTP/2.0 @@ -2190,33 +2140,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_C0v6v6t97PUIMe2e","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' + body: '{"id":"rol_LmR90bBh3V7DLCPP","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 94.317875ms + duration: 164.149917ms - id: 61 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64c1256bcf71fa8ca0ae26bb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2226,33 +2175,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-07-26T13:53:47.666Z","email":"testaccdatasourcerole2@acceptance.test.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64c1256bcf71fa8ca0ae26bb","provider":"auth0","isSocial":false}],"name":"testaccdatasourcerole2@acceptance.test.com","nickname":"testaccdatasourcerole2","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-07-26T13:53:47.666Z","user_id":"auth0|64c1256bcf71fa8ca0ae26bb","username":"testaccdatasourcerole2"}' + body: '{"permissions":[{"permission_name":"bring:peace","description":"Bring peace","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"},{"permission_name":"stop:bullets","description":"Stop bullets","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.716792ms + duration: 210.308667ms - id: 62 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64c1256bcf71fa8ca0ae26bb/roles?include_totals=true&per_page=50 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2262,230 +2210,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_C0v6v6t97PUIMe2e","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}],"start":0,"limit":50,"total":1}' + body: '{"users":[{"user_id":"auth0|66e0a1158ec876ea516ff4a2","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|66e0a11d6064cbd20c35e0b9","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.627291ms + duration: 198.7705ms - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"rol_C0v6v6t97PUIMe2e","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 91.763334ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/permissions?include_totals=true&page=0&per_page=100 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"permissions":[{"permission_name":"bring:peace","description":"Bring peace","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"},{"permission_name":"stop:bullets","description":"Stop bullets","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"}],"start":0,"limit":100,"total":2}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 118.706292ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/users?include_totals=true&page=0&per_page=100 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"users":[{"user_id":"auth0|64c125648869dc46598fc62a","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|64c1256bcf71fa8ca0ae26bb","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}],"start":0,"limit":100,"total":2}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 95.151458ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"rol_C0v6v6t97PUIMe2e","name":"The One - Acceptance Test - testaccdatasourcerole","description":"The One - Acceptance Test"}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 85.324667ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/permissions?include_totals=true&page=0&per_page=100 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"permissions":[{"permission_name":"bring:peace","description":"Bring peace","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"},{"permission_name":"stop:bullets","description":"Stop bullets","resource_server_name":"Role - Acceptance Test - testaccdatasourcerole","resource_server_identifier":"https://testaccdatasourcerole.matrix.com/"}],"start":0,"limit":100,"total":2}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 102.3765ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/users?include_totals=true&page=0&per_page=100 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"users":[{"user_id":"auth0|64c125648869dc46598fc62a","email":"testaccdatasourcerole1@acceptance.test.com","picture":"https://s.gravatar.com/avatar/09a7904a4325b6787e81151627d9c6c1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole1@acceptance.test.com"},{"user_id":"auth0|64c1256bcf71fa8ca0ae26bb","email":"testaccdatasourcerole2@acceptance.test.com","picture":"https://s.gravatar.com/avatar/24f52deaee80609c2220433ef62e2e2f?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourcerole2@acceptance.test.com"}],"start":0,"limit":100,"total":2}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 111.2805ms - - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -2497,14 +2229,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_C0v6v6t97PUIMe2e"]} + {"roles":["rol_LmR90bBh3V7DLCPP"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64c1256bcf71fa8ca0ae26bb/roles + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a11d6064cbd20c35e0b9/roles method: DELETE response: proto: HTTP/2.0 @@ -2520,8 +2252,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 100.12125ms - - id: 70 + duration: 160.282083ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -2538,8 +2270,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64c1256bcf71fa8ca0ae26bb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a11d6064cbd20c35e0b9 method: DELETE response: proto: HTTP/2.0 @@ -2555,8 +2287,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 216.704584ms - - id: 71 + duration: 218.552584ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -2568,14 +2300,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_C0v6v6t97PUIMe2e"]} + {"roles":["rol_LmR90bBh3V7DLCPP"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64c125648869dc46598fc62a/roles + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a1158ec876ea516ff4a2/roles method: DELETE response: proto: HTTP/2.0 @@ -2591,8 +2323,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 136.510958ms - - id: 72 + duration: 172.996ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -2609,8 +2341,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64c125648869dc46598fc62a + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66e0a1158ec876ea516ff4a2 method: DELETE response: proto: HTTP/2.0 @@ -2626,8 +2358,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 323.75925ms - - id: 73 + duration: 253.401166ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -2645,8 +2377,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e/permissions + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP/permissions method: DELETE response: proto: HTTP/2.0 @@ -2662,8 +2394,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 126.325459ms - - id: 74 + duration: 163.28475ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -2681,8 +2413,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_C0v6v6t97PUIMe2e + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LmR90bBh3V7DLCPP method: DELETE response: proto: HTTP/2.0 @@ -2698,8 +2430,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 100.135167ms - - id: 75 + duration: 182.136916ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -2717,7 +2449,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Ftestaccdatasourcerole.matrix.com%2F method: PATCH response: @@ -2728,14 +2460,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64c125638bbb632f263bfae8","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e0a11320b2fc32cb4cfd23","name":"Role - Acceptance Test - testaccdatasourcerole","identifier":"https://testaccdatasourcerole.matrix.com/","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 151.048ms - - id: 76 + duration: 222.31425ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -2752,8 +2484,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.0-beta.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/64c125638bbb632f263bfae8 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a11320b2fc32cb4cfd23 method: DELETE response: proto: HTTP/2.0 @@ -2769,4 +2501,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 293.318625ms + duration: 207.330208ms diff --git a/test/data/recordings/TestAccDataSourceTenant.yaml b/test/data/recordings/TestAccDataSourceTenant.yaml index 148eeeeb..a8496713 100644 --- a/test/data/recordings/TestAccDataSourceTenant.yaml +++ b/test/data/recordings/TestAccDataSourceTenant.yaml @@ -6,20 +6,20 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 972 + content_length: 784 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"default_audience":"","default_directory":"","error_page":{"html":"\u003chtml\u003eError Page\u003c/html\u003e","show_log_link":false,"url":"https://mycompany.org/error"},"flags":{"universal_login":true,"disable_clickjack_protection_headers":true,"enable_public_signup_user_exists_error":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"disable_management_api_sms_obfuscation":false,"disable_fields_map_fix":false},"friendly_name":"My Test Tenant","picture_url":"https://mycompany.org/logo.png","support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","universal_login":{"colors":{"primary":"#0059d6","page_background":"#000000"}},"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"session_lifetime":720,"idle_session_lifetime":72,"sandbox_version":"16","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"session_cookie":{"mode":"non-persistent"}} + {"default_audience":"","default_directory":"","flags":{"disable_clickjack_protection_headers":true,"enable_public_signup_user_exists_error":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"disable_management_api_sms_obfuscation":false,"disable_fields_map_fix":false},"friendly_name":"My Test Tenant","picture_url":"https://mycompany.org/logo.png","support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","allowed_logout_urls":["https://mycompany.org/logoutCallback"],"session_lifetime":720,"idle_session_lifetime":72,"sandbox_version":"16","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"session_cookie":{"mode":"non-persistent"},"mtls":{"enable_endpoint_aliases":true}} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings method: PATCH response: @@ -30,34 +30,34 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"change_password":{"enabled":true,"html":"Change Password"},"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"error_page":{"html":"Error Page","show_log_link":false,"url":"https://mycompany.org/error"},"flags":{"allow_changing_enable_sso":false,"cannot_change_enforce_client_authentication_on_passwordless_start":true,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"enforce_client_authentication_on_passwordless_start":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"require_signed_request_object":false,"dashboard_new_onboarding":false,"mfa_show_factor_list_on_enrollment":true,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"MFA"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","universal_login":{"colors":{"primary":"#0059d6","page_background":"#000000"},"is_custom_theme_set":false,"is_custom_template_set":false},"session_cookie":{"mode":"non-persistent"}}' + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"acr_values_supported":["bar","foo"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"cannot_change_enforce_client_authentication_on_passwordless_start":true,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"enforce_client_authentication_on_passwordless_start":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"mtls":{"enable_endpoint_aliases":true},"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true},"is_custom_template_set":true,"identifier_first":false,"webauthn_platform_first_factor":false},"session_cookie":{"mode":"non-persistent"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 221.698459ms + duration: 213.028833ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 30 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"acr_values_supported":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings - method: GET + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -66,32 +66,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"change_password":{"enabled":true,"html":"Change Password"},"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"error_page":{"html":"Error Page","show_log_link":false,"url":"https://mycompany.org/error"},"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"require_signed_request_object":false,"dashboard_new_onboarding":false,"mfa_show_factor_list_on_enrollment":true,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"MFA"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","universal_login":{"colors":{"primary":"#0059d6","page_background":"#000000"}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["16"]}' + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"cannot_change_enforce_client_authentication_on_passwordless_start":true,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"enforce_client_authentication_on_passwordless_start":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"mtls":{"enable_endpoint_aliases":true},"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true},"is_custom_template_set":true,"identifier_first":false,"webauthn_platform_first_factor":false},"session_cookie":{"mode":"non-persistent"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.068834ms + duration: 252.536125ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings method: GET response: @@ -102,32 +101,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"change_password":{"enabled":true,"html":"Change Password"},"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"error_page":{"html":"Error Page","show_log_link":false,"url":"https://mycompany.org/error"},"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"require_signed_request_object":false,"dashboard_new_onboarding":false,"mfa_show_factor_list_on_enrollment":true,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"MFA"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","universal_login":{"colors":{"primary":"#0059d6","page_background":"#000000"}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["16"]}' + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"mtls":{"enable_endpoint_aliases":true},"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["18","16","12"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.970916ms + duration: 158.792084ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings method: GET response: @@ -138,32 +136,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"change_password":{"enabled":true,"html":"Change Password"},"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"error_page":{"html":"Error Page","show_log_link":false,"url":"https://mycompany.org/error"},"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"require_signed_request_object":false,"dashboard_new_onboarding":false,"mfa_show_factor_list_on_enrollment":true,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"MFA"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","universal_login":{"colors":{"primary":"#0059d6","page_background":"#000000"}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["16"]}' + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"mtls":{"enable_endpoint_aliases":true},"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["18","16","12"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.515583ms + duration: 161.735208ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings method: GET response: @@ -174,32 +171,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"change_password":{"enabled":true,"html":"Change Password"},"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"error_page":{"html":"Error Page","show_log_link":false,"url":"https://mycompany.org/error"},"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"require_signed_request_object":false,"dashboard_new_onboarding":false,"mfa_show_factor_list_on_enrollment":true,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"MFA"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","universal_login":{"colors":{"primary":"#0059d6","page_background":"#000000"}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["16"]}' + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"mtls":{"enable_endpoint_aliases":true},"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["18","16","12"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.831459ms + duration: 150.907583ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings method: GET response: @@ -210,32 +206,313 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"change_password":{"enabled":true,"html":"Change Password"},"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"error_page":{"html":"Error Page","show_log_link":false,"url":"https://mycompany.org/error"},"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"require_signed_request_object":false,"dashboard_new_onboarding":false,"mfa_show_factor_list_on_enrollment":true,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"MFA"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","universal_login":{"colors":{"primary":"#0059d6","page_background":"#000000"}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["16"]}' + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"mtls":{"enable_endpoint_aliases":true},"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["18","16","12"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 96.444917ms + duration: 167.485334ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"mtls":{"enable_endpoint_aliases":true},"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["18","16","12"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 176.999959ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"mtls":{"enable_endpoint_aliases":true},"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["18","16","12"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 160.033583ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 754 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"default_audience":"","default_directory":"","flags":{"disable_clickjack_protection_headers":true,"enable_public_signup_user_exists_error":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"disable_management_api_sms_obfuscation":false,"disable_fields_map_fix":false},"friendly_name":"My Test Tenant","picture_url":"https://mycompany.org/logo.png","support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","allowed_logout_urls":["https://mycompany.org/logoutCallback"],"session_lifetime":720,"sandbox_version":"16","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"session_cookie":{"mode":"non-persistent"},"acr_values_supported":["bar","foo"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"acr_values_supported":["bar","foo"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"cannot_change_enforce_client_authentication_on_passwordless_start":true,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"enforce_client_authentication_on_passwordless_start":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"mtls":{"enable_endpoint_aliases":true},"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true},"is_custom_template_set":true,"identifier_first":false,"webauthn_platform_first_factor":false},"session_cookie":{"mode":"non-persistent"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 176.605584ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 14 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"mtls":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"acr_values_supported":["bar","foo"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"cannot_change_enforce_client_authentication_on_passwordless_start":true,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"enforce_client_authentication_on_passwordless_start":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true},"is_custom_template_set":true,"identifier_first":false,"webauthn_platform_first_factor":false},"session_cookie":{"mode":"non-persistent"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 242.364583ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"acr_values_supported":["bar","foo"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["18","16","12"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 165.618083ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"acr_values_supported":["bar","foo"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["18","16","12"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 171.459459ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"acr_values_supported":["bar","foo"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["18","16","12"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 160.00625ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"acr_values_supported":["bar","foo"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["18","16","12"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 168.882625ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings method: GET response: @@ -246,10 +523,10 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"change_password":{"enabled":true,"html":"Change Password"},"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"error_page":{"html":"Error Page","show_log_link":false,"url":"https://mycompany.org/error"},"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"require_signed_request_object":false,"dashboard_new_onboarding":false,"mfa_show_factor_list_on_enrollment":true,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"MFA"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","universal_login":{"colors":{"primary":"#0059d6","page_background":"#000000"}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["16"]}' + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"acr_values_supported":["bar","foo"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["18","16","12"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 97.071167ms + duration: 161.006625ms diff --git a/test/data/recordings/TestAccDataSourceUser.yaml b/test/data/recordings/TestAccDataSourceUser.yaml index 1d936a47..a758491d 100644 --- a/test/data/recordings/TestAccDataSourceUser.yaml +++ b/test/data/recordings/TestAccDataSourceUser.yaml @@ -6,20 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Cthis-user-id-does-not-exist method: GET response: @@ -36,7 +35,7 @@ interactions: - application/json; charset=utf-8 status: 404 Not Found code: 404 - duration: 264.435375ms + duration: 214.967208ms - id: 1 request: proto: HTTP/1.1 @@ -55,7 +54,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers method: POST response: @@ -66,34 +65,34 @@ interactions: trailer: {} content_length: 324 uncompressed: false - body: '{"id":"64f34b6d2c9c1a3c4e754ca9","name":"Acceptance Test - testaccdatasourceuser","identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e0a35120b2fc32cb4d0051","name":"Acceptance Test - testaccdatasourceuser","identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 108.189542ms + duration: 195.32575ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 31 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"authorization_details":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/64f34b6d2c9c1a3c4e754ca9 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a35120b2fc32cb4d0051 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -102,34 +101,34 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64f34b6d2c9c1a3c4e754ca9","name":"Acceptance Test - testaccdatasourceuser","identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e0a35120b2fc32cb4d0051","name":"Acceptance Test - testaccdatasourceuser","identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 101.91525ms + duration: 200.35875ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 26 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"token_encryption":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccdatasourceuser - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a35120b2fc32cb4d0051 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -138,33 +137,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64f34b6d2c9c1a3c4e754ca9","name":"Acceptance Test - testaccdatasourceuser","identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e0a35120b2fc32cb4d0051","name":"Acceptance Test - testaccdatasourceuser","identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 95.821458ms + duration: 181.64775ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 117 + content_length: 29 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]} + {"proof_of_possession":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccdatasourceuser + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a35120b2fc32cb4d0051 method: PATCH response: proto: HTTP/2.0 @@ -174,33 +173,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64f34b6d2c9c1a3c4e754ca9","name":"Acceptance Test - testaccdatasourceuser","identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a35120b2fc32cb4d0051","name":"Acceptance Test - testaccdatasourceuser","identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.982875ms + duration: 186.175542ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccdatasourceuser + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a35120b2fc32cb4d0051 method: GET response: proto: HTTP/2.0 @@ -210,34 +208,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64f34b6d2c9c1a3c4e754ca9","name":"Acceptance Test - testaccdatasourceuser","identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a35120b2fc32cb4d0051","name":"Acceptance Test - testaccdatasourceuser","identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.397334ms + duration: 193.344042ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 88 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"name":"Test Owner testaccdatasourceuser","description":"Owner testaccdatasourceuser"} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccdatasourceuser + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -246,34 +243,34 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_bLLS74ONX2ilj1SP","name":"Test Owner testaccdatasourceuser","description":"Owner testaccdatasourceuser"}' + body: '{"id":"66e0a35120b2fc32cb4d0051","name":"Acceptance Test - testaccdatasourceuser","identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 119.691375ms + duration: 154.667834ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 117 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bLLS74ONX2ilj1SP - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccdatasourceuser + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -282,34 +279,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_bLLS74ONX2ilj1SP","name":"Test Owner testaccdatasourceuser","description":"Owner testaccdatasourceuser"}' + body: '{"id":"66e0a35120b2fc32cb4d0051","name":"Acceptance Test - testaccdatasourceuser","identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.465417ms + duration: 287.540625ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 96 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"name":"Test Admin testaccdatasourceuser","description":"Administrator testaccdatasourceuser"} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccdatasourceuser + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -318,34 +314,34 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_4gYmK3wdokLkRTVd","name":"Test Admin testaccdatasourceuser","description":"Administrator testaccdatasourceuser"}' + body: '{"id":"66e0a35120b2fc32cb4d0051","name":"Acceptance Test - testaccdatasourceuser","identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 168.151167ms + duration: 157.933667ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 88 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"name":"Test Owner testaccdatasourceuser","description":"Owner testaccdatasourceuser"} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_4gYmK3wdokLkRTVd - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles + method: POST response: proto: HTTP/2.0 proto_major: 2 @@ -354,70 +350,69 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_4gYmK3wdokLkRTVd","name":"Test Admin testaccdatasourceuser","description":"Administrator testaccdatasourceuser"}' + body: '{"id":"rol_VoVVTu34OMLI0VMi","name":"Test Owner testaccdatasourceuser","description":"Owner testaccdatasourceuser"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 222.325833ms + duration: 231.829167ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 443 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","email":"testaccdatasourceuser@acceptance.test.com","name":"Firstname Lastname","given_name":"Firstname","family_name":"Lastname","username":"testaccdatasourceuser","nickname":"testaccdatasourceuser","password":"passpass$12$12","user_metadata":{"baz":"qux","foo":"bar"},"app_metadata":{"baz":"qux","foo":"bar"},"picture":"https://www.example.com/picture.jpg"} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_VoVVTu34OMLI0VMi + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 610 - uncompressed: false - body: '{"created_at":"2023-09-02T14:49:19.312Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-09-02T14:49:19.312Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}' + content_length: -1 + uncompressed: true + body: '{"id":"rol_VoVVTu34OMLI0VMi","name":"Test Owner testaccdatasourceuser","description":"Owner testaccdatasourceuser"}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 362.578458ms + status: 200 OK + code: 200 + duration: 166.66225ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 96 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"name":"Test Admin testaccdatasourceuser","description":"Administrator testaccdatasourceuser"} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles + method: POST response: proto: HTTP/2.0 proto_major: 2 @@ -426,177 +421,174 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:49:19.312Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-09-02T14:49:19.312Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}' + body: '{"id":"rol_A0fZSzHOXfRgKYlh","name":"Test Admin testaccdatasourceuser","description":"Administrator testaccdatasourceuser"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.907792ms + duration: 164.637166ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 278 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"permissions":[{"resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","permission_name":"create:foo"},{"resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","permission_name":"read:foo"}]} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/permissions - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_A0fZSzHOXfRgKYlh + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2 - uncompressed: false - body: '{}' + content_length: -1 + uncompressed: true + body: '{"id":"rol_A0fZSzHOXfRgKYlh","name":"Test Admin testaccdatasourceuser","description":"Administrator testaccdatasourceuser"}' headers: Content-Type: - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 127.529459ms + status: 200 OK + code: 200 + duration: 166.8525ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 443 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","email":"testaccdatasourceuser@acceptance.test.com","name":"Firstname Lastname","given_name":"Firstname","family_name":"Lastname","username":"testaccdatasourceuser","nickname":"testaccdatasourceuser","password":"passpass$12$12","user_metadata":{"baz":"qux","foo":"bar"},"app_metadata":{"baz":"qux","foo":"bar"},"picture":"https://www.example.com/picture.jpg"} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/permissions?include_totals=true&page=0&per_page=100 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"permissions":[{"permission_name":"create:foo","description":"Can create Foo","resource_server_name":"Acceptance Test - testaccdatasourceuser","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]},{"permission_name":"read:foo","description":"Can read Foo","resource_server_name":"Acceptance Test - testaccdatasourceuser","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]}],"start":0,"limit":100,"total":2}' + content_length: 610 + uncompressed: false + body: '{"created_at":"2024-09-10T19:51:47.948Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2024-09-10T19:51:47.948Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}' headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 104.371375ms + status: 201 Created + code: 201 + duration: 330.070584ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 58 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"roles":["rol_4gYmK3wdokLkRTVd","rol_bLLS74ONX2ilj1SP"]} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles - method: POST + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-09-10T19:51:47.948Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2024-09-10T19:51:47.948Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 163.381542ms + status: 200 OK + code: 200 + duration: 176.7295ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 278 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"permissions":[{"resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","permission_name":"create:foo"},{"resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","permission_name":"read:foo"}]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles?include_totals=true&page=0&per_page=100 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/permissions + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"roles":[{"id":"rol_4gYmK3wdokLkRTVd","name":"Test Admin testaccdatasourceuser","description":"Administrator testaccdatasourceuser"},{"id":"rol_bLLS74ONX2ilj1SP","name":"Test Owner testaccdatasourceuser","description":"Owner testaccdatasourceuser"}],"start":0,"limit":100,"total":2}' + content_length: 2 + uncompressed: false + body: '{}' headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 104.487833ms + status: 201 Created + code: 201 + duration: 188.181667ms - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -606,69 +598,68 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:49:19.312Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-09-02T14:49:19.312Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}' + body: '{"permissions":[{"permission_name":"create:foo","description":"Can create Foo","resource_server_name":"Acceptance Test - testaccdatasourceuser","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]},{"permission_name":"read:foo","description":"Can read Foo","resource_server_name":"Acceptance Test - testaccdatasourceuser","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 152.829583ms + duration: 189.078875ms - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 58 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"roles":["rol_A0fZSzHOXfRgKYlh","rol_VoVVTu34OMLI0VMi"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles?include_totals=true&page=0&per_page=100 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"roles":[{"id":"rol_4gYmK3wdokLkRTVd","name":"Test Admin testaccdatasourceuser","description":"Administrator testaccdatasourceuser"},{"id":"rol_bLLS74ONX2ilj1SP","name":"Test Owner testaccdatasourceuser","description":"Owner testaccdatasourceuser"}],"start":0,"limit":100,"total":2}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 105.801083ms + status: 204 No Content + code: 204 + duration: 208.912875ms - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -678,32 +669,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[{"permission_name":"create:foo","description":"Can create Foo","resource_server_name":"Acceptance Test - testaccdatasourceuser","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]},{"permission_name":"read:foo","description":"Can read Foo","resource_server_name":"Acceptance Test - testaccdatasourceuser","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_A0fZSzHOXfRgKYlh","name":"Test Admin testaccdatasourceuser","description":"Administrator testaccdatasourceuser"},{"id":"rol_VoVVTu34OMLI0VMi","name":"Test Owner testaccdatasourceuser","description":"Owner testaccdatasourceuser"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.550834ms + duration: 166.889458ms - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser method: GET response: @@ -714,32 +704,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:49:19.312Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-09-02T14:49:19.312Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}' + body: '{"created_at":"2024-09-10T19:51:47.948Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2024-09-10T19:51:47.948Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 95.613ms + duration: 182.202333ms - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -750,32 +739,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_4gYmK3wdokLkRTVd","name":"Test Admin testaccdatasourceuser","description":"Administrator testaccdatasourceuser"},{"id":"rol_bLLS74ONX2ilj1SP","name":"Test Owner testaccdatasourceuser","description":"Owner testaccdatasourceuser"}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_A0fZSzHOXfRgKYlh","name":"Test Admin testaccdatasourceuser","description":"Administrator testaccdatasourceuser"},{"id":"rol_VoVVTu34OMLI0VMi","name":"Test Owner testaccdatasourceuser","description":"Owner testaccdatasourceuser"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 180.828542ms + duration: 365.078125ms - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -792,27 +780,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.315458ms + duration: 179.432292ms - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/64f34b6d2c9c1a3c4e754ca9 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser method: GET response: proto: HTTP/2.0 @@ -822,33 +809,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64f34b6d2c9c1a3c4e754ca9","name":"Acceptance Test - testaccdatasourceuser","identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"created_at":"2024-09-10T19:51:47.948Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2024-09-10T19:51:47.948Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 98.896ms + duration: 171.724792ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccdatasourceuser + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -858,33 +844,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64f34b6d2c9c1a3c4e754ca9","name":"Acceptance Test - testaccdatasourceuser","identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"roles":[{"id":"rol_A0fZSzHOXfRgKYlh","name":"Test Admin testaccdatasourceuser","description":"Administrator testaccdatasourceuser"},{"id":"rol_VoVVTu34OMLI0VMi","name":"Test Owner testaccdatasourceuser","description":"Owner testaccdatasourceuser"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 94.071292ms + duration: 181.350375ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bLLS74ONX2ilj1SP + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -894,33 +879,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_bLLS74ONX2ilj1SP","name":"Test Owner testaccdatasourceuser","description":"Owner testaccdatasourceuser"}' + body: '{"permissions":[{"permission_name":"create:foo","description":"Can create Foo","resource_server_name":"Acceptance Test - testaccdatasourceuser","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]},{"permission_name":"read:foo","description":"Can read Foo","resource_server_name":"Acceptance Test - testaccdatasourceuser","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.20075ms + duration: 188.864375ms - id: 25 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_4gYmK3wdokLkRTVd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a35120b2fc32cb4d0051 method: GET response: proto: HTTP/2.0 @@ -930,33 +914,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_4gYmK3wdokLkRTVd","name":"Test Admin testaccdatasourceuser","description":"Administrator testaccdatasourceuser"}' + body: '{"id":"66e0a35120b2fc32cb4d0051","name":"Acceptance Test - testaccdatasourceuser","identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.352042ms + duration: 160.889041ms - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccdatasourceuser method: GET response: proto: HTTP/2.0 @@ -966,33 +949,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:49:19.312Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-09-02T14:49:19.312Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}' + body: '{"id":"66e0a35120b2fc32cb4d0051","name":"Acceptance Test - testaccdatasourceuser","identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 90.062625ms + duration: 162.505375ms - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_VoVVTu34OMLI0VMi method: GET response: proto: HTTP/2.0 @@ -1002,33 +984,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[{"permission_name":"create:foo","description":"Can create Foo","resource_server_name":"Acceptance Test - testaccdatasourceuser","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]},{"permission_name":"read:foo","description":"Can read Foo","resource_server_name":"Acceptance Test - testaccdatasourceuser","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]}],"start":0,"limit":100,"total":2}' + body: '{"id":"rol_VoVVTu34OMLI0VMi","name":"Test Owner testaccdatasourceuser","description":"Owner testaccdatasourceuser"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.283084ms + duration: 176.316292ms - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_A0fZSzHOXfRgKYlh method: GET response: proto: HTTP/2.0 @@ -1038,32 +1019,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_4gYmK3wdokLkRTVd","name":"Test Admin testaccdatasourceuser","description":"Administrator testaccdatasourceuser"},{"id":"rol_bLLS74ONX2ilj1SP","name":"Test Owner testaccdatasourceuser","description":"Owner testaccdatasourceuser"}],"start":0,"limit":100,"total":2}' + body: '{"id":"rol_A0fZSzHOXfRgKYlh","name":"Test Admin testaccdatasourceuser","description":"Administrator testaccdatasourceuser"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 196.3685ms + duration: 174.111792ms - id: 29 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser method: GET response: @@ -1074,33 +1054,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:49:19.312Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-09-02T14:49:19.312Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}' + body: '{"created_at":"2024-09-10T19:51:47.948Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2024-09-10T19:51:47.948Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 102.311292ms + duration: 163.300042ms - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1110,33 +1089,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_4gYmK3wdokLkRTVd","name":"Test Admin testaccdatasourceuser","description":"Administrator testaccdatasourceuser"},{"id":"rol_bLLS74ONX2ilj1SP","name":"Test Owner testaccdatasourceuser","description":"Owner testaccdatasourceuser"}],"start":0,"limit":100,"total":2}' + body: '{"permissions":[{"permission_name":"create:foo","description":"Can create Foo","resource_server_name":"Acceptance Test - testaccdatasourceuser","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]},{"permission_name":"read:foo","description":"Can read Foo","resource_server_name":"Acceptance Test - testaccdatasourceuser","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.561625ms + duration: 180.913875ms - id: 31 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1146,32 +1124,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[{"permission_name":"create:foo","description":"Can create Foo","resource_server_name":"Acceptance Test - testaccdatasourceuser","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]},{"permission_name":"read:foo","description":"Can read Foo","resource_server_name":"Acceptance Test - testaccdatasourceuser","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_A0fZSzHOXfRgKYlh","name":"Test Admin testaccdatasourceuser","description":"Administrator testaccdatasourceuser"},{"id":"rol_VoVVTu34OMLI0VMi","name":"Test Owner testaccdatasourceuser","description":"Owner testaccdatasourceuser"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.229ms + duration: 207.062708ms - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser method: GET response: @@ -1182,32 +1159,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:49:19.312Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-09-02T14:49:19.312Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}' + body: '{"created_at":"2024-09-10T19:51:47.948Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2024-09-10T19:51:47.948Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.174ms + duration: 167.126584ms - id: 33 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -1218,32 +1194,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_4gYmK3wdokLkRTVd","name":"Test Admin testaccdatasourceuser","description":"Administrator testaccdatasourceuser"},{"id":"rol_bLLS74ONX2ilj1SP","name":"Test Owner testaccdatasourceuser","description":"Owner testaccdatasourceuser"}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_A0fZSzHOXfRgKYlh","name":"Test Admin testaccdatasourceuser","description":"Administrator testaccdatasourceuser"},{"id":"rol_VoVVTu34OMLI0VMi","name":"Test Owner testaccdatasourceuser","description":"Owner testaccdatasourceuser"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.786375ms + duration: 166.001084ms - id: 34 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -1260,7 +1235,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 132.7035ms + duration: 176.281708ms - id: 35 request: proto: HTTP/1.1 @@ -1273,13 +1248,13 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_4gYmK3wdokLkRTVd","rol_bLLS74ONX2ilj1SP"]} + {"roles":["rol_A0fZSzHOXfRgKYlh","rol_VoVVTu34OMLI0VMi"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles method: DELETE response: @@ -1296,7 +1271,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 162.959916ms + duration: 165.619ms - id: 36 request: proto: HTTP/1.1 @@ -1315,7 +1290,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/permissions method: DELETE response: @@ -1332,7 +1307,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 133.178458ms + duration: 183.498125ms - id: 37 request: proto: HTTP/1.1 @@ -1350,7 +1325,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser method: DELETE response: @@ -1367,7 +1342,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 186.220042ms + duration: 252.367708ms - id: 38 request: proto: HTTP/1.1 @@ -1386,8 +1361,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_4gYmK3wdokLkRTVd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_A0fZSzHOXfRgKYlh method: DELETE response: proto: HTTP/2.0 @@ -1403,7 +1378,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 145.882833ms + duration: 186.030125ms - id: 39 request: proto: HTTP/1.1 @@ -1422,8 +1397,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bLLS74ONX2ilj1SP + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_VoVVTu34OMLI0VMi method: DELETE response: proto: HTTP/2.0 @@ -1439,7 +1414,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.127583ms + duration: 183.888875ms - id: 40 request: proto: HTTP/1.1 @@ -1458,7 +1433,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccdatasourceuser method: PATCH response: @@ -1469,13 +1444,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"64f34b6d2c9c1a3c4e754ca9","name":"Acceptance Test - testaccdatasourceuser","identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e0a35120b2fc32cb4d0051","name":"Acceptance Test - testaccdatasourceuser","identifier":"https://uat.api.terraform-provider-auth0.com/testaccdatasourceuser","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 184.2685ms + duration: 217.768125ms - id: 41 request: proto: HTTP/1.1 @@ -1493,8 +1468,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/64f34b6d2c9c1a3c4e754ca9 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a35120b2fc32cb4d0051 method: DELETE response: proto: HTTP/2.0 @@ -1510,4 +1485,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 315.572542ms + duration: 210.729167ms diff --git a/test/data/recordings/TestAccResourceServer.yaml b/test/data/recordings/TestAccResourceServer.yaml index cfa841e3..6cf3868e 100644 --- a/test/data/recordings/TestAccResourceServer.yaml +++ b/test/data/recordings/TestAccResourceServer.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers method: POST response: @@ -30,14 +30,122 @@ interactions: trailer: {} content_length: 275 uncompressed: false - body: '{"id":"666aca6a536a6255861f3f60","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e1df5fd5fa0521310a8711","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 316.2225ms + duration: 154.73075ms - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 31 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"authorization_details":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e1df5fd5fa0521310a8711","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 140.377292ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 26 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"token_encryption":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e1df5fd5fa0521310a8711","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 137.695333ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 29 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"proof_of_possession":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e1df5fd5fa0521310a8711","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 150.6225ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -54,8 +162,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: GET response: proto: HTTP/2.0 @@ -65,14 +173,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e1df5fd5fa0521310a8711","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.490208ms - - id: 2 + duration: 167.76275ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -89,8 +197,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: GET response: proto: HTTP/2.0 @@ -100,14 +208,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e1df5fd5fa0521310a8711","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.85025ms - - id: 3 + duration: 151.680208ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -124,8 +232,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: GET response: proto: HTTP/2.0 @@ -135,14 +243,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e1df5fd5fa0521310a8711","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 317.3815ms - - id: 4 + duration: 158.347166ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -160,8 +268,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: PATCH response: proto: HTTP/2.0 @@ -171,14 +279,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.600042ms - - id: 5 + duration: 136.974042ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -195,8 +303,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: GET response: proto: HTTP/2.0 @@ -206,14 +314,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.737ms - - id: 6 + duration: 147.886875ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -230,8 +338,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: GET response: proto: HTTP/2.0 @@ -241,14 +349,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.168917ms - - id: 7 + duration: 133.374208ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -265,8 +373,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: GET response: proto: HTTP/2.0 @@ -276,33 +384,138 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.6035ms - - id: 8 + duration: 124.831458ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 234 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 145.848666ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 185.313083ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":true,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 137.492958ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2485 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"name":"Acceptance Test - TestAccResourceServer","signing_alg":"RS256","allow_offline_access":false,"token_lifetime":7200,"token_lifetime_for_web":3600,"skip_consent_for_verifiable_first_party_clients":true,"enforce_policies":false} + {"name":"Acceptance Test - TestAccResourceServer","signing_alg":"RS256","allow_offline_access":false,"token_lifetime":7200,"token_lifetime_for_web":3600,"skip_consent_for_verifiable_first_party_clients":true,"enforce_policies":false,"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"token_encryption":{"format":"compact-nested-jwe","encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","pem":"-----BEGIN CERTIFICATE-----\nMIIFWDCCA0ACCQDXqpBo3RUhkzANBgkqhkiG9w0BAQsFADBuMQswCQYDVQQGEwJl\nczEPMA0GA1UECAwGTWFkcmlkMQ8wDQYDVQQHDAZNYWRyaWQxDTALBgNVBAoMBE9r\ndGExDzANBgNVBAsMBkRYLUNEVDEdMBsGA1UEAwwURGV2ZWxvcGVyIEV4cGVyaWVu\nY2UwHhcNMjMwNTE2MDkzMzEzWhcNMzMwNTEzMDkzMzEzWjBuMQswCQYDVQQGEwJl\nczEPMA0GA1UECAwGTWFkcmlkMQ8wDQYDVQQHDAZNYWRyaWQxDTALBgNVBAoMBE9r\ndGExDzANBgNVBAsMBkRYLUNEVDEdMBsGA1UEAwwURGV2ZWxvcGVyIEV4cGVyaWVu\nY2UwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCupwRtoZtRk9qRaXD+\nYdtpM9dWo2vaprvNo+7J2YPlOtZB0zx7xykTEI5UMsESRwEATzVvepQzvswYBlca\n9k1nOcMBSmhkJPol9fbntWAbw4jvs/xXCtKCVOuiP2hffaeq1+6Kei8gXJKpytzN\nLPhbqpoNfqb87U4SM4pKFWSkbJSL0inUilrlc4sR9IGWs9jjCK21TpsUcb7GMZem\nv7MlZQfKQSFuTJgTs3aLJAiyF0yfYhCMbE/bFefRsTcZYnAEYfI3pLDAuZm4GjWD\nW0DCm43pO+jSRvEnbikVvFo6GAoTyUStifK44KVwhp4iPRkIrUCEMxK0mCMVJ9KF\ntaKWsFcJ5nQGJxBz6fj766Hl7SwuHvmSezzADF7/5kOAb8TnMfYsRFxak/iE/5s+\nOldEONHWuyVWuNIqEeI1DglscX02uK7jnuhUAyrCR0ayI3Ket+OvbviZIjiNyqfR\nchPuL7QyQl3CrWcTgZCqwjMzW2G9Y63k838mqL0gVhNPrH6QedOdSsnXbsjP+hS5\nPx2PRWqT+Z8otzZpfnD/pmtjoA3D93c1KJ+hFNlyIvD+R7go045l7OR5MKkgkOSO\nCXTqCSiq09XpZUQvwMtW516K5K/zOveai7V5DTmTHhCL5kthRYhA5WDfLWicG0ZP\nzl4p7gmxfmseQH/bHBSU2f+a+QIDAQABMA0GCSqGSIb3DQEBCwUAA4ICAQA7EOsl\nD5WQ+G6T0GhbyTmlC497aULzCdFfkMjlPN2MiVhje0G4u8C5zK6zEkmyWfRkqCIh\n54YLbaZu55MbvwbD64tTWqDMBmmna8HpulFcpi4RM9jGFMqx5/NSHBLqv/BC3UNt\n7c4y4YuLJkB07RljPv07k5sgf9/twF+v7UYVURfutoj0sjOImJMN66YVOTlNoGTS\nTOrDWByqc6eDHSFVU+0urrgos4iF5UN7ovfA8dLBiR7I4S5kVKSKO18UUB4qPIj0\nyMvTImrQXMepVtzaGae1V5BCyx37J12/STcUdE5urtSBjZyaugrTw+C+WHTcS829\nq5jOjmBJgFTIICz8IDTxPZIM+keVyodFOJKRtteT6vWnk8wq9k4U5HRxtdRKc52u\nd3RCO/B+RxbBLzFuKrM402LNe6j6+gek4boPkzfMbEIohJm1ukM4bATfP5gltsGe\n6UvXg7yaM+oW8jBPHK9w5azsqj+SuxqvARchHWRIrYAli5SePbUtmFKC/Lt+pKCK\nqxdawpr8EUrJXvHL3XoNHuGNbVuSm/ep+ge89UAbUEQ90A4w7fuSX5S+pr4nMOTi\nlNZtdWtIC9qcJ2Xmy5gZ+mAh3Wv+96IwQ9MWvtFEXquNNbvJdXVluUPVarNv3T1B\n8GMCiNZ0r6tknDJcnkjmRqiB8o/ExYXRnjHhGQ==\n-----END CERTIFICATE-----\n\n"}},"proof_of_possession":{"mechanism":"mtls","required":true}} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: PATCH response: proto: HTTP/2.0 @@ -312,14 +525,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false,"token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.294625ms - - id: 9 + duration: 161.4245ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -336,8 +549,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: GET response: proto: HTTP/2.0 @@ -347,14 +560,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false,"token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 273.781625ms - - id: 10 + duration: 130.074667ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -371,8 +584,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: GET response: proto: HTTP/2.0 @@ -382,14 +595,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false,"token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.940958ms - - id: 11 + duration: 138.517958ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -406,8 +619,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: GET response: proto: HTTP/2.0 @@ -417,14 +630,84 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false,"token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.622833ms - - id: 12 + duration: 145.628125ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false,"token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 156.264958ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false,"token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 140.803084ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -442,8 +725,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: PATCH response: proto: HTTP/2.0 @@ -453,14 +736,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false,"token_dialect":"access_token"}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false,"token_dialect":"access_token","token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.346375ms - - id: 13 + duration: 146.011333ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -477,8 +760,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: GET response: proto: HTTP/2.0 @@ -488,14 +771,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false,"token_dialect":"access_token"}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false,"token_dialect":"access_token","token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.52725ms - - id: 14 + duration: 142.157542ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -512,8 +795,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: GET response: proto: HTTP/2.0 @@ -523,14 +806,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false,"token_dialect":"access_token"}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false,"token_dialect":"access_token","token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.479083ms - - id: 15 + duration: 162.008666ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -547,8 +830,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: GET response: proto: HTTP/2.0 @@ -558,14 +841,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false,"token_dialect":"access_token"}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false,"token_dialect":"access_token","token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.494583ms - - id: 16 + duration: 140.610333ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -583,8 +866,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: PATCH response: proto: HTTP/2.0 @@ -594,14 +877,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true,"token_dialect":"access_token_authz"}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true,"token_dialect":"access_token_authz","token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.688709ms - - id: 17 + duration: 133.422209ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -618,8 +901,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: GET response: proto: HTTP/2.0 @@ -629,14 +912,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true,"token_dialect":"access_token_authz"}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true,"token_dialect":"access_token_authz","token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.751708ms - - id: 18 + duration: 138.799334ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -653,8 +936,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: GET response: proto: HTTP/2.0 @@ -664,14 +947,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true,"token_dialect":"access_token_authz"}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true,"token_dialect":"access_token_authz","token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.573916ms - - id: 19 + duration: 132.908ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -688,8 +971,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: GET response: proto: HTTP/2.0 @@ -699,14 +982,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true,"token_dialect":"access_token_authz"}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true,"token_dialect":"access_token_authz","token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.768583ms - - id: 20 + duration: 132.508791ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -724,8 +1007,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: PATCH response: proto: HTTP/2.0 @@ -735,14 +1018,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false,"token_dialect":"rfc9068_profile"}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false,"token_dialect":"rfc9068_profile","token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.90275ms - - id: 21 + duration: 162.828125ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -759,8 +1042,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: GET response: proto: HTTP/2.0 @@ -770,14 +1053,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false,"token_dialect":"rfc9068_profile"}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false,"token_dialect":"rfc9068_profile","token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.422916ms - - id: 22 + duration: 135.806125ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -794,8 +1077,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: GET response: proto: HTTP/2.0 @@ -805,14 +1088,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false,"token_dialect":"rfc9068_profile"}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false,"token_dialect":"rfc9068_profile","token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.9095ms - - id: 23 + duration: 141.257084ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -829,8 +1112,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: GET response: proto: HTTP/2.0 @@ -840,14 +1123,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false,"token_dialect":"rfc9068_profile"}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":false,"token_dialect":"rfc9068_profile","token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.4005ms - - id: 24 + duration: 137.185875ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -865,8 +1148,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: PATCH response: proto: HTTP/2.0 @@ -876,14 +1159,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true,"token_dialect":"rfc9068_profile_authz"}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true,"token_dialect":"rfc9068_profile_authz","token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.731459ms - - id: 25 + duration: 134.973084ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -900,8 +1183,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: GET response: proto: HTTP/2.0 @@ -911,14 +1194,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true,"token_dialect":"rfc9068_profile_authz"}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true,"token_dialect":"rfc9068_profile_authz","token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.249375ms - - id: 26 + duration: 131.025791ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -935,8 +1218,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: GET response: proto: HTTP/2.0 @@ -946,14 +1229,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true,"token_dialect":"rfc9068_profile_authz"}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true,"token_dialect":"rfc9068_profile_authz","token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.723584ms - - id: 27 + duration: 175.890708ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -970,8 +1253,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: GET response: proto: HTTP/2.0 @@ -981,14 +1264,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true,"token_dialect":"rfc9068_profile_authz"}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true,"token_dialect":"rfc9068_profile_authz","token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.839708ms - - id: 28 + duration: 157.487166ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1005,8 +1288,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: GET response: proto: HTTP/2.0 @@ -1016,14 +1299,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a536a6255861f3f60","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true,"token_dialect":"rfc9068_profile_authz"}' + body: '{"id":"66e1df5fd5fa0521310a8711","name":"Acceptance Test - TestAccResourceServer","identifier":"https://uat.api.terraform-provider-auth0.com/TestAccResourceServer","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":true,"token_lifetime":7200,"token_lifetime_for_web":3600,"signing_alg":"RS256","enforce_policies":true,"token_dialect":"rfc9068_profile_authz","token_encryption":{"encryption_key":{"name":"encryptkey","alg":"RSA-OAEP-256","thumbprint_sha256":"w0kIFOc-q7KKK-pa2Uj5b_Cl3f0hAgFeseLg8iEmWu0"},"format":"compact-nested-jwe"},"consent_policy":"transactional-authorization-with-mfa","authorization_details":[{"type":"payment"},{"type":"not-payment"}],"proof_of_possession":{"mechanism":"mtls","required":true}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.619792ms - - id: 29 + duration: 138.559375ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1040,8 +1323,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a536a6255861f3f60 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df5fd5fa0521310a8711 method: DELETE response: proto: HTTP/2.0 @@ -1057,4 +1340,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 344.850334ms + duration: 196.707875ms diff --git a/test/data/recordings/TestAccResourceServerScope.yaml b/test/data/recordings/TestAccResourceServerScope.yaml index a2cd633b..bf3f75b3 100644 --- a/test/data/recordings/TestAccResourceServerScope.yaml +++ b/test/data/recordings/TestAccResourceServerScope.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers method: POST response: @@ -30,33 +30,34 @@ interactions: trailer: {} content_length: 334 uncompressed: false - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 306.66875ms + duration: 185.992625ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 31 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + {"authorization_details":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -65,33 +66,34 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.235416ms + duration: 166.167125ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 26 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + {"token_encryption":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -100,33 +102,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 330.330209ms + duration: 204.623041ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 67 + content_length: 29 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"scopes":[{"value":"read:posts","description":"Can read posts"}]} + {"proof_of_possession":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: PATCH response: proto: HTTP/2.0 @@ -136,13 +138,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.975625ms + duration: 203.379209ms - id: 4 request: proto: HTTP/1.1 @@ -160,8 +162,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -171,13 +173,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.933666ms + duration: 174.591083ms - id: 5 request: proto: HTTP/1.1 @@ -195,8 +197,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: proto: HTTP/2.0 @@ -206,33 +208,34 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.295ms + duration: 154.494875ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 67 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + {"scopes":[{"value":"read:posts","description":"Can read posts"}]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope - method: GET + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -241,13 +244,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.074083ms + duration: 140.980083ms - id: 7 request: proto: HTTP/1.1 @@ -265,7 +268,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -276,13 +279,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.131875ms + duration: 290.486833ms - id: 8 request: proto: HTTP/1.1 @@ -300,8 +303,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: proto: HTTP/2.0 @@ -311,13 +314,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.154084ms + duration: 178.144208ms - id: 9 request: proto: HTTP/1.1 @@ -335,8 +338,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -346,13 +349,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.310792ms + duration: 187.133ms - id: 10 request: proto: HTTP/1.1 @@ -370,7 +373,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -381,13 +384,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.757292ms + duration: 146.836667ms - id: 11 request: proto: HTTP/1.1 @@ -405,8 +408,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -416,13 +419,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.3965ms + duration: 171.053375ms - id: 12 request: proto: HTTP/1.1 @@ -440,8 +443,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -451,13 +454,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.692042ms + duration: 133.18525ms - id: 13 request: proto: HTTP/1.1 @@ -475,8 +478,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: proto: HTTP/2.0 @@ -486,13 +489,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.852292ms + duration: 184.681208ms - id: 14 request: proto: HTTP/1.1 @@ -510,8 +513,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: proto: HTTP/2.0 @@ -521,13 +524,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.7075ms + duration: 195.809083ms - id: 15 request: proto: HTTP/1.1 @@ -545,8 +548,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -556,13 +559,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.582625ms + duration: 195.354875ms - id: 16 request: proto: HTTP/1.1 @@ -580,7 +583,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -591,13 +594,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.269625ms + duration: 144.499958ms - id: 17 request: proto: HTTP/1.1 @@ -615,8 +618,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -626,14 +629,119 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.159083ms + duration: 150.648458ms - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 152.582625ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 163.290125ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 134.44575ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -651,7 +759,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: PATCH response: @@ -662,14 +770,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.7305ms - - id: 19 + duration: 153.705709ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -686,7 +794,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -697,14 +805,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.104875ms - - id: 20 + duration: 162.258584ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -722,7 +830,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: PATCH response: @@ -733,14 +841,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 321.23525ms - - id: 21 + duration: 145.037291ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -757,8 +865,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -768,14 +876,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.4075ms - - id: 22 + duration: 142.253709ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -792,8 +900,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -803,14 +911,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.790875ms - - id: 23 + duration: 155.019084ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -827,8 +935,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -838,14 +946,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.278792ms - - id: 24 + duration: 134.425125ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -862,8 +970,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -873,14 +981,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.479542ms - - id: 25 + duration: 131.098ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -897,7 +1005,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -908,14 +1016,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.758042ms - - id: 26 + duration: 151.98425ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -933,7 +1041,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: PATCH response: @@ -944,14 +1052,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.709667ms - - id: 27 + duration: 146.450375ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -968,7 +1076,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -979,14 +1087,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.786292ms - - id: 28 + duration: 132.212542ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1003,8 +1111,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -1014,14 +1122,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.036333ms - - id: 29 + duration: 172.124125ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1038,8 +1146,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -1049,14 +1157,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.139417ms - - id: 30 + duration: 145.555667ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1073,8 +1181,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -1084,14 +1192,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.636416ms - - id: 31 + duration: 140.575625ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1108,7 +1216,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -1119,14 +1227,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.847959ms - - id: 32 + duration: 148.319584ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1143,8 +1251,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -1154,14 +1262,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.973708ms - - id: 33 + duration: 133.824375ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1178,8 +1286,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -1189,14 +1297,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.396125ms - - id: 34 + duration: 132.957125ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1213,7 +1321,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -1224,14 +1332,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.26575ms - - id: 35 + duration: 161.594834ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1248,7 +1356,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -1259,14 +1367,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.839083ms - - id: 36 + duration: 130.771708ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1284,7 +1392,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: PATCH response: @@ -1295,14 +1403,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.692834ms - - id: 37 + duration: 155.124417ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1319,7 +1427,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -1330,14 +1438,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.547666ms - - id: 38 + duration: 146.406709ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1354,8 +1462,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -1365,14 +1473,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.923208ms - - id: 39 + duration: 142.9215ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -1389,8 +1497,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -1400,14 +1508,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.95925ms - - id: 40 + duration: 135.600791ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -1424,8 +1532,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -1435,14 +1543,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 274.12825ms - - id: 41 + duration: 138.547875ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -1459,7 +1567,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -1470,14 +1578,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.339375ms - - id: 42 + duration: 172.123459ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -1494,8 +1602,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -1505,14 +1613,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.88225ms - - id: 43 + duration: 130.404458ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -1529,8 +1637,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -1540,14 +1648,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.962166ms - - id: 44 + duration: 137.72925ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -1564,7 +1672,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -1575,14 +1683,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.095958ms - - id: 45 + duration: 142.055375ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -1599,7 +1707,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -1610,14 +1718,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.5815ms - - id: 46 + duration: 155.572333ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -1635,7 +1743,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: PATCH response: @@ -1646,14 +1754,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.489166ms - - id: 47 + duration: 142.157417ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -1670,7 +1778,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -1681,14 +1789,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 322.57525ms - - id: 48 + duration: 131.494416ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -1705,8 +1813,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -1716,14 +1824,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.8095ms - - id: 49 + duration: 151.266542ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -1740,8 +1848,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -1751,14 +1859,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.118542ms - - id: 50 + duration: 139.697458ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -1775,8 +1883,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -1786,14 +1894,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.0485ms - - id: 51 + duration: 138.931125ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -1810,7 +1918,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -1821,14 +1929,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.3505ms - - id: 52 + duration: 157.187875ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -1845,7 +1953,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -1856,14 +1964,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.28725ms - - id: 53 + duration: 156.6005ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -1880,8 +1988,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -1891,14 +1999,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.120542ms - - id: 54 + duration: 160.589083ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -1915,8 +2023,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -1926,14 +2034,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.640375ms - - id: 55 + duration: 136.644417ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -1950,8 +2058,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: proto: HTTP/2.0 @@ -1961,14 +2069,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.510625ms - - id: 56 + duration: 161.108ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -1985,7 +2093,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -1996,14 +2104,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.911708ms - - id: 57 + duration: 161.987125ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2020,8 +2128,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -2031,14 +2139,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.476583ms - - id: 58 + duration: 149.159166ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2055,7 +2163,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -2066,14 +2174,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts","description":""}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.567166ms - - id: 59 + duration: 142.895333ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -2091,7 +2199,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: PATCH response: @@ -2102,14 +2210,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.808792ms - - id: 60 + duration: 169.361917ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -2126,7 +2234,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -2137,14 +2245,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.620667ms - - id: 61 + duration: 174.870459ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -2162,7 +2270,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: PATCH response: @@ -2173,14 +2281,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.443667ms - - id: 62 + duration: 220.374625ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -2197,8 +2305,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -2208,14 +2316,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.859792ms - - id: 63 + duration: 132.516875ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -2232,8 +2340,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -2243,14 +2351,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.084041ms - - id: 64 + duration: 152.37975ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -2267,8 +2375,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -2278,14 +2386,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.09ms - - id: 65 + duration: 218.539292ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -2302,8 +2410,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -2313,14 +2421,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.788041ms - - id: 66 + duration: 139.95525ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -2337,8 +2445,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -2348,14 +2456,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.202167ms - - id: 67 + duration: 144.499833ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -2372,8 +2480,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -2383,14 +2491,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.322583ms - - id: 68 + duration: 156.683959ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -2407,8 +2515,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -2418,14 +2526,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.273417ms - - id: 69 + duration: 155.932959ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -2442,8 +2550,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -2453,14 +2561,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.032208ms - - id: 70 + duration: 131.06775ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -2477,7 +2585,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -2488,14 +2596,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.631667ms - - id: 71 + duration: 163.614875ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -2513,7 +2621,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: PATCH response: @@ -2524,14 +2632,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.431416ms - - id: 72 + duration: 150.104583ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -2548,7 +2656,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -2559,14 +2667,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.073875ms - - id: 73 + duration: 145.877375ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -2583,8 +2691,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -2594,14 +2702,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 271.212792ms - - id: 74 + duration: 140.073916ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -2618,7 +2726,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -2629,14 +2737,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.98925ms - - id: 75 + duration: 155.310917ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -2653,7 +2761,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -2664,14 +2772,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.874125ms - - id: 76 + duration: 169.290042ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -2688,8 +2796,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -2699,14 +2807,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.835583ms - - id: 77 + duration: 134.565792ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -2723,7 +2831,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -2734,14 +2842,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.434791ms - - id: 78 + duration: 365.174958ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -2758,8 +2866,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -2769,14 +2877,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.146458ms - - id: 79 + duration: 153.053375ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -2793,8 +2901,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -2804,14 +2912,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.1445ms - - id: 80 + duration: 140.141042ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -2828,7 +2936,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -2839,14 +2947,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.151459ms - - id: 81 + duration: 142.1365ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -2863,7 +2971,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -2874,14 +2982,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.226625ms - - id: 82 + duration: 359.408708ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -2898,7 +3006,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -2909,14 +3017,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.703875ms - - id: 83 + duration: 163.804917ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -2933,8 +3041,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -2944,14 +3052,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.935583ms - - id: 84 + duration: 134.840208ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -2968,8 +3076,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -2979,14 +3087,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 327.174708ms - - id: 85 + duration: 130.253167ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -3003,8 +3111,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -3014,14 +3122,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 316.342375ms - - id: 86 + duration: 164.429583ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -3038,7 +3146,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -3049,14 +3157,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.265458ms - - id: 87 + duration: 136.632916ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -3073,7 +3181,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -3084,14 +3192,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.267375ms - - id: 88 + duration: 158.377584ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -3108,7 +3216,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -3119,14 +3227,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.152292ms - - id: 89 + duration: 167.860959ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -3143,8 +3251,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: GET response: proto: HTTP/2.0 @@ -3154,14 +3262,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.369666ms - - id: 90 + duration: 160.938417ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -3178,7 +3286,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -3189,14 +3297,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"},{"value":"write:posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.843ms - - id: 91 + duration: 136.947333ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -3214,7 +3322,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: PATCH response: @@ -3225,14 +3333,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 358.117375ms - - id: 92 + duration: 158.766125ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -3249,7 +3357,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: GET response: @@ -3260,14 +3368,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts from API"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 346.416958ms - - id: 93 + duration: 135.352917ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -3285,7 +3393,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: PATCH response: @@ -3296,14 +3404,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 349.288834ms - - id: 94 + duration: 165.640958ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -3321,7 +3429,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscope method: PATCH response: @@ -3332,14 +3440,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6a2d7462be72c2a5dd","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df2ea2ceee03f5bdad1b","name":"Acceptance Test - testaccresourceserverscope","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscope","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.453958ms - - id: 95 + duration: 148.003917ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -3356,8 +3464,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6a2d7462be72c2a5dd + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df2ea2ceee03f5bdad1b method: DELETE response: proto: HTTP/2.0 @@ -3373,4 +3481,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 327.832708ms + duration: 204.742584ms diff --git a/test/data/recordings/TestAccResourceServerScopes.yaml b/test/data/recordings/TestAccResourceServerScopes.yaml index 2c4f5acb..b959d7d0 100644 --- a/test/data/recordings/TestAccResourceServerScopes.yaml +++ b/test/data/recordings/TestAccResourceServerScopes.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers method: POST response: @@ -30,14 +30,122 @@ interactions: trailer: {} content_length: 336 uncompressed: false - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 330.142708ms + duration: 160.374917ms - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 31 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"authorization_details":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 145.928125ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 26 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"token_encryption":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 179.603542ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 29 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"proof_of_possession":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 145.866042ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -54,8 +162,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -65,14 +173,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 335.224542ms - - id: 2 + duration: 126.724375ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -89,7 +197,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -100,14 +208,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 319.3155ms - - id: 3 + duration: 150.064708ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -125,7 +233,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: PATCH response: @@ -136,14 +244,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.682625ms - - id: 4 + duration: 150.967916ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -160,7 +268,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -171,14 +279,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.789125ms - - id: 5 + duration: 136.59075ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -195,7 +303,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -206,14 +314,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.887875ms - - id: 6 + duration: 143.745375ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -230,8 +338,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -241,14 +349,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 273.705416ms - - id: 7 + duration: 143.84575ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -265,7 +373,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -276,14 +384,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.655083ms - - id: 8 + duration: 188.175125ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -300,8 +408,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -311,14 +419,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.849709ms - - id: 9 + duration: 168.864916ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -335,7 +443,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -346,14 +454,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"read:posts","description":"Can read posts"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.93025ms - - id: 10 + duration: 153.977125ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -371,7 +479,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: PATCH response: @@ -382,14 +490,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.004417ms - - id: 11 + duration: 180.126083ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -406,8 +514,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -417,14 +525,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.933709ms - - id: 12 + duration: 126.19975ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -441,8 +549,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -452,14 +560,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.592458ms - - id: 13 + duration: 140.893041ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -476,8 +584,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -487,14 +595,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.109875ms - - id: 14 + duration: 129.577208ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -511,8 +619,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -522,14 +630,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.9475ms - - id: 15 + duration: 132.014667ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -546,7 +654,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -557,14 +665,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.732291ms - - id: 16 + duration: 150.894792ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -582,7 +690,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: PATCH response: @@ -593,14 +701,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.710125ms - - id: 17 + duration: 138.627542ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -617,7 +725,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -628,14 +736,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.346834ms - - id: 18 + duration: 126.01ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -652,8 +760,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -663,14 +771,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.754625ms - - id: 19 + duration: 168.534291ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -687,8 +795,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -698,14 +806,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.695666ms - - id: 20 + duration: 150.810125ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -722,8 +830,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -733,14 +841,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.70825ms - - id: 21 + duration: 209.981375ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -757,7 +865,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -768,14 +876,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.56175ms - - id: 22 + duration: 128.859459ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -792,8 +900,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -803,14 +911,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.974042ms - - id: 23 + duration: 222.644917ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -827,8 +935,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -838,14 +946,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.563958ms - - id: 24 + duration: 143.743ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -862,7 +970,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -873,14 +981,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.541083ms - - id: 25 + duration: 159.610584ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -898,7 +1006,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: PATCH response: @@ -909,14 +1017,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.125ms - - id: 26 + duration: 156.202334ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -933,7 +1041,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -944,14 +1052,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.489667ms - - id: 27 + duration: 148.132375ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -968,8 +1076,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -979,14 +1087,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.044042ms - - id: 28 + duration: 144.342875ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1003,8 +1111,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -1014,14 +1122,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.483125ms - - id: 29 + duration: 143.15575ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1038,8 +1146,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -1049,14 +1157,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 273.955084ms - - id: 30 + duration: 130.49475ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1073,7 +1181,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -1084,14 +1192,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.131791ms - - id: 31 + duration: 156.812333ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1108,8 +1216,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -1119,14 +1227,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.993625ms - - id: 32 + duration: 171.251042ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1143,8 +1251,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -1154,14 +1262,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.404541ms - - id: 33 + duration: 147.467459ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1178,8 +1286,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: proto: HTTP/2.0 @@ -1189,14 +1297,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.985166ms - - id: 34 + duration: 164.731208ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1213,8 +1321,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -1224,14 +1332,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.715375ms - - id: 35 + duration: 152.064416ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1249,7 +1357,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: PATCH response: @@ -1260,14 +1368,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 327.625ms - - id: 36 + duration: 226.017584ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1284,8 +1392,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -1295,14 +1403,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.871084ms - - id: 37 + duration: 153.853625ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1319,8 +1427,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -1330,14 +1438,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.921916ms - - id: 38 + duration: 145.959708ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1354,8 +1462,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -1365,14 +1473,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 270.156292ms - - id: 39 + duration: 129.472959ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -1389,8 +1497,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -1400,14 +1508,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.052708ms - - id: 40 + duration: 147.784125ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -1424,8 +1532,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -1435,14 +1543,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.659333ms - - id: 41 + duration: 163.183917ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -1459,8 +1567,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -1470,14 +1578,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.783583ms - - id: 42 + duration: 298.637834ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -1494,8 +1602,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -1505,14 +1613,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.923333ms - - id: 43 + duration: 147.268208ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -1529,8 +1637,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -1540,14 +1648,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.662792ms - - id: 44 + duration: 135.745209ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -1564,7 +1672,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -1575,14 +1683,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.095125ms - - id: 45 + duration: 136.157917ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -1600,7 +1708,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: PATCH response: @@ -1611,14 +1719,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.512208ms - - id: 46 + duration: 166.251292ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -1635,7 +1743,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -1646,14 +1754,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.87625ms - - id: 47 + duration: 156.855833ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -1670,7 +1778,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -1681,14 +1789,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.640667ms - - id: 48 + duration: 145.256917ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -1706,7 +1814,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: PATCH response: @@ -1717,14 +1825,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.28725ms - - id: 49 + duration: 139.8095ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -1741,7 +1849,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -1752,14 +1860,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.320875ms - - id: 50 + duration: 146.007916ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -1776,8 +1884,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -1787,14 +1895,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.013541ms - - id: 51 + duration: 136.462166ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -1811,7 +1919,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -1822,14 +1930,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.518875ms - - id: 52 + duration: 129.84175ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -1846,7 +1954,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -1857,14 +1965,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 272.923917ms - - id: 53 + duration: 138.743459ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -1881,8 +1989,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -1892,14 +2000,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.200416ms - - id: 54 + duration: 162.964958ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -1916,8 +2024,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -1927,14 +2035,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.432833ms - - id: 55 + duration: 135.685333ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -1951,8 +2059,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -1962,14 +2070,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.238834ms - - id: 56 + duration: 140.581416ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -1986,7 +2094,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -1997,14 +2105,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.909917ms - - id: 57 + duration: 165.748792ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2021,7 +2129,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -2032,14 +2140,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.572417ms - - id: 58 + duration: 146.321166ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2056,8 +2164,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -2067,14 +2175,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.6915ms - - id: 59 + duration: 192.11425ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -2091,8 +2199,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -2102,14 +2210,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.602209ms - - id: 60 + duration: 161.42675ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -2126,8 +2234,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -2137,14 +2245,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.368958ms - - id: 61 + duration: 165.650708ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -2161,8 +2269,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -2172,14 +2280,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.329167ms - - id: 62 + duration: 148.874583ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -2196,7 +2304,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -2207,14 +2315,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.009208ms - - id: 63 + duration: 189.367292ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -2231,7 +2339,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -2242,14 +2350,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.229792ms - - id: 64 + duration: 164.595958ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -2266,8 +2374,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -2277,14 +2385,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 376.682541ms - - id: 65 + duration: 155.518208ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -2301,8 +2409,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: GET response: proto: HTTP/2.0 @@ -2312,14 +2420,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:appointments","description":"Ability to create appointments"},{"value":"read:appointments","description":"Ability to read appointments"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.694083ms - - id: 66 + duration: 180.887583ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -2337,8 +2445,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: PATCH response: proto: HTTP/2.0 @@ -2348,14 +2456,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.644917ms - - id: 67 + duration: 161.463583ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -2372,7 +2480,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -2383,14 +2491,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.051167ms - - id: 68 + duration: 155.50075ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -2408,7 +2516,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: PATCH response: @@ -2419,14 +2527,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.268334ms - - id: 69 + duration: 164.41475ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -2443,7 +2551,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: GET response: @@ -2454,14 +2562,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 272.241459ms - - id: 70 + duration: 139.196583ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -2479,7 +2587,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccresourceserverscopes method: PATCH response: @@ -2490,14 +2598,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"666aca6ab24f7fb0f997d1eb","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e1df75d5fa0521310a884d","name":"Acceptance Test - testaccresourceserverscopes","identifier":"https://uat.api.terraform-provider-auth0.com/testaccresourceserverscopes","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.05175ms - - id: 71 + duration: 152.089125ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -2514,8 +2622,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/666aca6ab24f7fb0f997d1eb + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e1df75d5fa0521310a884d method: DELETE response: proto: HTTP/2.0 @@ -2531,4 +2639,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 391.352375ms + duration: 180.0465ms diff --git a/test/data/recordings/TestAccRolePermission.yaml b/test/data/recordings/TestAccRolePermission.yaml index bf974039..fb87c69e 100644 --- a/test/data/recordings/TestAccRolePermission.yaml +++ b/test/data/recordings/TestAccRolePermission.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers method: POST response: @@ -30,34 +30,34 @@ interactions: trailer: {} content_length: 324 uncompressed: false - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 548.503375ms + duration: 199.172583ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 31 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"authorization_details":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a0dd6b56ed0a73fbb311 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -66,32 +66,138 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 218.795ms + duration: 181.976833ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 26 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"token_encryption":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 227.255875ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 29 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"proof_of_possession":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 163.664ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 158.417166ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -102,14 +208,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.979542ms - - id: 3 + duration: 156.530875ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -127,7 +233,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: PATCH response: @@ -138,32 +244,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 137.512625ms - - id: 4 + duration: 167.789834ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -174,14 +279,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.230083ms - - id: 5 + duration: 189.916708ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -199,7 +304,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles method: POST response: @@ -210,33 +315,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 723.0085ms - - id: 6 + duration: 171.885959ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -246,14 +350,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.064586917s - - id: 7 + duration: 167.72975ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -271,8 +375,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions method: POST response: proto: HTTP/2.0 @@ -288,27 +392,26 @@ interactions: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 460.534833ms - - id: 8 + duration: 167.151ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -324,27 +427,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 225.202ms - - id: 9 + duration: 185.939333ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -354,33 +456,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 218.070708ms - - id: 10 + duration: 184.281292ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -396,27 +497,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 273.138708ms - - id: 11 + duration: 204.317625ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -432,27 +532,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 235.117209ms - - id: 12 + duration: 170.772791ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -462,33 +561,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.59675ms - - id: 13 + duration: 163.527041ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -504,27 +602,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.712542ms - - id: 14 + duration: 365.947125ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -540,27 +637,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 266.381667ms - - id: 15 + duration: 202.276125ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a0dd6b56ed0a73fbb311 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 method: GET response: proto: HTTP/2.0 @@ -570,32 +666,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 235.185375ms - - id: 16 + duration: 150.616042ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -606,33 +701,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.051875ms - - id: 17 + duration: 161.535583ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -642,33 +736,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 482.882667ms - - id: 18 + duration: 198.607375ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -684,27 +777,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 241.235167ms - - id: 19 + duration: 228.310084ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -714,33 +806,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 245.925583ms - - id: 20 + duration: 153.577875ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -756,27 +847,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 500.522791ms - - id: 21 + duration: 168.278709ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -792,27 +882,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 455.191833ms - - id: 22 + duration: 174.641209ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a0dd6b56ed0a73fbb311 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 method: GET response: proto: HTTP/2.0 @@ -822,32 +911,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.479625ms - - id: 23 + duration: 186.974042ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -858,33 +946,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 466.659542ms - - id: 24 + duration: 156.940459ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -894,33 +981,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.866542ms - - id: 25 + duration: 154.973708ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -936,8 +1022,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.342958ms - - id: 26 + duration: 176.112958ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -955,8 +1041,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions method: POST response: proto: HTTP/2.0 @@ -972,27 +1058,26 @@ interactions: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 200.919167ms - - id: 27 + duration: 175.269ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1008,27 +1093,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 178.0155ms - - id: 28 + duration: 175.205958ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -1038,33 +1122,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 268.415916ms - - id: 29 + duration: 190.563166ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1080,27 +1163,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 242.998167ms - - id: 30 + duration: 177.324084ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1116,27 +1198,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 496.33875ms - - id: 31 + duration: 168.678125ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -1146,33 +1227,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 461.261875ms - - id: 32 + duration: 195.395208ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1188,27 +1268,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.210542ms - - id: 33 + duration: 339.980625ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1224,27 +1303,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 571.019084ms - - id: 34 + duration: 183.85225ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a0dd6b56ed0a73fbb311 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 method: GET response: proto: HTTP/2.0 @@ -1254,32 +1332,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 217.583917ms - - id: 35 + duration: 195.91925ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -1290,33 +1367,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 486.394625ms - - id: 36 + duration: 371.230125ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -1326,33 +1402,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.096042ms - - id: 37 + duration: 173.237917ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1368,27 +1443,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 254.094667ms - - id: 38 + duration: 185.199917ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1404,27 +1478,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.472583ms - - id: 39 + duration: 181.3655ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -1434,33 +1507,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 518.929833ms - - id: 40 + duration: 203.773334ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1476,27 +1548,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 402.787417ms - - id: 41 + duration: 165.409708ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1512,27 +1583,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.174333ms - - id: 42 + duration: 177.179958ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a0dd6b56ed0a73fbb311 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1542,33 +1612,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"permissions":[{"permission_name":"create:foo","description":"Can create Foo","resource_server_name":"Acceptance Test - testaccrolepermission","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission"},{"permission_name":"read:foo","description":"Can read Foo","resource_server_name":"Acceptance Test - testaccrolepermission","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission"}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 210.398959ms - - id: 43 + duration: 171.564875ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1584,27 +1653,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 260.673ms - - id: 44 + duration: 184.923ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 method: GET response: proto: HTTP/2.0 @@ -1614,33 +1682,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 999.760666ms - - id: 45 + duration: 199.1495ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: proto: HTTP/2.0 @@ -1650,33 +1717,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 534.847625ms - - id: 46 + duration: 167.872666ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -1686,33 +1752,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 619.162333ms - - id: 47 + duration: 155.403958ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -1722,33 +1787,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[{"permission_name":"create:foo","description":"Can create Foo","resource_server_name":"Acceptance Test - testaccrolepermission","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission"},{"permission_name":"read:foo","description":"Can read Foo","resource_server_name":"Acceptance Test - testaccrolepermission","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission"}],"start":0,"limit":100,"total":2}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 333.142042ms - - id: 48 + duration: 157.697ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1764,27 +1828,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.738083ms - - id: 49 + duration: 236.927541ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1800,8 +1863,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.084167ms - - id: 50 + duration: 181.277ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -1819,8 +1882,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions method: DELETE response: proto: HTTP/2.0 @@ -1836,8 +1899,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 202.037416ms - - id: 51 + duration: 190.088125ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -1855,8 +1918,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions method: DELETE response: proto: HTTP/2.0 @@ -1872,27 +1935,26 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 249.629208ms - - id: 52 + duration: 169.138292ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -1902,33 +1964,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 251.402792ms - - id: 53 + duration: 163.89125ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1944,27 +2005,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 315.279583ms - - id: 54 + duration: 218.565292ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1980,27 +2040,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 458.891792ms - - id: 55 + duration: 182.519458ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a0dd6b56ed0a73fbb311 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 method: GET response: proto: HTTP/2.0 @@ -2010,32 +2069,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 229.111ms - - id: 56 + duration: 162.773333ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -2046,33 +2104,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 266.840125ms - - id: 57 + duration: 166.327ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -2082,33 +2139,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.739417ms - - id: 58 + duration: 169.465083ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -2118,33 +2174,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 270.177125ms - - id: 59 + duration: 163.800792ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2160,27 +2215,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 263.797292ms - - id: 60 + duration: 174.82075ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2196,27 +2250,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 231.991375ms - - id: 61 + duration: 153.686ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a0dd6b56ed0a73fbb311 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 method: GET response: proto: HTTP/2.0 @@ -2226,32 +2279,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 318.923ms - - id: 62 + duration: 169.032ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -2262,33 +2314,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 580.829042ms - - id: 63 + duration: 169.704292ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -2298,33 +2349,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 363.122083ms - - id: 64 + duration: 168.497584ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -2334,33 +2384,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 267.138417ms - - id: 65 + duration: 157.833667ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2376,27 +2425,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.409333ms - - id: 66 + duration: 165.703333ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2412,27 +2460,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.062042ms - - id: 67 + duration: 172.899625ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a0dd6b56ed0a73fbb311 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 method: GET response: proto: HTTP/2.0 @@ -2442,32 +2489,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 205.695833ms - - id: 68 + duration: 154.168ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -2478,33 +2524,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 248.462417ms - - id: 69 + duration: 208.448958ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -2514,33 +2559,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.346625ms - - id: 70 + duration: 186.851291ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -2550,33 +2594,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 251.141125ms - - id: 71 + duration: 172.015917ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2592,27 +2635,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.548667ms - - id: 72 + duration: 170.610916ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2628,27 +2670,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 550.246292ms - - id: 73 + duration: 167.395209ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a0dd6b56ed0a73fbb311 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 method: GET response: proto: HTTP/2.0 @@ -2658,32 +2699,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 446.256041ms - - id: 74 + duration: 160.005209ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -2694,33 +2734,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.71575ms - - id: 75 + duration: 157.673417ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -2730,14 +2769,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 265.373792ms - - id: 76 + duration: 171.730625ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -2755,8 +2794,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions method: POST response: proto: HTTP/2.0 @@ -2772,27 +2811,26 @@ interactions: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 319.019209ms - - id: 77 + duration: 169.947792ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2808,27 +2846,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.977625ms - - id: 78 + duration: 184.749459ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a0dd6b56ed0a73fbb311 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 method: GET response: proto: HTTP/2.0 @@ -2838,32 +2875,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 224.990166ms - - id: 79 + duration: 170.571375ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -2874,33 +2910,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 664.126917ms - - id: 80 + duration: 164.570917ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -2910,33 +2945,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 384.999458ms - - id: 81 + duration: 175.0275ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2952,27 +2986,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 267.4145ms - - id: 82 + duration: 184.636333ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2988,27 +3021,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 183.337459ms - - id: 83 + duration: 181.580042ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -3018,33 +3050,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 490.327584ms - - id: 84 + duration: 168.525791ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3060,27 +3091,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 241.199125ms - - id: 85 + duration: 159.671792ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3096,27 +3126,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.130292ms - - id: 86 + duration: 156.654417ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3132,27 +3161,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 151.294583ms - - id: 87 + duration: 171.977375ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -3162,33 +3190,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 421.625417ms - - id: 88 + duration: 184.0505ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3204,27 +3231,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 218.922042ms - - id: 89 + duration: 175.53875ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3240,27 +3266,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 463.437584ms - - id: 90 + duration: 181.985167ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a0dd6b56ed0a73fbb311 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 method: GET response: proto: HTTP/2.0 @@ -3270,32 +3295,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 458.757417ms - - id: 91 + duration: 178.724875ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -3306,33 +3330,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 474.242583ms - - id: 92 + duration: 155.252875ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -3342,33 +3365,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 874.494ms - - id: 93 + duration: 169.564667ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3384,27 +3406,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 249.221416ms - - id: 94 + duration: 176.575708ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3420,27 +3441,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 186.867208ms - - id: 95 + duration: 161.369083ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3456,27 +3476,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.249666ms - - id: 96 + duration: 190.511708ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -3486,33 +3505,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 395.880792ms - - id: 97 + duration: 159.510417ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3528,27 +3546,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 323.85225ms - - id: 98 + duration: 184.796292ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3564,27 +3581,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 246.485375ms - - id: 99 + duration: 165.409375ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -3594,33 +3610,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 265.43025ms - - id: 100 + duration: 162.312875ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3636,27 +3651,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.305625ms - - id: 101 + duration: 176.995292ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3672,27 +3686,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 262.906625ms - - id: 102 + duration: 168.219791ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a0dd6b56ed0a73fbb311 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 method: GET response: proto: HTTP/2.0 @@ -3702,32 +3715,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 273.031083ms - - id: 103 + duration: 165.550917ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: GET response: @@ -3738,33 +3750,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 274.795666ms - - id: 104 + duration: 160.954ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -3774,33 +3785,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 466.223041ms - - id: 105 + duration: 206.069333ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3816,27 +3826,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 422.885959ms - - id: 106 + duration: 173.448625ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3852,27 +3861,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 267.858083ms - - id: 107 + duration: 164.782125ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3888,27 +3896,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 705.812333ms - - id: 108 + duration: 439.314334ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: GET response: proto: HTTP/2.0 @@ -3918,33 +3925,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_tDDoPsi2ALG6791q","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' + body: '{"id":"rol_U39rR4DEeTdEDFk2","name":"Acceptance Test - testaccrolepermission","description":"Acceptance Test Role - testaccrolepermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.823492584s - - id: 109 + duration: 161.428208ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3960,27 +3966,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 315.7805ms - - id: 110 + duration: 166.301958ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3996,8 +4001,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 252.84325ms - - id: 111 + duration: 166.782875ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -4015,8 +4020,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions method: DELETE response: proto: HTTP/2.0 @@ -4032,8 +4037,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 143.734042ms - - id: 112 + duration: 172.080417ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -4051,8 +4056,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions method: DELETE response: proto: HTTP/2.0 @@ -4068,8 +4073,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 659.560875ms - - id: 113 + duration: 187.379875ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -4087,8 +4092,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q/permissions + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2/permissions method: DELETE response: proto: HTTP/2.0 @@ -4104,8 +4109,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 437.023292ms - - id: 114 + duration: 171.318709ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -4123,8 +4128,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tDDoPsi2ALG6791q + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_U39rR4DEeTdEDFk2 method: DELETE response: proto: HTTP/2.0 @@ -4140,8 +4145,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 525.484083ms - - id: 115 + duration: 201.503ms + - id: 118 request: proto: HTTP/1.1 proto_major: 1 @@ -4159,7 +4164,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermission method: PATCH response: @@ -4170,14 +4175,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a0dd6b56ed0a73fbb311","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e0a15ee5d56cfb7a9a4fe0","name":"Acceptance Test - testaccrolepermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 346.718208ms - - id: 116 + duration: 216.438ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -4194,8 +4199,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a0dd6b56ed0a73fbb311 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a15ee5d56cfb7a9a4fe0 method: DELETE response: proto: HTTP/2.0 @@ -4211,4 +4216,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 666.088083ms + duration: 226.337667ms diff --git a/test/data/recordings/TestAccRolePermissions.yaml b/test/data/recordings/TestAccRolePermissions.yaml index 6f7375c4..e4b3d920 100644 --- a/test/data/recordings/TestAccRolePermissions.yaml +++ b/test/data/recordings/TestAccRolePermissions.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers method: POST response: @@ -30,34 +30,34 @@ interactions: trailer: {} content_length: 326 uncompressed: false - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 217.721875ms + duration: 206.59275ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 31 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"authorization_details":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a11fe37302224f7215f0 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -66,32 +66,138 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 209.393375ms + duration: 180.220666ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 26 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"token_encryption":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 164.862375ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 29 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"proof_of_possession":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 167.080583ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 167.170292ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -102,14 +208,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 254.296125ms - - id: 3 + duration: 161.56425ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -127,7 +233,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: PATCH response: @@ -138,32 +244,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 468.056209ms - - id: 4 + duration: 157.58975ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -174,14 +279,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 327.870208ms - - id: 5 + duration: 346.8325ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -199,7 +304,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles method: POST response: @@ -210,33 +315,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 268.325709ms - - id: 6 + duration: 177.004167ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -246,14 +350,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 441.669875ms - - id: 7 + duration: 183.526ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -271,8 +375,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions method: POST response: proto: HTTP/2.0 @@ -288,27 +392,26 @@ interactions: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 451.269041ms - - id: 8 + duration: 181.09225ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -324,27 +427,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 207.965292ms - - id: 9 + duration: 205.111291ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -354,33 +456,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 224.358209ms - - id: 10 + duration: 175.4005ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -396,27 +497,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.480792ms - - id: 11 + duration: 182.322833ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -432,27 +532,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.932084ms - - id: 12 + duration: 172.649333ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -462,33 +561,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 178.036ms - - id: 13 + duration: 193.116375ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -504,27 +602,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.161292ms - - id: 14 + duration: 186.414292ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -540,27 +637,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 224.768ms - - id: 15 + duration: 165.5585ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a11fe37302224f7215f0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a method: GET response: proto: HTTP/2.0 @@ -570,32 +666,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 157.857667ms - - id: 16 + duration: 168.420542ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -606,33 +701,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 242.740625ms - - id: 17 + duration: 165.988792ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -642,33 +736,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 401.721667ms - - id: 18 + duration: 172.64275ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -684,27 +777,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.4965ms - - id: 19 + duration: 182.025458ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -714,33 +806,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 662.944375ms - - id: 20 + duration: 179.985583ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -756,27 +847,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 479.532333ms - - id: 21 + duration: 179.673958ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -792,27 +882,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 219.788166ms - - id: 22 + duration: 184.766125ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a11fe37302224f7215f0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a method: GET response: proto: HTTP/2.0 @@ -822,32 +911,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 180.214083ms - - id: 23 + duration: 156.781875ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -858,33 +946,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 262.478916ms - - id: 24 + duration: 155.112333ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -894,33 +981,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 273.7455ms - - id: 25 + duration: 178.181125ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -936,8 +1022,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.9365ms - - id: 26 + duration: 176.132125ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -955,8 +1041,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions method: POST response: proto: HTTP/2.0 @@ -972,27 +1058,26 @@ interactions: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 242.518209ms - - id: 27 + duration: 175.639542ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1008,27 +1093,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 478.313625ms - - id: 28 + duration: 169.229542ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -1038,33 +1122,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 448.287292ms - - id: 29 + duration: 204.791167ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1080,27 +1163,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 340.391333ms - - id: 30 + duration: 231.013125ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1116,27 +1198,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 151.625125ms - - id: 31 + duration: 165.066ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -1146,33 +1227,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 169.126583ms - - id: 32 + duration: 159.679375ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1188,27 +1268,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 229.321834ms - - id: 33 + duration: 190.558458ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1224,27 +1303,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.109125ms - - id: 34 + duration: 173.468625ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a11fe37302224f7215f0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a method: GET response: proto: HTTP/2.0 @@ -1254,32 +1332,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 169.795959ms - - id: 35 + duration: 145.907459ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -1290,33 +1367,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 179.804208ms - - id: 36 + duration: 160.252375ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -1326,33 +1402,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 409.483042ms - - id: 37 + duration: 175.160625ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1368,27 +1443,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 261.797333ms - - id: 38 + duration: 172.56775ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -1398,33 +1472,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 499.271125ms - - id: 39 + duration: 160.570917ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1440,27 +1513,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 704.895208ms - - id: 40 + duration: 191.644917ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1476,27 +1548,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 338.259125ms - - id: 41 + duration: 161.935416ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a11fe37302224f7215f0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a method: GET response: proto: HTTP/2.0 @@ -1506,32 +1577,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.699209ms - - id: 42 + duration: 175.454084ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -1542,33 +1612,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 567.361167ms - - id: 43 + duration: 164.634958ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -1578,33 +1647,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 261.753792ms - - id: 44 + duration: 162.246208ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1620,8 +1688,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 324.489ms - - id: 45 + duration: 175.031041ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -1639,8 +1707,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions method: DELETE response: proto: HTTP/2.0 @@ -1656,27 +1724,26 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 222.918042ms - - id: 46 + duration: 180.191083ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1692,27 +1759,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 249.419958ms - - id: 47 + duration: 179.206875ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -1722,33 +1788,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 430.414209ms - - id: 48 + duration: 169.35475ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1764,27 +1829,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.906ms - - id: 49 + duration: 186.200875ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1800,27 +1864,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 483.287125ms - - id: 50 + duration: 192.91225ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -1830,33 +1893,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.707375ms - - id: 51 + duration: 201.874958ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1872,27 +1934,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 248.551125ms - - id: 52 + duration: 203.021834ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1908,27 +1969,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 260.244ms - - id: 53 + duration: 184.255084ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a11fe37302224f7215f0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a method: GET response: proto: HTTP/2.0 @@ -1938,32 +1998,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 262.142458ms - - id: 54 + duration: 165.591042ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -1974,33 +2033,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 488.873042ms - - id: 55 + duration: 170.113833ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -2010,33 +2068,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 411.7575ms - - id: 56 + duration: 169.932209ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2052,27 +2109,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 203.575875ms - - id: 57 + duration: 167.344875ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -2082,33 +2138,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 413.612333ms - - id: 58 + duration: 161.8755ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2124,27 +2179,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 250.763834ms - - id: 59 + duration: 179.916ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2160,27 +2214,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 874.429833ms - - id: 60 + duration: 171.131083ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a11fe37302224f7215f0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a method: GET response: proto: HTTP/2.0 @@ -2190,33 +2243,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.138446625s - - id: 61 + duration: 158.269542ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2232,26 +2284,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.159109917s - - id: 62 + duration: 177.415125ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -2262,33 +2313,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.382708ms - - id: 63 + duration: 179.818916ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -2298,33 +2348,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 168.118833ms - - id: 64 + duration: 168.055375ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -2334,33 +2383,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.586875ms - - id: 65 + duration: 184.3205ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2376,27 +2424,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 221.687625ms - - id: 66 + duration: 202.972333ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2412,8 +2459,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 246.258042ms - - id: 67 + duration: 176.45525ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -2431,8 +2478,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions method: DELETE response: proto: HTTP/2.0 @@ -2448,27 +2495,26 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 241.787958ms - - id: 68 + duration: 200.58025ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -2478,33 +2524,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.396417ms - - id: 69 + duration: 184.999334ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2520,27 +2565,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 524.127833ms - - id: 70 + duration: 215.306584ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2556,27 +2600,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 435.80225ms - - id: 71 + duration: 168.381542ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a11fe37302224f7215f0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a method: GET response: proto: HTTP/2.0 @@ -2586,32 +2629,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 267.823958ms - - id: 72 + duration: 150.837917ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -2622,33 +2664,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.562708ms - - id: 73 + duration: 156.109083ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -2658,33 +2699,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 319.636042ms - - id: 74 + duration: 178.335334ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -2694,33 +2734,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 212.85775ms - - id: 75 + duration: 146.955292ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2736,27 +2775,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 415.723542ms - - id: 76 + duration: 173.131542ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2772,27 +2810,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.172166ms - - id: 77 + duration: 162.48625ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a11fe37302224f7215f0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a method: GET response: proto: HTTP/2.0 @@ -2802,32 +2839,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 194.19725ms - - id: 78 + duration: 159.505ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -2838,33 +2874,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 152.698209ms - - id: 79 + duration: 213.968125ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -2874,33 +2909,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 168.562416ms - - id: 80 + duration: 159.37925ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -2910,33 +2944,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 178.271916ms - - id: 81 + duration: 150.189834ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2952,27 +2985,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 218.131208ms - - id: 82 + duration: 172.858666ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2988,27 +3020,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 208.29525ms - - id: 83 + duration: 173.262125ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a11fe37302224f7215f0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a method: GET response: proto: HTTP/2.0 @@ -3018,32 +3049,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 185.073083ms - - id: 84 + duration: 176.418ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -3054,33 +3084,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 242.74675ms - - id: 85 + duration: 154.111417ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -3090,33 +3119,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 193.838958ms - - id: 86 + duration: 179.187291ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -3126,33 +3154,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 251.937667ms - - id: 87 + duration: 171.007166ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3168,27 +3195,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 469.478292ms - - id: 88 + duration: 169.26475ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3204,27 +3230,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.705208ms - - id: 89 + duration: 185.74525ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a11fe37302224f7215f0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a method: GET response: proto: HTTP/2.0 @@ -3234,32 +3259,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 260.361291ms - - id: 90 + duration: 177.296625ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -3270,33 +3294,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 203.702083ms - - id: 91 + duration: 157.453333ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -3306,14 +3329,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.595709ms - - id: 92 + duration: 163.867834ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -3331,8 +3354,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions method: POST response: proto: HTTP/2.0 @@ -3348,27 +3371,26 @@ interactions: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 246.619125ms - - id: 93 + duration: 182.876042ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3384,8 +3406,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 487.822708ms - - id: 94 + duration: 182.082917ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -3403,8 +3425,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions method: POST response: proto: HTTP/2.0 @@ -3420,27 +3442,26 @@ interactions: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 307.674333ms - - id: 95 + duration: 160.395ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3456,27 +3477,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 272.533125ms - - id: 96 + duration: 166.650417ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a11fe37302224f7215f0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a method: GET response: proto: HTTP/2.0 @@ -3486,32 +3506,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.069660209s - - id: 97 + duration: 175.953041ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -3522,33 +3541,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 348.909417ms - - id: 98 + duration: 173.432916ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -3558,33 +3576,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 180.830792ms - - id: 99 + duration: 181.366292ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3600,27 +3617,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 214.988709ms - - id: 100 + duration: 177.037833ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3636,27 +3652,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 242.676ms - - id: 101 + duration: 174.455083ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3672,27 +3687,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 258.063208ms - - id: 102 + duration: 168.982834ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -3702,33 +3716,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.640792ms - - id: 103 + duration: 154.63775ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3744,27 +3757,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 455.532833ms - - id: 104 + duration: 160.476375ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3780,27 +3792,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 602.950959ms - - id: 105 + duration: 180.431084ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a11fe37302224f7215f0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a method: GET response: proto: HTTP/2.0 @@ -3810,32 +3821,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 234.951584ms - - id: 106 + duration: 193.889792ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -3846,33 +3856,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 697.454917ms - - id: 107 + duration: 161.199208ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -3882,33 +3891,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 127.977042ms - - id: 108 + duration: 185.448709ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3924,27 +3932,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 179.238459ms - - id: 109 + duration: 164.796667ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3960,27 +3967,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 167.066334ms - - id: 110 + duration: 187.33375ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3996,27 +4002,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 200.677666ms - - id: 111 + duration: 155.61675ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -4026,33 +4031,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 224.481375ms - - id: 112 + duration: 150.469208ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4068,27 +4072,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 273.21625ms - - id: 113 + duration: 165.822083ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4104,27 +4107,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 244.431375ms - - id: 114 + duration: 202.099166ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -4134,33 +4136,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 234.246459ms - - id: 115 + duration: 162.128291ms + - id: 118 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4176,27 +4177,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.680709ms - - id: 116 + duration: 181.162041ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4212,27 +4212,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 415.334667ms - - id: 117 + duration: 181.368417ms + - id: 120 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a11fe37302224f7215f0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a method: GET response: proto: HTTP/2.0 @@ -4242,32 +4241,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 261.997083ms - - id: 118 + duration: 180.827375ms + - id: 121 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: GET response: @@ -4278,33 +4276,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.71175ms - - id: 119 + duration: 166.956958ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -4314,33 +4311,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 807.873334ms - - id: 120 + duration: 237.49875ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4356,27 +4352,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 221.401417ms - - id: 121 + duration: 200.112584ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4392,27 +4387,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 418.947083ms - - id: 122 + duration: 174.29275ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4428,27 +4422,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 326.600959ms - - id: 123 + duration: 176.594042ms + - id: 126 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: GET response: proto: HTTP/2.0 @@ -4458,33 +4451,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_YxRKY2rMVqtVrP9i","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' + body: '{"id":"rol_z8kdaUBlYOuGDwi6","name":"Acceptance Test - testaccrolepermissions","description":"Acceptance Test Role - testaccrolepermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 656.309833ms - - id: 124 + duration: 191.683917ms + - id: 127 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4500,27 +4492,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 749.886792ms - - id: 125 + duration: 175.287375ms + - id: 128 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/users?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/users?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4536,8 +4527,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 326.714584ms - - id: 126 + duration: 168.352791ms + - id: 129 request: proto: HTTP/1.1 proto_major: 1 @@ -4555,8 +4546,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions method: DELETE response: proto: HTTP/2.0 @@ -4572,8 +4563,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 267.061833ms - - id: 127 + duration: 164.367584ms + - id: 130 request: proto: HTTP/1.1 proto_major: 1 @@ -4591,8 +4582,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions method: DELETE response: proto: HTTP/2.0 @@ -4608,8 +4599,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 510.407334ms - - id: 128 + duration: 200.574125ms + - id: 131 request: proto: HTTP/1.1 proto_major: 1 @@ -4627,8 +4618,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i/permissions + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6/permissions method: DELETE response: proto: HTTP/2.0 @@ -4644,8 +4635,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 242.295875ms - - id: 129 + duration: 160.336083ms + - id: 132 request: proto: HTTP/1.1 proto_major: 1 @@ -4663,8 +4654,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_YxRKY2rMVqtVrP9i + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_z8kdaUBlYOuGDwi6 method: DELETE response: proto: HTTP/2.0 @@ -4680,8 +4671,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 202.264042ms - - id: 130 + duration: 184.977542ms + - id: 133 request: proto: HTTP/1.1 proto_major: 1 @@ -4699,7 +4690,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccrolepermissions method: PATCH response: @@ -4710,14 +4701,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a11fe37302224f7215f0","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e0a19f20b2fc32cb4cfd9a","name":"Acceptance Test - testaccrolepermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccrolepermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 362.210292ms - - id: 131 + duration: 215.446167ms + - id: 134 request: proto: HTTP/1.1 proto_major: 1 @@ -4734,8 +4725,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a11fe37302224f7215f0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a19f20b2fc32cb4cfd9a method: DELETE response: proto: HTTP/2.0 @@ -4751,4 +4742,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 336.619208ms + duration: 196.320833ms diff --git a/test/data/recordings/TestAccTenant.yaml b/test/data/recordings/TestAccTenant.yaml deleted file mode 100644 index 671f5f61..00000000 --- a/test/data/recordings/TestAccTenant.yaml +++ /dev/null @@ -1,532 +0,0 @@ ---- -version: 2 -interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 52 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"session_lifetime":168,"idle_session_lifetime":72} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_locales":["en"],"flags":{"allow_changing_enable_sso":false,"cannot_change_enforce_client_authentication_on_passwordless_start":true,"disable_impersonation":true,"enable_sso":true,"enforce_client_authentication_on_passwordless_start":true,"universal_login":true,"revoke_refresh_token_grant":false,"dashboard_new_onboarding":false,"disable_clickjack_protection_headers":false},"idle_session_lifetime":72,"sandbox_version":"18","session_lifetime":168,"oidc_logout":{"rp_logout_end_session_endpoint_discovery":true}}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 424.132167ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_locales":["en"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"enable_sso":true,"universal_login":true,"revoke_refresh_token_grant":false,"dashboard_new_onboarding":false,"disable_clickjack_protection_headers":false},"idle_session_lifetime":72,"sandbox_version":"18","session_lifetime":168,"oidc_logout":{"rp_logout_end_session_endpoint_discovery":true},"sandbox_versions_available":["18","16"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 384.138167ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_locales":["en"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"enable_sso":true,"universal_login":true,"revoke_refresh_token_grant":false,"dashboard_new_onboarding":false,"disable_clickjack_protection_headers":false},"idle_session_lifetime":72,"sandbox_version":"18","session_lifetime":168,"oidc_logout":{"rp_logout_end_session_endpoint_discovery":true},"sandbox_versions_available":["18","16"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 364.18175ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_locales":["en"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"enable_sso":true,"universal_login":true,"revoke_refresh_token_grant":false,"dashboard_new_onboarding":false,"disable_clickjack_protection_headers":false},"idle_session_lifetime":72,"sandbox_version":"18","session_lifetime":168,"oidc_logout":{"rp_logout_end_session_endpoint_discovery":true},"sandbox_versions_available":["18","16"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 377.435625ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 904 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"default_audience":"","default_directory":"","flags":{"disable_clickjack_protection_headers":true,"enable_public_signup_user_exists_error":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"disable_management_api_sms_obfuscation":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":false},"friendly_name":"My Test Tenant","picture_url":"https://mycompany.org/logo.png","support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","allowed_logout_urls":["https://mycompany.org/logoutCallback"],"session_lifetime":720,"sandbox_version":"16","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"session_cookie":{"mode":"non-persistent"},"sessions":{"oidc_logout_prompt_enabled":false},"allow_organization_name_in_authentication_api":false,"customize_mfa_in_postlogin_action":false} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"cannot_change_enforce_client_authentication_on_passwordless_start":true,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"enforce_client_authentication_on_passwordless_start":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"dashboard_new_onboarding":false,"mfa_show_factor_list_on_enrollment":false,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":false},"oidc_logout":{"rp_logout_end_session_endpoint_discovery":true},"allow_organization_name_in_authentication_api":false,"customize_mfa_in_postlogin_action":false,"session_cookie":{"mode":"non-persistent"}}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 425.377708ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"dashboard_new_onboarding":false,"mfa_show_factor_list_on_enrollment":false,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":false},"oidc_logout":{"rp_logout_end_session_endpoint_discovery":true},"allow_organization_name_in_authentication_api":false,"customize_mfa_in_postlogin_action":false,"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["18","16"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 924.337917ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"dashboard_new_onboarding":false,"mfa_show_factor_list_on_enrollment":false,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":false},"oidc_logout":{"rp_logout_end_session_endpoint_discovery":true},"allow_organization_name_in_authentication_api":false,"customize_mfa_in_postlogin_action":false,"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["18","16"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 376.414042ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"dashboard_new_onboarding":false,"mfa_show_factor_list_on_enrollment":false,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":false},"oidc_logout":{"rp_logout_end_session_endpoint_discovery":true},"allow_organization_name_in_authentication_api":false,"customize_mfa_in_postlogin_action":false,"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["18","16"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 532.126333ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 806 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"default_directory":"","flags":{"disable_clickjack_protection_headers":false,"enable_public_signup_user_exists_error":true,"use_scope_descriptions_for_consent":false,"no_disclose_enterprise_connections":false,"disable_management_api_sms_obfuscation":true,"disable_fields_map_fix":true,"mfa_show_factor_list_on_enrollment":true},"friendly_name":"My Test Tenant","picture_url":"https://mycompany.org/logo.png","support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","allowed_logout_urls":[],"session_lifetime":720,"sandbox_version":"16","default_redirection_uri":"","enabled_locales":["de","fr"],"session_cookie":{"mode":"persistent"},"sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"allowed_logout_urls":[],"default_audience":"","default_directory":"","enabled_locales":["de","fr"],"flags":{"allow_changing_enable_sso":false,"cannot_change_enforce_client_authentication_on_passwordless_start":true,"disable_impersonation":true,"disable_management_api_sms_obfuscation":true,"enable_public_signup_user_exists_error":true,"enable_sso":true,"enforce_client_authentication_on_passwordless_start":true,"universal_login":true,"use_scope_descriptions_for_consent":false,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":true,"dashboard_new_onboarding":false,"mfa_show_factor_list_on_enrollment":true,"disable_clickjack_protection_headers":false},"friendly_name":"My Test Tenant","idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"oidc_logout":{"rp_logout_end_session_endpoint_discovery":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"session_cookie":{"mode":"persistent"}}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 416.516125ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"allowed_logout_urls":[],"default_audience":"","default_directory":"","enabled_locales":["de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":true,"enable_public_signup_user_exists_error":true,"enable_sso":true,"universal_login":true,"use_scope_descriptions_for_consent":false,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":true,"dashboard_new_onboarding":false,"mfa_show_factor_list_on_enrollment":true,"disable_clickjack_protection_headers":false},"friendly_name":"My Test Tenant","idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"oidc_logout":{"rp_logout_end_session_endpoint_discovery":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"session_cookie":{"mode":"persistent"},"sandbox_versions_available":["18","16"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 369.060625ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"allowed_logout_urls":[],"default_audience":"","default_directory":"","enabled_locales":["de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":true,"enable_public_signup_user_exists_error":true,"enable_sso":true,"universal_login":true,"use_scope_descriptions_for_consent":false,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":true,"dashboard_new_onboarding":false,"mfa_show_factor_list_on_enrollment":true,"disable_clickjack_protection_headers":false},"friendly_name":"My Test Tenant","idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"oidc_logout":{"rp_logout_end_session_endpoint_discovery":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"session_cookie":{"mode":"persistent"},"sandbox_versions_available":["18","16"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 386.368708ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"allowed_logout_urls":[],"default_audience":"","default_directory":"","enabled_locales":["de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":true,"enable_public_signup_user_exists_error":true,"enable_sso":true,"universal_login":true,"use_scope_descriptions_for_consent":false,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":true,"dashboard_new_onboarding":false,"mfa_show_factor_list_on_enrollment":true,"disable_clickjack_protection_headers":false},"friendly_name":"My Test Tenant","idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"oidc_logout":{"rp_logout_end_session_endpoint_discovery":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"session_cookie":{"mode":"persistent"},"sandbox_versions_available":["18","16"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 370.906667ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 25 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"session_lifetime":168} - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"allowed_logout_urls":[],"default_audience":"","default_directory":"","enabled_locales":["de","fr"],"flags":{"allow_changing_enable_sso":false,"cannot_change_enforce_client_authentication_on_passwordless_start":true,"disable_impersonation":true,"disable_management_api_sms_obfuscation":true,"enable_public_signup_user_exists_error":true,"enable_sso":true,"enforce_client_authentication_on_passwordless_start":true,"universal_login":true,"use_scope_descriptions_for_consent":false,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":true,"dashboard_new_onboarding":false,"mfa_show_factor_list_on_enrollment":true,"disable_clickjack_protection_headers":false},"friendly_name":"My Test Tenant","idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":168,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"oidc_logout":{"rp_logout_end_session_endpoint_discovery":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"session_cookie":{"mode":"persistent"}}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 429.25775ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"allowed_logout_urls":[],"default_audience":"","default_directory":"","enabled_locales":["de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":true,"enable_public_signup_user_exists_error":true,"enable_sso":true,"universal_login":true,"use_scope_descriptions_for_consent":false,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":true,"dashboard_new_onboarding":false,"mfa_show_factor_list_on_enrollment":true,"disable_clickjack_protection_headers":false},"friendly_name":"My Test Tenant","idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":168,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"oidc_logout":{"rp_logout_end_session_endpoint_discovery":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"session_cookie":{"mode":"persistent"},"sandbox_versions_available":["18","16"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 372.1175ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.6.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"allowed_logout_urls":[],"default_audience":"","default_directory":"","enabled_locales":["de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":true,"enable_public_signup_user_exists_error":true,"enable_sso":true,"universal_login":true,"use_scope_descriptions_for_consent":false,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":true,"dashboard_new_onboarding":false,"mfa_show_factor_list_on_enrollment":true,"disable_clickjack_protection_headers":false},"friendly_name":"My Test Tenant","idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":168,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"oidc_logout":{"rp_logout_end_session_endpoint_discovery":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"session_cookie":{"mode":"persistent"},"sandbox_versions_available":["18","16"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 417.443458ms diff --git a/test/data/recordings/TestAccTenantDefaults.yaml b/test/data/recordings/TestAccTenantDefaults.yaml index 496aba19..54b722cf 100644 --- a/test/data/recordings/TestAccTenantDefaults.yaml +++ b/test/data/recordings/TestAccTenantDefaults.yaml @@ -1,147 +1,180 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: 111 - uncompressed: false - body: '{"change_password":{},"enabled_locales":["en"],"error_page":{},"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"enable_sso":true,"universal_login":true,"revoke_refresh_token_grant":false,"disable_clickjack_protection_headers":false},"guardian_mfa_page":{},"idle_session_lifetime":72,"sandbox_version":"12","session_lifetime":168,"universal_login":{},"sandbox_versions_available":["12"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"change_password":{},"guardian_mfa_page":{},"error_page":{},"universal_login":{},"session_lifetime":168,"idle_session_lifetime":72} - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: 111 - uncompressed: false - body: '{"change_password":{},"enabled_locales":["en"],"error_page":{},"flags":{"allow_changing_enable_sso":false,"cannot_change_enforce_client_authentication_on_passwordless_start":true,"disable_impersonation":true,"enable_sso":true,"enforce_client_authentication_on_passwordless_start":true,"universal_login":true,"revoke_refresh_token_grant":false,"disable_clickjack_protection_headers":false},"guardian_mfa_page":{},"idle_session_lifetime":72,"sandbox_version":"12","session_lifetime":168,"universal_login":{}}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: 111 - uncompressed: false - body: '{"change_password":{},"enabled_locales":["en"],"error_page":{},"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"enable_sso":true,"universal_login":true,"revoke_refresh_token_grant":false,"disable_clickjack_protection_headers":false},"guardian_mfa_page":{},"idle_session_lifetime":72,"sandbox_version":"12","session_lifetime":168,"universal_login":{},"sandbox_versions_available":["12"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: 111 - uncompressed: false - body: '{"change_password":{},"enabled_locales":["en"],"error_page":{},"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"enable_sso":true,"universal_login":true,"revoke_refresh_token_grant":false,"disable_clickjack_protection_headers":false},"guardian_mfa_page":{},"idle_session_lifetime":72,"sandbox_version":"12","session_lifetime":168,"universal_login":{},"sandbox_versions_available":["12"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_locales":["en"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"enable_sso":true,"universal_login":true,"revoke_refresh_token_grant":false,"dashboard_new_onboarding":false,"disable_clickjack_protection_headers":false},"idle_session_lifetime":72,"sandbox_version":"18","session_lifetime":168,"oidc_logout":{"rp_logout_end_session_endpoint_discovery":true},"sandbox_versions_available":["18","16","12"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 208.427583ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 52 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"session_lifetime":168,"idle_session_lifetime":72} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_locales":["en"],"flags":{"allow_changing_enable_sso":false,"cannot_change_enforce_client_authentication_on_passwordless_start":true,"disable_impersonation":true,"enable_sso":true,"enforce_client_authentication_on_passwordless_start":true,"universal_login":true,"revoke_refresh_token_grant":false,"dashboard_new_onboarding":false,"disable_clickjack_protection_headers":false},"idle_session_lifetime":72,"sandbox_version":"18","session_lifetime":168,"oidc_logout":{"rp_logout_end_session_endpoint_discovery":true}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 315.47325ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 14 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"mtls":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_locales":["en"],"flags":{"allow_changing_enable_sso":false,"cannot_change_enforce_client_authentication_on_passwordless_start":true,"disable_impersonation":true,"enable_sso":true,"enforce_client_authentication_on_passwordless_start":true,"universal_login":true,"revoke_refresh_token_grant":false,"dashboard_new_onboarding":false,"disable_clickjack_protection_headers":false},"idle_session_lifetime":72,"sandbox_version":"18","session_lifetime":168,"oidc_logout":{"rp_logout_end_session_endpoint_discovery":true}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 172.834625ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_locales":["en"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"enable_sso":true,"universal_login":true,"revoke_refresh_token_grant":false,"dashboard_new_onboarding":false,"disable_clickjack_protection_headers":false},"idle_session_lifetime":72,"sandbox_version":"18","session_lifetime":168,"oidc_logout":{"rp_logout_end_session_endpoint_discovery":true},"sandbox_versions_available":["18","16","12"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 164.269375ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_locales":["en"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"enable_sso":true,"universal_login":true,"revoke_refresh_token_grant":false,"dashboard_new_onboarding":false,"disable_clickjack_protection_headers":false},"idle_session_lifetime":72,"sandbox_version":"18","session_lifetime":168,"oidc_logout":{"rp_logout_end_session_endpoint_discovery":true},"sandbox_versions_available":["18","16","12"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 165.573792ms diff --git a/test/data/recordings/TestAccTenant_Main.yaml b/test/data/recordings/TestAccTenant_Main.yaml new file mode 100644 index 00000000..03d31eae --- /dev/null +++ b/test/data/recordings/TestAccTenant_Main.yaml @@ -0,0 +1,674 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 52 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"session_lifetime":168,"idle_session_lifetime":72} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"cannot_change_enforce_client_authentication_on_passwordless_start":true,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"enforce_client_authentication_on_passwordless_start":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":false,"remove_alg_from_jwks":true,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":168,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":false},"allow_organization_name_in_authentication_api":false,"customize_mfa_in_postlogin_action":false,"pushed_authorization_requests_supported":true,"mtls":{"enable_endpoint_aliases":true},"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true},"is_custom_template_set":true,"identifier_first":false,"webauthn_platform_first_factor":false},"session_cookie":{"mode":"non-persistent"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 218.812166ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 14 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"mtls":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"cannot_change_enforce_client_authentication_on_passwordless_start":true,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"enforce_client_authentication_on_passwordless_start":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":false,"remove_alg_from_jwks":true,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":168,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":false},"allow_organization_name_in_authentication_api":false,"customize_mfa_in_postlogin_action":false,"pushed_authorization_requests_supported":true,"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true},"is_custom_template_set":true,"identifier_first":false,"webauthn_platform_first_factor":false},"session_cookie":{"mode":"non-persistent"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 243.019959ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":false,"remove_alg_from_jwks":true,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":168,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":false},"allow_organization_name_in_authentication_api":false,"customize_mfa_in_postlogin_action":false,"pushed_authorization_requests_supported":true,"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["18","16","12"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 169.875ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":false,"remove_alg_from_jwks":true,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":168,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":false},"allow_organization_name_in_authentication_api":false,"customize_mfa_in_postlogin_action":false,"pushed_authorization_requests_supported":true,"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["18","16","12"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 165.112167ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":false,"remove_alg_from_jwks":true,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":168,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":false},"allow_organization_name_in_authentication_api":false,"customize_mfa_in_postlogin_action":false,"pushed_authorization_requests_supported":true,"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["18","16","12"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 139.589542ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 1019 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"default_audience":"","default_directory":"","flags":{"disable_clickjack_protection_headers":true,"enable_public_signup_user_exists_error":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"disable_management_api_sms_obfuscation":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":false,"remove_alg_from_jwks":true},"friendly_name":"My Test Tenant","picture_url":"https://mycompany.org/logo.png","support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","allowed_logout_urls":["https://mycompany.org/logoutCallback"],"session_lifetime":720,"sandbox_version":"16","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"session_cookie":{"mode":"non-persistent"},"sessions":{"oidc_logout_prompt_enabled":false},"allow_organization_name_in_authentication_api":false,"customize_mfa_in_postlogin_action":false,"mtls":{"enable_endpoint_aliases":true},"pushed_authorization_requests_supported":true} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"cannot_change_enforce_client_authentication_on_passwordless_start":true,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"enforce_client_authentication_on_passwordless_start":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":false,"remove_alg_from_jwks":true,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":false},"allow_organization_name_in_authentication_api":false,"customize_mfa_in_postlogin_action":false,"pushed_authorization_requests_supported":true,"mtls":{"enable_endpoint_aliases":true},"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true},"is_custom_template_set":true,"identifier_first":false,"webauthn_platform_first_factor":false},"session_cookie":{"mode":"non-persistent"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 190.195084ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":false,"remove_alg_from_jwks":true,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":false},"allow_organization_name_in_authentication_api":false,"customize_mfa_in_postlogin_action":false,"pushed_authorization_requests_supported":true,"mtls":{"enable_endpoint_aliases":true},"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["18","16","12"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 157.767791ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":false,"remove_alg_from_jwks":true,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":false},"allow_organization_name_in_authentication_api":false,"customize_mfa_in_postlogin_action":false,"pushed_authorization_requests_supported":true,"mtls":{"enable_endpoint_aliases":true},"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["18","16","12"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 140.487333ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":false,"remove_alg_from_jwks":true,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":false},"allow_organization_name_in_authentication_api":false,"customize_mfa_in_postlogin_action":false,"pushed_authorization_requests_supported":true,"mtls":{"enable_endpoint_aliases":true},"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["18","16","12"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 151.614792ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":false,"remove_alg_from_jwks":true,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":false},"allow_organization_name_in_authentication_api":false,"customize_mfa_in_postlogin_action":false,"pushed_authorization_requests_supported":true,"mtls":{"enable_endpoint_aliases":true},"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["18","16","12"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 132.243042ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":["https://mycompany.org/logoutCallback"],"default_audience":"","default_directory":"","default_redirection_uri":"https://example.com/login","enabled_locales":["en","de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":false,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":true,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":false,"mfa_show_factor_list_on_enrollment":false,"remove_alg_from_jwks":true,"disable_clickjack_protection_headers":true},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":false},"allow_organization_name_in_authentication_api":false,"customize_mfa_in_postlogin_action":false,"pushed_authorization_requests_supported":true,"mtls":{"enable_endpoint_aliases":true},"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"non-persistent"},"sandbox_versions_available":["18","16","12"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 140.655791ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 920 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"default_directory":"","flags":{"disable_clickjack_protection_headers":false,"enable_public_signup_user_exists_error":true,"use_scope_descriptions_for_consent":false,"no_disclose_enterprise_connections":false,"disable_management_api_sms_obfuscation":true,"disable_fields_map_fix":true,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false},"friendly_name":"My Test Tenant","picture_url":"https://mycompany.org/logo.png","support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","allowed_logout_urls":[],"session_lifetime":720,"sandbox_version":"16","default_redirection_uri":"","enabled_locales":["de","fr"],"session_cookie":{"mode":"persistent"},"sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"acr_values_supported":["bar","foo"],"pushed_authorization_requests_supported":false} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":[],"acr_values_supported":["bar","foo"],"default_audience":"","default_directory":"","enabled_locales":["de","fr"],"flags":{"allow_changing_enable_sso":false,"cannot_change_enforce_client_authentication_on_passwordless_start":true,"disable_impersonation":true,"disable_management_api_sms_obfuscation":true,"enable_public_signup_user_exists_error":true,"enable_sso":true,"enforce_client_authentication_on_passwordless_start":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":false,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":true,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":false},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"mtls":{"enable_endpoint_aliases":true},"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true},"is_custom_template_set":true,"identifier_first":false,"webauthn_platform_first_factor":false},"session_cookie":{"mode":"persistent"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 181.734166ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 14 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"mtls":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":[],"acr_values_supported":["bar","foo"],"default_audience":"","default_directory":"","enabled_locales":["de","fr"],"flags":{"allow_changing_enable_sso":false,"cannot_change_enforce_client_authentication_on_passwordless_start":true,"disable_impersonation":true,"disable_management_api_sms_obfuscation":true,"enable_public_signup_user_exists_error":true,"enable_sso":true,"enforce_client_authentication_on_passwordless_start":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":false,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":true,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":false},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true},"is_custom_template_set":true,"identifier_first":false,"webauthn_platform_first_factor":false},"session_cookie":{"mode":"persistent"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 162.774542ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":[],"acr_values_supported":["bar","foo"],"default_audience":"","default_directory":"","enabled_locales":["de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":true,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":false,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":true,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":false},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"persistent"},"sandbox_versions_available":["18","16","12"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 142.75575ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":[],"acr_values_supported":["bar","foo"],"default_audience":"","default_directory":"","enabled_locales":["de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":true,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":false,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":true,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":false},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"persistent"},"sandbox_versions_available":["18","16","12"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 138.41ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":[],"acr_values_supported":["bar","foo"],"default_audience":"","default_directory":"","enabled_locales":["de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":true,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":false,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":true,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":false},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":720,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"persistent"},"sandbox_versions_available":["18","16","12"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 145.923709ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 25 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"session_lifetime":168} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":[],"acr_values_supported":["bar","foo"],"default_audience":"","default_directory":"","enabled_locales":["de","fr"],"flags":{"allow_changing_enable_sso":false,"cannot_change_enforce_client_authentication_on_passwordless_start":true,"disable_impersonation":true,"disable_management_api_sms_obfuscation":true,"enable_public_signup_user_exists_error":true,"enable_sso":true,"enforce_client_authentication_on_passwordless_start":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":false,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":true,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":false},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":168,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true},"is_custom_template_set":true,"identifier_first":false,"webauthn_platform_first_factor":false},"session_cookie":{"mode":"persistent"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 171.298625ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":[],"acr_values_supported":["bar","foo"],"default_audience":"","default_directory":"","enabled_locales":["de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":true,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":false,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":true,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":false},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":168,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"persistent"},"sandbox_versions_available":["18","16","12"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 140.410709ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/tenants/settings + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"allowed_logout_urls":[],"acr_values_supported":["bar","foo"],"default_audience":"","default_directory":"","enabled_locales":["de","fr"],"flags":{"allow_changing_enable_sso":false,"disable_impersonation":true,"disable_management_api_sms_obfuscation":true,"enable_public_signup_user_exists_error":true,"enable_sso":true,"new_universal_login_experience_enabled":true,"universal_login":true,"use_scope_descriptions_for_consent":false,"no_disclose_enterprise_connections":false,"revoke_refresh_token_grant":false,"disable_fields_map_fix":true,"mfa_show_factor_list_on_enrollment":true,"remove_alg_from_jwks":false,"disable_clickjack_protection_headers":false},"friendly_name":"My Test Tenant","guardian_mfa_page":{"enabled":true,"html":"\n\n\n 2nd Factor Authentication\n \n \n \n\n\n\n\n
\n
\n
\n \n
\n
\n
\n
\n\n \n\n \n\n\n"},"idle_session_lifetime":72,"picture_url":"https://mycompany.org/logo.png","sandbox_version":"16","session_lifetime":168,"support_email":"support@mycompany.org","support_url":"https://mycompany.org/support","sessions":{"oidc_logout_prompt_enabled":true},"allow_organization_name_in_authentication_api":true,"customize_mfa_in_postlogin_action":true,"pushed_authorization_requests_supported":false,"universal_login":{"passwordless":{"allow_magiclink_verify_without_session":true}},"session_cookie":{"mode":"persistent"},"sandbox_versions_available":["18","16","12"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 153.576958ms diff --git a/test/data/recordings/TestAccUserPermission.yaml b/test/data/recordings/TestAccUserPermission.yaml index 95968549..4611708a 100644 --- a/test/data/recordings/TestAccUserPermission.yaml +++ b/test/data/recordings/TestAccUserPermission.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers method: POST response: @@ -30,34 +30,34 @@ interactions: trailer: {} content_length: 324 uncompressed: false - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 322.109ms + duration: 200.450416ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 31 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"authorization_details":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a167f68f6cf47debabc5 - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a201e5d56cfb7a9a50a1 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -66,32 +66,138 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 502.11125ms + duration: 163.535958ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 26 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"token_encryption":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a201e5d56cfb7a9a50a1 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 179.8715ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 29 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"proof_of_possession":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a201e5d56cfb7a9a50a1 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 194.564375ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a201e5d56cfb7a9a50a1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 173.201667ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermission method: GET response: @@ -102,14 +208,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.257958ms - - id: 3 + duration: 170.642083ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -127,7 +233,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermission method: PATCH response: @@ -138,32 +244,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 484.329916ms - - id: 4 + duration: 171.102792ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermission method: GET response: @@ -174,14 +279,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 486.774458ms - - id: 5 + duration: 167.962042ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -199,7 +304,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users method: POST response: @@ -210,32 +315,31 @@ interactions: trailer: {} content_length: 587 uncompressed: false - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 703.469041ms - - id: 6 + duration: 391.179333ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -246,14 +350,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 389.536042ms - - id: 7 + duration: 173.097416ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -271,7 +375,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions method: POST response: @@ -288,26 +392,25 @@ interactions: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 299.137ms - - id: 8 + duration: 192.563416ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&per_page=50 method: GET response: @@ -324,26 +427,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.780917ms - - id: 9 + duration: 187.395417ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -354,32 +456,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.216ms - - id: 10 + duration: 155.751458ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -396,26 +497,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 178.90825ms - - id: 11 + duration: 220.678833ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -432,26 +532,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 218.211959ms - - id: 12 + duration: 183.376666ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -462,32 +561,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 223.0175ms - - id: 13 + duration: 200.985125ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -504,26 +602,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.85625ms - - id: 14 + duration: 189.089333ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -540,27 +637,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 445.941041ms - - id: 15 + duration: 226.107959ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a167f68f6cf47debabc5 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a201e5d56cfb7a9a50a1 method: GET response: proto: HTTP/2.0 @@ -570,32 +666,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 222.977375ms - - id: 16 + duration: 171.194ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermission method: GET response: @@ -606,32 +701,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.12725ms - - id: 17 + duration: 196.195667ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -642,32 +736,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 211.786583ms - - id: 18 + duration: 165.402334ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&per_page=50 method: GET response: @@ -684,26 +777,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 319.705292ms - - id: 19 + duration: 183.508583ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -714,32 +806,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 477.809709ms - - id: 20 + duration: 169.788041ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -756,26 +847,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 327.117542ms - - id: 21 + duration: 166.936458ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -792,27 +882,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.907875ms - - id: 22 + duration: 225.168125ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a167f68f6cf47debabc5 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a201e5d56cfb7a9a50a1 method: GET response: proto: HTTP/2.0 @@ -822,32 +911,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.6985ms - - id: 23 + duration: 190.927708ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermission method: GET response: @@ -858,32 +946,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 502.684208ms - - id: 24 + duration: 167.075208ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -894,32 +981,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 461.858917ms - - id: 25 + duration: 162.943667ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&per_page=50 method: GET response: @@ -936,8 +1022,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 235.55975ms - - id: 26 + duration: 168.2685ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -955,7 +1041,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions method: POST response: @@ -972,26 +1058,25 @@ interactions: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 237.251ms - - id: 27 + duration: 194.410125ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&per_page=50 method: GET response: @@ -1008,26 +1093,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 501.505792ms - - id: 28 + duration: 168.656875ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -1038,32 +1122,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 408.537625ms - - id: 29 + duration: 176.7545ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -1080,26 +1163,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 269.611375ms - - id: 30 + duration: 184.388333ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -1116,26 +1198,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 517.7395ms - - id: 31 + duration: 198.372333ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -1146,32 +1227,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 336.802125ms - - id: 32 + duration: 177.228834ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -1188,26 +1268,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 269.365167ms - - id: 33 + duration: 165.083333ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -1224,27 +1303,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 508.407458ms - - id: 34 + duration: 182.599791ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a167f68f6cf47debabc5 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a201e5d56cfb7a9a50a1 method: GET response: proto: HTTP/2.0 @@ -1254,32 +1332,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 433.787125ms - - id: 35 + duration: 167.42875ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermission method: GET response: @@ -1290,32 +1367,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 260.272ms - - id: 36 + duration: 171.429292ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -1326,32 +1402,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 496.830041ms - - id: 37 + duration: 157.945792ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&per_page=50 method: GET response: @@ -1368,26 +1443,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 333.779791ms - - id: 38 + duration: 175.615417ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&per_page=50 method: GET response: @@ -1404,26 +1478,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.309625ms - - id: 39 + duration: 155.717708ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -1434,32 +1507,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 274.111834ms - - id: 40 + duration: 198.040416ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -1476,26 +1548,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 440.708125ms - - id: 41 + duration: 170.460542ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -1512,27 +1583,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.147208ms - - id: 42 + duration: 172.994125ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&per_page=50 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a201e5d56cfb7a9a50a1 method: GET response: proto: HTTP/2.0 @@ -1542,32 +1612,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[{"permission_name":"create:foo","description":"Can create Foo","resource_server_name":"Acceptance Test - testaccuserpermission","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]},{"permission_name":"read:foo","description":"Can read Foo","resource_server_name":"Acceptance Test - testaccuserpermission","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]}],"start":0,"limit":50,"total":2}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 268.457667ms - - id: 43 + duration: 192.266ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&per_page=50 method: GET response: @@ -1584,27 +1653,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.718125ms - - id: 44 + duration: 197.531167ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a167f68f6cf47debabc5 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1614,32 +1682,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"permissions":[{"permission_name":"create:foo","description":"Can create Foo","resource_server_name":"Acceptance Test - testaccuserpermission","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]},{"permission_name":"read:foo","description":"Can read Foo","resource_server_name":"Acceptance Test - testaccuserpermission","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]}],"start":0,"limit":50,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.428702167s - - id: 45 + duration: 198.139084ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermission method: GET response: @@ -1650,32 +1717,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 238.997333ms - - id: 46 + duration: 156.849125ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -1686,32 +1752,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 470.848042ms - - id: 47 + duration: 163.967834ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -1722,32 +1787,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 436.88175ms - - id: 48 + duration: 163.81325ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -1764,26 +1828,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.804125ms - - id: 49 + duration: 187.062541ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -1800,8 +1863,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 527.711958ms - - id: 50 + duration: 178.591042ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -1819,7 +1882,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions method: DELETE response: @@ -1836,8 +1899,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 488.657041ms - - id: 51 + duration: 170.444333ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -1855,7 +1918,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions method: DELETE response: @@ -1872,26 +1935,25 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 309.626666ms - - id: 52 + duration: 158.238042ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -1902,32 +1964,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.139959ms - - id: 53 + duration: 176.370833ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -1944,26 +2005,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 474.965084ms - - id: 54 + duration: 170.010166ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -1980,27 +2040,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 508.22425ms - - id: 55 + duration: 195.555833ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a167f68f6cf47debabc5 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a201e5d56cfb7a9a50a1 method: GET response: proto: HTTP/2.0 @@ -2010,32 +2069,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 772.099708ms - - id: 56 + duration: 180.0595ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermission method: GET response: @@ -2046,32 +2104,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 409.246958ms - - id: 57 + duration: 173.799833ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -2082,32 +2139,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.521583ms - - id: 58 + duration: 158.663625ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -2118,32 +2174,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.995583ms - - id: 59 + duration: 189.8435ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -2160,26 +2215,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.674417ms - - id: 60 + duration: 165.086ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -2196,27 +2250,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 329.746584ms - - id: 61 + duration: 176.93975ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a167f68f6cf47debabc5 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a201e5d56cfb7a9a50a1 method: GET response: proto: HTTP/2.0 @@ -2226,32 +2279,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 491.854791ms - - id: 62 + duration: 164.3145ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermission method: GET response: @@ -2262,32 +2314,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.787541ms - - id: 63 + duration: 168.115583ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -2298,32 +2349,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 175.479916ms - - id: 64 + duration: 186.266041ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -2334,32 +2384,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 251.875166ms - - id: 65 + duration: 162.002375ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -2376,26 +2425,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 560.383709ms - - id: 66 + duration: 173.20775ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -2412,27 +2460,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.648417ms - - id: 67 + duration: 167.094958ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a167f68f6cf47debabc5 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a201e5d56cfb7a9a50a1 method: GET response: proto: HTTP/2.0 @@ -2442,32 +2489,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.429084ms - - id: 68 + duration: 170.50625ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermission method: GET response: @@ -2478,32 +2524,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 475.758792ms - - id: 69 + duration: 176.330792ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -2514,32 +2559,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 408.719416ms - - id: 70 + duration: 181.493833ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -2550,32 +2594,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 232.211542ms - - id: 71 + duration: 151.284875ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -2592,26 +2635,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 484.633834ms - - id: 72 + duration: 170.753417ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -2628,27 +2670,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 421.598ms - - id: 73 + duration: 193.140208ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a167f68f6cf47debabc5 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a201e5d56cfb7a9a50a1 method: GET response: proto: HTTP/2.0 @@ -2658,32 +2699,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 228.887958ms - - id: 74 + duration: 180.2865ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermission method: GET response: @@ -2694,32 +2734,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 396.641458ms - - id: 75 + duration: 157.941083ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -2730,14 +2769,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.196459ms - - id: 76 + duration: 217.163792ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -2755,7 +2794,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions method: POST response: @@ -2772,26 +2811,25 @@ interactions: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 229.239875ms - - id: 77 + duration: 183.29625ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -2808,27 +2846,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 476.737333ms - - id: 78 + duration: 174.5585ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a167f68f6cf47debabc5 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a201e5d56cfb7a9a50a1 method: GET response: proto: HTTP/2.0 @@ -2838,32 +2875,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 460.954333ms - - id: 79 + duration: 163.127958ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermission method: GET response: @@ -2874,32 +2910,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 230.669625ms - - id: 80 + duration: 187.420417ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -2910,32 +2945,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.636333ms - - id: 81 + duration: 177.590875ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -2952,26 +2986,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.723666ms - - id: 82 + duration: 197.03075ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&per_page=50 method: GET response: @@ -2988,26 +3021,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 265.232667ms - - id: 83 + duration: 177.640667ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -3018,32 +3050,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 260.87925ms - - id: 84 + duration: 169.799416ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -3060,26 +3091,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 478.384875ms - - id: 85 + duration: 164.156042ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -3096,26 +3126,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 326.87125ms - - id: 86 + duration: 160.502458ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&per_page=50 method: GET response: @@ -3132,26 +3161,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.252459ms - - id: 87 + duration: 176.422584ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -3162,32 +3190,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 510.242208ms - - id: 88 + duration: 189.469292ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -3204,26 +3231,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 499.023292ms - - id: 89 + duration: 180.128375ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -3240,27 +3266,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 391.3295ms - - id: 90 + duration: 187.732542ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a167f68f6cf47debabc5 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a201e5d56cfb7a9a50a1 method: GET response: proto: HTTP/2.0 @@ -3270,32 +3295,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 199.02125ms - - id: 91 + duration: 171.116708ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermission method: GET response: @@ -3306,32 +3330,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.726625ms - - id: 92 + duration: 255.928333ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -3342,33 +3365,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.265625ms - - id: 93 + duration: 172.860792ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&per_page=50 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3378,33 +3400,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[{"permission_name":"create:foo","description":"Can create Foo","resource_server_name":"Acceptance Test - testaccuserpermission","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]},{"permission_name":"read:foo","description":"Can read Foo","resource_server_name":"Acceptance Test - testaccuserpermission","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]}],"start":0,"limit":50,"total":2}' + body: '{"permissions":[{"permission_name":"create:foo","description":"Can create Foo","resource_server_name":"Acceptance Test - testaccuserpermission","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]},{"permission_name":"read:foo","description":"Can read Foo","resource_server_name":"Acceptance Test - testaccuserpermission","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.311ms - - id: 94 + duration: 178.098417ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3414,32 +3435,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[{"permission_name":"create:foo","description":"Can create Foo","resource_server_name":"Acceptance Test - testaccuserpermission","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]},{"permission_name":"read:foo","description":"Can read Foo","resource_server_name":"Acceptance Test - testaccuserpermission","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]}],"start":0,"limit":100,"total":2}' + body: '{"permissions":[{"permission_name":"create:foo","description":"Can create Foo","resource_server_name":"Acceptance Test - testaccuserpermission","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]},{"permission_name":"read:foo","description":"Can read Foo","resource_server_name":"Acceptance Test - testaccuserpermission","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]}],"start":0,"limit":50,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 511.851166ms - - id: 95 + duration: 188.760625ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&per_page=50 method: GET response: @@ -3456,26 +3476,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.325794709s - - id: 96 + duration: 224.152292ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -3486,32 +3505,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 441.065458ms - - id: 97 + duration: 179.797167ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -3528,26 +3546,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.904667ms - - id: 98 + duration: 205.79425ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -3564,26 +3581,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 489.898667ms - - id: 99 + duration: 366.533833ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -3594,32 +3610,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 790.713417ms - - id: 100 + duration: 165.669042ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -3636,26 +3651,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 226.689375ms - - id: 101 + duration: 171.53775ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -3672,27 +3686,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 398.715417ms - - id: 102 + duration: 175.297791ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a167f68f6cf47debabc5 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a201e5d56cfb7a9a50a1 method: GET response: proto: HTTP/2.0 @@ -3702,32 +3715,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 250.70925ms - - id: 103 + duration: 171.235584ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermission method: GET response: @@ -3738,32 +3750,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 518.149625ms - - id: 104 + duration: 167.57625ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -3774,32 +3785,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 354.555417ms - - id: 105 + duration: 166.069ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -3816,26 +3826,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 564.74525ms - - id: 106 + duration: 170.082208ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&per_page=50 method: GET response: @@ -3852,26 +3861,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 576.834541ms - - id: 107 + duration: 187.222625ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&per_page=50 method: GET response: @@ -3888,26 +3896,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 177.78075ms - - id: 108 + duration: 181.539208ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: GET response: @@ -3918,32 +3925,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:58:01.618Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:58:01.618Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' + body: '{"created_at":"2024-09-10T19:46:11.472Z","email":"testaccuserpermission@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermission","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermission@acceptance.test.com","nickname":"testaccuserpermission","picture":"https://s.gravatar.com/avatar/295de314fb7cbd3d1154adc7f2f222fe?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:46:11.472Z","user_id":"auth0|testaccuserpermission","username":"testaccuserpermission"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 172.229541ms - - id: 109 + duration: 246.23675ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -3960,26 +3966,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 152.6175ms - - id: 110 + duration: 182.212ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -3996,8 +4001,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 155.950916ms - - id: 111 + duration: 220.026083ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -4015,7 +4020,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions method: DELETE response: @@ -4032,8 +4037,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 172.417458ms - - id: 112 + duration: 191.559625ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -4051,7 +4056,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions method: DELETE response: @@ -4068,8 +4073,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 313.434625ms - - id: 113 + duration: 197.126583ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -4087,7 +4092,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission/permissions method: DELETE response: @@ -4104,8 +4109,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 220.646791ms - - id: 114 + duration: 183.335875ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -4122,7 +4127,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermission method: DELETE response: @@ -4139,8 +4144,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 314.792458ms - - id: 115 + duration: 250.858083ms + - id: 118 request: proto: HTTP/1.1 proto_major: 1 @@ -4158,7 +4163,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermission method: PATCH response: @@ -4169,14 +4174,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a167f68f6cf47debabc5","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e0a201e5d56cfb7a9a50a1","name":"Acceptance Test - testaccuserpermission","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermission","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 328.143833ms - - id: 116 + duration: 297.623209ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -4193,8 +4198,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a167f68f6cf47debabc5 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a201e5d56cfb7a9a50a1 method: DELETE response: proto: HTTP/2.0 @@ -4210,4 +4215,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 347.789209ms + duration: 214.759792ms diff --git a/test/data/recordings/TestAccUserPermissions.yaml b/test/data/recordings/TestAccUserPermissions.yaml index 9b67784d..2f23249d 100644 --- a/test/data/recordings/TestAccUserPermissions.yaml +++ b/test/data/recordings/TestAccUserPermissions.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers method: POST response: @@ -30,34 +30,34 @@ interactions: trailer: {} content_length: 326 uncompressed: false - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 513.978625ms + duration: 193.7235ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 31 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"authorization_details":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a1a6d7b431da8523948e - method: GET + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a245e5d56cfb7a9a50fb + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -66,32 +66,138 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 419.995542ms + duration: 196.84975ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 26 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"token_encryption":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a245e5d56cfb7a9a50fb + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 163.5735ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 29 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"proof_of_possession":null} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a245e5d56cfb7a9a50fb + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 178.140583ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a245e5d56cfb7a9a50fb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 188.444625ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermissions method: GET response: @@ -102,14 +208,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 272.466041ms - - id: 3 + duration: 166.062458ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -127,7 +233,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermissions method: PATCH response: @@ -138,32 +244,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 478.322ms - - id: 4 + duration: 166.392375ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermissions method: GET response: @@ -174,14 +279,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 365.356833ms - - id: 5 + duration: 145.456917ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -199,7 +304,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users method: POST response: @@ -210,32 +315,31 @@ interactions: trailer: {} content_length: 593 uncompressed: false - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 434.732625ms - - id: 6 + duration: 423.309958ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -246,14 +350,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 525.231542ms - - id: 7 + duration: 164.548042ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -271,7 +375,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions method: POST response: @@ -288,26 +392,25 @@ interactions: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 383.784542ms - - id: 8 + duration: 217.149625ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -324,26 +427,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.1485ms - - id: 9 + duration: 166.311417ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -354,32 +456,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 272.654667ms - - id: 10 + duration: 208.610417ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -396,26 +497,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.932958ms - - id: 11 + duration: 193.430292ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -432,26 +532,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 350.602959ms - - id: 12 + duration: 203.360041ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -462,32 +561,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.346333ms - - id: 13 + duration: 182.360708ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -504,26 +602,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 469.808958ms - - id: 14 + duration: 168.4155ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -540,27 +637,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.125459ms - - id: 15 + duration: 174.63475ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a1a6d7b431da8523948e + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a245e5d56cfb7a9a50fb method: GET response: proto: HTTP/2.0 @@ -570,32 +666,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 266.577417ms - - id: 16 + duration: 161.46025ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermissions method: GET response: @@ -606,32 +701,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.778291ms - - id: 17 + duration: 192.070125ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -642,32 +736,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 775.428625ms - - id: 18 + duration: 172.49575ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -684,26 +777,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 844.955208ms - - id: 19 + duration: 184.794541ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -714,32 +806,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 266.341167ms - - id: 20 + duration: 173.688875ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -756,26 +847,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 220.92475ms - - id: 21 + duration: 182.0165ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -792,27 +882,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.106042ms - - id: 22 + duration: 178.049875ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a1a6d7b431da8523948e + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a245e5d56cfb7a9a50fb method: GET response: proto: HTTP/2.0 @@ -822,32 +911,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.04664225s - - id: 23 + duration: 157.252417ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermissions method: GET response: @@ -858,32 +946,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 661.224916ms - - id: 24 + duration: 164.373833ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -894,32 +981,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 403.952791ms - - id: 25 + duration: 195.759042ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -936,8 +1022,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 325.687417ms - - id: 26 + duration: 189.112666ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -955,7 +1041,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions method: POST response: @@ -972,26 +1058,25 @@ interactions: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 230.134833ms - - id: 27 + duration: 187.672333ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -1008,26 +1093,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 270.044959ms - - id: 28 + duration: 195.863416ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -1038,32 +1122,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 437.472333ms - - id: 29 + duration: 158.2155ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -1080,26 +1163,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.699958ms - - id: 30 + duration: 217.937041ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -1116,26 +1198,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 545.26125ms - - id: 31 + duration: 174.4125ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -1146,32 +1227,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 583.919167ms - - id: 32 + duration: 163.6965ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -1188,26 +1268,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.090208ms - - id: 33 + duration: 167.522292ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -1224,27 +1303,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 220.369166ms - - id: 34 + duration: 174.082833ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a1a6d7b431da8523948e + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a245e5d56cfb7a9a50fb method: GET response: proto: HTTP/2.0 @@ -1254,32 +1332,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.607417ms - - id: 35 + duration: 167.792917ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermissions method: GET response: @@ -1290,32 +1367,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.595ms - - id: 36 + duration: 170.471875ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -1326,32 +1402,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 241.894625ms - - id: 37 + duration: 166.415375ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -1368,26 +1443,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 329.074583ms - - id: 38 + duration: 166.374292ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -1398,32 +1472,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 210.676167ms - - id: 39 + duration: 163.098208ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -1440,26 +1513,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 145.76275ms - - id: 40 + duration: 179.490083ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -1476,27 +1548,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 237.331ms - - id: 41 + duration: 194.931375ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a1a6d7b431da8523948e + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a245e5d56cfb7a9a50fb method: GET response: proto: HTTP/2.0 @@ -1506,32 +1577,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 168.117042ms - - id: 42 + duration: 182.61675ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermissions method: GET response: @@ -1542,32 +1612,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 169.130292ms - - id: 43 + duration: 163.844709ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -1578,32 +1647,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 241.939833ms - - id: 44 + duration: 155.16275ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -1620,8 +1688,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 250.360167ms - - id: 45 + duration: 189.616917ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -1639,7 +1707,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions method: DELETE response: @@ -1656,26 +1724,25 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 236.478333ms - - id: 46 + duration: 180.362875ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -1692,26 +1759,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 451.233959ms - - id: 47 + duration: 171.332917ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -1722,32 +1788,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 395.928625ms - - id: 48 + duration: 182.651375ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -1764,26 +1829,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 245.131709ms - - id: 49 + duration: 175.231875ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -1800,26 +1864,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.006375ms - - id: 50 + duration: 183.799416ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -1830,32 +1893,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 423.308959ms - - id: 51 + duration: 160.106917ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -1872,26 +1934,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 390.820167ms - - id: 52 + duration: 158.457292ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -1908,27 +1969,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.919584ms - - id: 53 + duration: 179.098208ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a1a6d7b431da8523948e + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a245e5d56cfb7a9a50fb method: GET response: proto: HTTP/2.0 @@ -1938,32 +1998,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 165.234792ms - - id: 54 + duration: 167.1525ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermissions method: GET response: @@ -1974,32 +2033,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 216.794125ms - - id: 55 + duration: 200.789417ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -2010,32 +2068,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 240.724625ms - - id: 56 + duration: 160.04025ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -2052,26 +2109,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 681.896959ms - - id: 57 + duration: 206.091542ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -2082,32 +2138,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 339.602167ms - - id: 58 + duration: 155.592584ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -2124,26 +2179,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.700167ms - - id: 59 + duration: 228.575958ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -2160,27 +2214,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 263.759417ms - - id: 60 + duration: 200.675583ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a245e5d56cfb7a9a50fb method: GET response: proto: HTTP/2.0 @@ -2190,33 +2243,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"permissions":[{"permission_name":"create:foo","description":"Can create Foo","resource_server_name":"Acceptance Test - testaccuserpermissions","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]}],"start":0,"limit":100,"total":1}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 248.334333ms - - id: 61 + duration: 158.128834ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a1a6d7b431da8523948e + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2226,32 +2278,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"permissions":[{"permission_name":"create:foo","description":"Can create Foo","resource_server_name":"Acceptance Test - testaccuserpermissions","resource_server_identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","sources":[{"source_id":"","source_name":"","source_type":"DIRECT"}]}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 533.981458ms - - id: 62 + duration: 183.132ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermissions method: GET response: @@ -2262,32 +2313,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 389.004083ms - - id: 63 + duration: 158.541583ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -2298,32 +2348,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 242.984833ms - - id: 64 + duration: 200.408666ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -2334,32 +2383,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 501.851792ms - - id: 65 + duration: 161.02925ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -2376,26 +2424,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 807.436ms - - id: 66 + duration: 199.97075ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -2412,8 +2459,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.191208ms - - id: 67 + duration: 190.284084ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -2431,7 +2478,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions method: DELETE response: @@ -2448,26 +2495,25 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 317.472ms - - id: 68 + duration: 175.346916ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -2478,32 +2524,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 247.048709ms - - id: 69 + duration: 166.395459ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -2520,26 +2565,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 447.924583ms - - id: 70 + duration: 163.99675ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -2556,27 +2600,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.542958ms - - id: 71 + duration: 180.562333ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a1a6d7b431da8523948e + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a245e5d56cfb7a9a50fb method: GET response: proto: HTTP/2.0 @@ -2586,32 +2629,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 243.2985ms - - id: 72 + duration: 162.160209ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermissions method: GET response: @@ -2622,32 +2664,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 245.100917ms - - id: 73 + duration: 389.003209ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -2658,32 +2699,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 255.487375ms - - id: 74 + duration: 182.446042ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -2694,32 +2734,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.37425ms - - id: 75 + duration: 150.946042ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -2736,26 +2775,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.390125ms - - id: 76 + duration: 198.659459ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -2772,27 +2810,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 456.016ms - - id: 77 + duration: 186.256917ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a1a6d7b431da8523948e + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a245e5d56cfb7a9a50fb method: GET response: proto: HTTP/2.0 @@ -2802,32 +2839,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 213.905458ms - - id: 78 + duration: 159.680375ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermissions method: GET response: @@ -2838,32 +2874,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 260.029459ms - - id: 79 + duration: 171.982541ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -2874,32 +2909,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 268.638583ms - - id: 80 + duration: 165.253042ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -2910,32 +2944,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.544667ms - - id: 81 + duration: 187.1735ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -2952,26 +2985,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 273.109083ms - - id: 82 + duration: 241.592958ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -2988,27 +3020,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 243.247791ms - - id: 83 + duration: 164.168125ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a1a6d7b431da8523948e + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a245e5d56cfb7a9a50fb method: GET response: proto: HTTP/2.0 @@ -3018,32 +3049,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 257.282917ms - - id: 84 + duration: 176.256542ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermissions method: GET response: @@ -3054,32 +3084,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 510.303709ms - - id: 85 + duration: 176.029833ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -3090,32 +3119,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 460.93675ms - - id: 86 + duration: 157.873834ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -3126,32 +3154,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 190.036708ms - - id: 87 + duration: 159.732125ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -3168,26 +3195,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.655ms - - id: 88 + duration: 199.735709ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -3204,27 +3230,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 189.720917ms - - id: 89 + duration: 165.021208ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a1a6d7b431da8523948e + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a245e5d56cfb7a9a50fb method: GET response: proto: HTTP/2.0 @@ -3234,32 +3259,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 223.687125ms - - id: 90 + duration: 170.405166ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermissions method: GET response: @@ -3270,32 +3294,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 496.791583ms - - id: 91 + duration: 200.303083ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -3306,14 +3329,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 330.776958ms - - id: 92 + duration: 160.927042ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -3331,7 +3354,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions method: POST response: @@ -3348,26 +3371,25 @@ interactions: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 289.410792ms - - id: 93 + duration: 211.360083ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&per_page=50 method: GET response: @@ -3384,8 +3406,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 252.257917ms - - id: 94 + duration: 170.548042ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -3403,7 +3425,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions method: POST response: @@ -3420,26 +3442,25 @@ interactions: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 175.155917ms - - id: 95 + duration: 178.436208ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&per_page=50 method: GET response: @@ -3456,27 +3477,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 195.54925ms - - id: 96 + duration: 173.9555ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a1a6d7b431da8523948e + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a245e5d56cfb7a9a50fb method: GET response: proto: HTTP/2.0 @@ -3486,32 +3506,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 181.307875ms - - id: 97 + duration: 171.697833ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermissions method: GET response: @@ -3522,32 +3541,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 206.736916ms - - id: 98 + duration: 154.958417ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -3558,32 +3576,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 210.857584ms - - id: 99 + duration: 153.591417ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&per_page=50 method: GET response: @@ -3600,26 +3617,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.813833ms - - id: 100 + duration: 173.466458ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&per_page=50 method: GET response: @@ -3636,26 +3652,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 448.934833ms - - id: 101 + duration: 211.223042ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -3672,26 +3687,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 323.919708ms - - id: 102 + duration: 173.959916ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -3702,32 +3716,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 460.750542ms - - id: 103 + duration: 144.733625ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -3744,26 +3757,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.009209ms - - id: 104 + duration: 205.095292ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -3780,27 +3792,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 535.262958ms - - id: 105 + duration: 192.932208ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a1a6d7b431da8523948e + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a245e5d56cfb7a9a50fb method: GET response: proto: HTTP/2.0 @@ -3810,32 +3821,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 404.630542ms - - id: 106 + duration: 164.842125ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermissions method: GET response: @@ -3846,32 +3856,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 153.27175ms - - id: 107 + duration: 179.133584ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -3882,32 +3891,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 191.4405ms - - id: 108 + duration: 184.93375ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&per_page=50 method: GET response: @@ -3924,26 +3932,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 227.601708ms - - id: 109 + duration: 213.018083ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&per_page=50 method: GET response: @@ -3960,26 +3967,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 215.470917ms - - id: 110 + duration: 186.919ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -3996,26 +4002,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 247.894ms - - id: 111 + duration: 180.150833ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -4026,32 +4031,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 387.076875ms - - id: 112 + duration: 161.01825ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -4068,26 +4072,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 239.472416ms - - id: 113 + duration: 169.888583ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -4104,26 +4107,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.326321875s - - id: 114 + duration: 170.516416ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -4134,32 +4136,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 366.523458ms - - id: 115 + duration: 176.379ms + - id: 118 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -4176,26 +4177,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.081875ms - - id: 116 + duration: 166.963625ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -4212,27 +4212,26 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 261.533875ms - - id: 117 + duration: 168.639833ms + - id: 120 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a1a6d7b431da8523948e + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a245e5d56cfb7a9a50fb method: GET response: proto: HTTP/2.0 @@ -4242,32 +4241,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.024833ms - - id: 118 + duration: 164.616417ms + - id: 121 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermissions method: GET response: @@ -4278,32 +4276,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[{"value":"create:foo","description":"Can create Foo"},{"value":"read:foo","description":"Can read Foo"}]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 516.979084ms - - id: 119 + duration: 159.891959ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -4314,32 +4311,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 316.538625ms - - id: 120 + duration: 168.599416ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&per_page=50 method: GET response: @@ -4356,26 +4352,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.962875ms - - id: 121 + duration: 172.242666ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&per_page=50 method: GET response: @@ -4392,26 +4387,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 467.080416ms - - id: 122 + duration: 187.084584ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -4428,26 +4422,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 608.363458ms - - id: 123 + duration: 184.864208ms + - id: 126 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: GET response: @@ -4458,32 +4451,31 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:59:04.521Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:59:04.521Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' + body: '{"created_at":"2024-09-10T19:47:19.028Z","email":"testaccuserpermissions@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuserpermissions","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuserpermissions@acceptance.test.com","nickname":"testaccuserpermissions","picture":"https://s.gravatar.com/avatar/d97e25d60bb8202f963e535364a40cb1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-09-10T19:47:19.028Z","user_id":"auth0|testaccuserpermissions","username":"testaccuserpermissions"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 201.869792ms - - id: 124 + duration: 158.188333ms + - id: 127 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/roles?include_totals=true&page=0&per_page=100 method: GET response: @@ -4500,26 +4492,25 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 272.265167ms - - id: 125 + duration: 208.311584ms + - id: 128 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions?include_totals=true&page=0&per_page=100 method: GET response: @@ -4536,8 +4527,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 257.107ms - - id: 126 + duration: 185.579958ms + - id: 129 request: proto: HTTP/1.1 proto_major: 1 @@ -4555,7 +4546,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions method: DELETE response: @@ -4572,8 +4563,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 247.634125ms - - id: 127 + duration: 170.124625ms + - id: 130 request: proto: HTTP/1.1 proto_major: 1 @@ -4591,7 +4582,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions method: DELETE response: @@ -4608,8 +4599,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 544.823458ms - - id: 128 + duration: 183.955292ms + - id: 131 request: proto: HTTP/1.1 proto_major: 1 @@ -4627,7 +4618,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions/permissions method: DELETE response: @@ -4644,8 +4635,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 215.84525ms - - id: 129 + duration: 170.510292ms + - id: 132 request: proto: HTTP/1.1 proto_major: 1 @@ -4662,7 +4653,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuserpermissions method: DELETE response: @@ -4679,8 +4670,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 342.115042ms - - id: 130 + duration: 242.992375ms + - id: 133 request: proto: HTTP/1.1 proto_major: 1 @@ -4698,7 +4689,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/https:%2F%2Fuat.api.terraform-provider-auth0.com%2Ftestaccuserpermissions method: PATCH response: @@ -4709,14 +4700,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"6581a1a6d7b431da8523948e","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' + body: '{"id":"66e0a245e5d56cfb7a9a50fb","name":"Acceptance Test - testaccuserpermissions","identifier":"https://uat.api.terraform-provider-auth0.com/testaccuserpermissions","allow_offline_access":false,"skip_consent_for_verifiable_first_party_clients":false,"token_lifetime":86400,"token_lifetime_for_web":7200,"signing_alg":"RS256","scopes":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 345.617541ms - - id: 131 + duration: 273.899292ms + - id: 134 request: proto: HTTP/1.1 proto_major: 1 @@ -4733,8 +4724,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/6581a1a6d7b431da8523948e + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/resource-servers/66e0a245e5d56cfb7a9a50fb method: DELETE response: proto: HTTP/2.0 @@ -4750,4 +4741,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 331.048625ms + duration: 225.090625ms From efdad320808f520d8b3ba89620f53f292bb26f49 Mon Sep 17 00:00:00 2001 From: "A. Craig West" Date: Fri, 20 Sep 2024 09:25:09 -0400 Subject: [PATCH 3/5] Add strategy_version support to all connections that use it (#1024) * ESD-39527: Add strategy_version support to all connections that use it * Update go-auth0 dependency * Add examples for strategy_version --- docs/resources/connection.md | 17 +- .../resources/auth0_connection/resource.tf | 1 + .../auth0_connection/resource_with_ad.tf | 1 + .../resource_with_azure_ad.tf | 13 +- .../auth0_connection/resource_with_oauth2.tf | 1 + .../auth0_connection/resource_with_saml.tf | 1 + go.mod | 4 +- go.sum | 8 +- internal/auth0/connection/expand.go | 6 + internal/auth0/connection/flatten.go | 6 + .../auth0/connection/resource_clients_test.go | 9 +- internal/auth0/connection/resource_test.go | 34 +- internal/auth0/connection/schema.go | 1 + test/data/recordings/TestAccConnection.yaml | 104 +- test/data/recordings/TestAccConnectionAD.yaml | 106 +- .../recordings/TestAccConnectionADFS.yaml | 106 +- .../recordings/TestAccConnectionApple.yaml | 569 ++-- .../recordings/TestAccConnectionAzureAD.yaml | 108 +- .../recordings/TestAccConnectionClient.yaml | 2347 ++++++++--------- .../recordings/TestAccConnectionClients.yaml | 438 ++- .../TestAccConnectionClientsImport.yaml | 139 +- ...sPreventErasingEnabledClientsOnCreate.yaml | 124 +- .../TestAccConnectionConfiguration.yaml | 102 +- .../TestAccConnectionGoogleOAuth2.yaml | 284 +- .../recordings/TestAccConnectionLinkedin.yaml | 569 ++-- .../recordings/TestAccConnectionOAuth2.yaml | 569 ++-- .../recordings/TestAccConnectionOIDC.yaml | 121 +- .../recordings/TestAccConnectionOkta.yaml | 113 +- .../recordings/TestAccConnectionSAML.yaml | 104 +- .../data/recordings/TestAccConnectionSMS.yaml | 284 +- .../TestAccConnectionSalesforce.yaml | 284 +- .../recordings/TestAccConnectionTwitter.yaml | 569 ++-- .../TestAccConnectionWindowslive.yaml | 569 ++-- 33 files changed, 3801 insertions(+), 3910 deletions(-) diff --git a/docs/resources/connection.md b/docs/resources/connection.md index 1562ef02..a3febd17 100644 --- a/docs/resources/connection.md +++ b/docs/resources/connection.md @@ -31,6 +31,7 @@ resource "auth0_connection" "my_connection" { options { password_policy = "excellent" brute_force_protection = true + strategy_version = 2 enabled_database_customization = true import_mode = false requires_username = true @@ -253,6 +254,7 @@ resource "auth0_connection" "oauth2" { options { client_id = "" client_secret = "" + strategy_version = 2 scopes = ["basic_profile", "profile", "email"] token_endpoint = "https://auth.example.com/oauth2/token" authorization_endpoint = "https://auth.example.com/oauth2/authorize" @@ -284,6 +286,7 @@ resource "auth0_connection" "ad" { disable_self_service_change_password = true brute_force_protection = true tenant_domain = "example.com" + strategy_version = 2 icon_url = "https://example.com/assets/logo.png" domain_aliases = [ "example.com", @@ -312,12 +315,13 @@ resource "auth0_connection" "azure_ad" { strategy = "waad" show_as_button = true options { - identity_api = "azure-active-directory-v1.0" - client_id = "123456" - client_secret = "123456" - app_id = "app-id-123" - tenant_domain = "example.onmicrosoft.com" - domain = "example.onmicrosoft.com" + identity_api = "azure-active-directory-v1.0" + client_id = "123456" + client_secret = "123456" + strategy_version = 2 + app_id = "app-id-123" + tenant_domain = "example.onmicrosoft.com" + domain = "example.onmicrosoft.com" domain_aliases = [ "example.com", "api.example.com" @@ -468,6 +472,7 @@ resource "auth0_connection" "samlp" { sign_in_endpoint = "https://saml.provider/sign_in" sign_out_endpoint = "https://saml.provider/sign_out" disable_sign_out = true + strategy_version = 2 tenant_domain = "example.com" domain_aliases = ["example.com", "alias.example.com"] protocol_binding = "urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST" diff --git a/examples/resources/auth0_connection/resource.tf b/examples/resources/auth0_connection/resource.tf index fe246c74..a397664b 100644 --- a/examples/resources/auth0_connection/resource.tf +++ b/examples/resources/auth0_connection/resource.tf @@ -12,6 +12,7 @@ resource "auth0_connection" "my_connection" { options { password_policy = "excellent" brute_force_protection = true + strategy_version = 2 enabled_database_customization = true import_mode = false requires_username = true diff --git a/examples/resources/auth0_connection/resource_with_ad.tf b/examples/resources/auth0_connection/resource_with_ad.tf index d5cc5ff9..fa0de545 100644 --- a/examples/resources/auth0_connection/resource_with_ad.tf +++ b/examples/resources/auth0_connection/resource_with_ad.tf @@ -8,6 +8,7 @@ resource "auth0_connection" "ad" { disable_self_service_change_password = true brute_force_protection = true tenant_domain = "example.com" + strategy_version = 2 icon_url = "https://example.com/assets/logo.png" domain_aliases = [ "example.com", diff --git a/examples/resources/auth0_connection/resource_with_azure_ad.tf b/examples/resources/auth0_connection/resource_with_azure_ad.tf index 20cad201..21d1baeb 100644 --- a/examples/resources/auth0_connection/resource_with_azure_ad.tf +++ b/examples/resources/auth0_connection/resource_with_azure_ad.tf @@ -3,12 +3,13 @@ resource "auth0_connection" "azure_ad" { strategy = "waad" show_as_button = true options { - identity_api = "azure-active-directory-v1.0" - client_id = "123456" - client_secret = "123456" - app_id = "app-id-123" - tenant_domain = "example.onmicrosoft.com" - domain = "example.onmicrosoft.com" + identity_api = "azure-active-directory-v1.0" + client_id = "123456" + client_secret = "123456" + strategy_version = 2 + app_id = "app-id-123" + tenant_domain = "example.onmicrosoft.com" + domain = "example.onmicrosoft.com" domain_aliases = [ "example.com", "api.example.com" diff --git a/examples/resources/auth0_connection/resource_with_oauth2.tf b/examples/resources/auth0_connection/resource_with_oauth2.tf index ba64a112..36a743b7 100644 --- a/examples/resources/auth0_connection/resource_with_oauth2.tf +++ b/examples/resources/auth0_connection/resource_with_oauth2.tf @@ -7,6 +7,7 @@ resource "auth0_connection" "oauth2" { options { client_id = "" client_secret = "" + strategy_version = 2 scopes = ["basic_profile", "profile", "email"] token_endpoint = "https://auth.example.com/oauth2/token" authorization_endpoint = "https://auth.example.com/oauth2/authorize" diff --git a/examples/resources/auth0_connection/resource_with_saml.tf b/examples/resources/auth0_connection/resource_with_saml.tf index a83672ef..a66f136d 100644 --- a/examples/resources/auth0_connection/resource_with_saml.tf +++ b/examples/resources/auth0_connection/resource_with_saml.tf @@ -10,6 +10,7 @@ resource "auth0_connection" "samlp" { sign_in_endpoint = "https://saml.provider/sign_in" sign_out_endpoint = "https://saml.provider/sign_out" disable_sign_out = true + strategy_version = 2 tenant_domain = "example.com" domain_aliases = ["example.com", "alias.example.com"] protocol_binding = "urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST" diff --git a/go.mod b/go.mod index 02dcbe30..fee1bad4 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ go 1.22 require ( github.com/PuerkitoBio/rehttp v1.4.0 - github.com/auth0/go-auth0 v1.10.0 + github.com/auth0/go-auth0 v1.10.1-0.20240919142940-86c7e2f07e06 github.com/google/go-cmp v0.6.0 github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 github.com/hashicorp/go-multierror v1.1.1 @@ -78,7 +78,7 @@ require ( golang.org/x/exp v0.0.0-20240525044651-4c93da0ed11d // indirect golang.org/x/mod v0.19.0 // indirect golang.org/x/net v0.26.0 // indirect - golang.org/x/oauth2 v0.22.0 // indirect + golang.org/x/oauth2 v0.23.0 // indirect golang.org/x/sync v0.8.0 // indirect golang.org/x/sys v0.23.0 // indirect golang.org/x/text v0.17.0 // indirect diff --git a/go.sum b/go.sum index 7ddbe7f1..9ad10e30 100644 --- a/go.sum +++ b/go.sum @@ -24,8 +24,8 @@ github.com/apparentlymart/go-textseg/v15 v15.0.0 h1:uYvfpb3DyLSCGWnctWKGj857c6ew github.com/apparentlymart/go-textseg/v15 v15.0.0/go.mod h1:K8XmNZdhEBkdlyDdvbmmsvpAG721bKi0joRfFdHIWJ4= github.com/armon/go-radix v1.0.0 h1:F4z6KzEeeQIMeLFa97iZU6vupzoecKdU5TX24SNppXI= github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= -github.com/auth0/go-auth0 v1.10.0 h1:7fjcuVjtTET5NEg8RPl3uYadGto7WZnBl31LcnXANWc= -github.com/auth0/go-auth0 v1.10.0/go.mod h1:VMTiemb4rn2TUPiH9obD2FoHS2FoTALTsnKU0NUXLxk= +github.com/auth0/go-auth0 v1.10.1-0.20240919142940-86c7e2f07e06 h1:KhdyIAvazLFhgG1xHDNY8YdWK5C8s6TU4izA3DPhfoI= +github.com/auth0/go-auth0 v1.10.1-0.20240919142940-86c7e2f07e06/go.mod h1:VyYseHsdB4s9jmfBqoxnzJTvZr0w17ZJ5kjNdA+ag9Y= github.com/aybabtme/iocontrol v0.0.0-20150809002002-ad15bcfc95a0 h1:0NmehRCgyk5rljDQLKUO+cRJCnduDyn11+zGZIc9Z48= github.com/aybabtme/iocontrol v0.0.0-20150809002002-ad15bcfc95a0/go.mod h1:6L7zgvqo0idzI7IO8de6ZC051AfXb5ipkIJ7bIA2tGA= github.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLju8= @@ -238,8 +238,8 @@ golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY= golang.org/x/net v0.26.0 h1:soB7SVo0PWrY4vPW/+ay0jKDNScG2X9wFeYlXIvJsOQ= golang.org/x/net v0.26.0/go.mod h1:5YKkiSynbBIh3p6iOc/vibscux0x38BZDkn8sCUPxHE= -golang.org/x/oauth2 v0.22.0 h1:BzDx2FehcG7jJwgWLELCdmLuxk2i+x9UDpSiss2u0ZA= -golang.org/x/oauth2 v0.22.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI= +golang.org/x/oauth2 v0.23.0 h1:PbgcYx2W7i4LvjJWEbf0ngHV6qJYr86PkAV3bXdLEbs= +golang.org/x/oauth2 v0.23.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= diff --git a/internal/auth0/connection/expand.go b/internal/auth0/connection/expand.go index 6df2133d..81cd7a15 100644 --- a/internal/auth0/connection/expand.go +++ b/internal/auth0/connection/expand.go @@ -329,6 +329,7 @@ func expandConnectionOptionsAuth0(_ *schema.ResourceData, config cty.Value) (int Configuration: value.MapOfStrings(config.GetAttr("configuration")), Precedence: value.Strings(config.GetAttr("precedence")), Attributes: expandConnectionOptionsAttributes(config.GetAttr("attributes")), + StrategyVersion: value.Int(config.GetAttr("strategy_version")), } config.GetAttr("validation").ForEachElement( @@ -507,6 +508,7 @@ func expandConnectionOptionsOAuth2(data *schema.ResourceData, config cty.Value) LogoURL: value.String(config.GetAttr("icon_url")), PKCEEnabled: value.Bool(config.GetAttr("pkce_enabled")), Scripts: value.MapOfStrings(config.GetAttr("scripts")), + StrategyVersion: value.Int(config.GetAttr("strategy_version")), } expandConnectionOptionsScopes(data, options) @@ -691,6 +693,7 @@ func expandConnectionOptionsAD(_ *schema.ResourceData, config cty.Value) (interf NonPersistentAttrs: value.Strings(config.GetAttr("non_persistent_attrs")), BruteForceProtection: value.Bool(config.GetAttr("brute_force_protection")), DisableSelfServiceChangePassword: value.Bool(config.GetAttr("disable_self_service_change_password")), + StrategyVersion: value.Int(config.GetAttr("strategy_version")), } options.SetUserAttributes = value.String(config.GetAttr("set_user_root_attributes")) @@ -721,6 +724,7 @@ func expandConnectionOptionsAzureAD(data *schema.ResourceData, config cty.Value) IdentityAPI: value.String(config.GetAttr("identity_api")), NonPersistentAttrs: value.Strings(config.GetAttr("non_persistent_attrs")), TrustEmailVerified: value.String(config.GetAttr("should_trust_email_verified_connection")), + StrategyVersion: value.Int(config.GetAttr("strategy_version")), } options.SetUserAttributes = value.String(config.GetAttr("set_user_root_attributes")) @@ -850,6 +854,7 @@ func expandConnectionOptionsSAML(_ *schema.ResourceData, config cty.Value) (inte EntityID: value.String(config.GetAttr("entity_id")), MetadataXML: value.String(config.GetAttr("metadata_xml")), MetadataURL: value.String(config.GetAttr("metadata_url")), + StrategyVersion: value.Int(config.GetAttr("strategy_version")), } options.SetUserAttributes = value.String(config.GetAttr("set_user_root_attributes")) @@ -907,6 +912,7 @@ func expandConnectionOptionsADFS(_ *schema.ResourceData, config cty.Value) (inte EnableUsersAPI: value.Bool(config.GetAttr("api_enable_users")), TrustEmailVerified: value.String(config.GetAttr("should_trust_email_verified_connection")), NonPersistentAttrs: value.Strings(config.GetAttr("non_persistent_attrs")), + StrategyVersion: value.Int(config.GetAttr("strategy_version")), } options.SetUserAttributes = value.String(config.GetAttr("set_user_root_attributes")) diff --git a/internal/auth0/connection/flatten.go b/internal/auth0/connection/flatten.go index b266fd96..9d5e61d9 100644 --- a/internal/auth0/connection/flatten.go +++ b/internal/auth0/connection/flatten.go @@ -323,6 +323,7 @@ func flattenConnectionOptionsAuth0( "set_user_root_attributes": options.GetSetUserAttributes(), "upstream_params": upstreamParams, "precedence": options.GetPrecedence(), + "strategy_version": options.GetStrategyVersion(), } if options.Attributes != nil { @@ -450,6 +451,7 @@ func flattenConnectionOptionsOAuth2( "non_persistent_attrs": options.GetNonPersistentAttrs(), "icon_url": options.GetLogoURL(), "pkce_enabled": options.GetPKCEEnabled(), + "strategy_version": options.GetStrategyVersion(), "upstream_params": upstreamParams, } @@ -813,6 +815,7 @@ func flattenConnectionOptionsAD( "non_persistent_attrs": options.GetNonPersistentAttrs(), "set_user_root_attributes": options.GetSetUserAttributes(), "disable_self_service_change_password": options.GetDisableSelfServiceChangePassword(), + "strategy_version": options.GetStrategyVersion(), "upstream_params": upstreamParams, } @@ -855,6 +858,7 @@ func flattenConnectionOptionsAzureAD( "non_persistent_attrs": options.GetNonPersistentAttrs(), "should_trust_email_verified_connection": options.GetTrustEmailVerified(), "set_user_root_attributes": options.GetSetUserAttributes(), + "strategy_version": options.GetStrategyVersion(), "upstream_params": upstreamParams, } @@ -890,6 +894,7 @@ func flattenConnectionOptionsADFS( "should_trust_email_verified_connection": options.GetTrustEmailVerified(), "non_persistent_attrs": options.GetNonPersistentAttrs(), "set_user_root_attributes": options.GetSetUserAttributes(), + "strategy_version": options.GetStrategyVersion(), "upstream_params": upstreamParams, } @@ -939,6 +944,7 @@ func flattenConnectionOptionsSAML( "metadata_url": options.GetMetadataURL(), "metadata_xml": data.Get("options.0.metadata_xml").(string), // Does not get read back. "set_user_root_attributes": options.GetSetUserAttributes(), + "strategy_version": options.GetStrategyVersion(), "fields_map": fieldsMap, "upstream_params": upstreamParams, } diff --git a/internal/auth0/connection/resource_clients_test.go b/internal/auth0/connection/resource_clients_test.go index 83daf606..8c7b06d6 100644 --- a/internal/auth0/connection/resource_clients_test.go +++ b/internal/auth0/connection/resource_clients_test.go @@ -163,6 +163,9 @@ resource "auth0_connection_clients" "my_conn_client_assoc" { func TestAccConnectionClientsImport(t *testing.T) { if os.Getenv("AUTH0_DOMAIN") != acctest.RecordingsDomain { // The test runs only with recordings as it requires an initial setup. + // If you need to re-record it, comment out the t.Skip, create the + // resources defined above and fix the IDs in the test before running + // make record. t.Skip() } @@ -172,21 +175,21 @@ func TestAccConnectionClientsImport(t *testing.T) { Config: acctest.ParseTestName(testAccConnectionClientsImport, t.Name()), ResourceName: "auth0_connection.my_conn", ImportState: true, - ImportStateId: "con_ouKiPbGv6eONERfA", + ImportStateId: "con_QfclIwGFilDZfig3", ImportStatePersist: true, }, { Config: acctest.ParseTestName(testAccConnectionClientsImport, t.Name()), ResourceName: "auth0_client.my_client-1", ImportState: true, - ImportStateId: "TGIXl1IBOpFmwBpxuCLsoXwl5OQBa1Z7", + ImportStateId: "iUytqzFf4KueZRmFL7DRFNqn8RrQGu5Q", ImportStatePersist: true, }, { Config: acctest.ParseTestName(testAccConnectionClientsImport, t.Name()), ResourceName: "auth0_connection_clients.my_conn_client_assoc", ImportState: true, - ImportStateId: "con_ouKiPbGv6eONERfA", + ImportStateId: "con_QfclIwGFilDZfig3", ImportStatePersist: true, }, { diff --git a/internal/auth0/connection/resource_test.go b/internal/auth0/connection/resource_test.go index 1cd6b9d0..b4caeeae 100644 --- a/internal/auth0/connection/resource_test.go +++ b/internal/auth0/connection/resource_test.go @@ -23,6 +23,7 @@ func TestAccConnection(t *testing.T) { resource.TestCheckResourceAttr("auth0_connection.my_connection", "metadata.key1", "foo"), resource.TestCheckResourceAttr("auth0_connection.my_connection", "metadata.key2", "bar"), resource.TestCheckNoResourceAttr("auth0_connection.my_connection", "show_as_button"), + resource.TestCheckResourceAttr("auth0_connection.my_connection", "options.0.strategy_version", "2"), resource.TestCheckResourceAttr("auth0_connection.my_connection", "options.0.password_policy", "fair"), resource.TestCheckResourceAttr("auth0_connection.my_connection", "options.0.password_no_personal_info.0.enable", "true"), resource.TestCheckResourceAttr("auth0_connection.my_connection", "options.0.password_dictionary.0.enable", "true"), @@ -72,6 +73,7 @@ resource "auth0_connection" "my_connection" { key2 = "bar" } options { + strategy_version = 2 password_policy = "fair" password_history { enable = true @@ -490,6 +492,7 @@ func TestAccConnectionAD(t *testing.T) { resource.TestCheckResourceAttr("auth0_connection.ad", "options.0.domain_aliases.#", "2"), resource.TestCheckResourceAttr("auth0_connection.ad", "options.0.tenant_domain", "example.com"), resource.TestCheckResourceAttr("auth0_connection.ad", "options.0.use_kerberos", "false"), + resource.TestCheckResourceAttr("auth0_connection.ad", "options.0.strategy_version", "2"), resource.TestCheckTypeSetElemAttr("auth0_connection.ad", "options.0.ips.*", "192.168.1.2"), resource.TestCheckTypeSetElemAttr("auth0_connection.ad", "options.0.ips.*", "192.168.1.1"), resource.TestCheckTypeSetElemAttr("auth0_connection.ad", "options.0.domain_aliases.*", "example.com"), @@ -531,6 +534,7 @@ resource "auth0_connection" "ad" { strategy = "ad" show_as_button = true options { + strategy_version = 2 disable_self_service_change_password = false brute_force_protection = true tenant_domain = "example.com" @@ -587,6 +591,7 @@ func TestAccConnectionAzureAD(t *testing.T) { resource.TestCheckResourceAttr("auth0_connection.azure_ad", "options.0.identity_api", "azure-active-directory-v1.0"), resource.TestCheckResourceAttr("auth0_connection.azure_ad", "options.0.client_id", "123456"), resource.TestCheckResourceAttr("auth0_connection.azure_ad", "options.0.client_secret", "123456"), + resource.TestCheckResourceAttr("auth0_connection.azure_ad", "options.0.strategy_version", "2"), resource.TestCheckResourceAttr("auth0_connection.azure_ad", "options.0.tenant_domain", "example.onmicrosoft.com"), resource.TestCheckResourceAttr("auth0_connection.azure_ad", "options.0.domain", "example.onmicrosoft.com"), resource.TestCheckResourceAttr("auth0_connection.azure_ad", "options.0.domain_aliases.#", "2"), @@ -634,11 +639,12 @@ resource "auth0_connection" "azure_ad" { strategy = "waad" show_as_button = true options { - identity_api = "azure-active-directory-v1.0" - client_id = "123456" - client_secret = "123456" - tenant_domain = "example.onmicrosoft.com" - domain = "example.onmicrosoft.com" + identity_api = "azure-active-directory-v1.0" + client_id = "123456" + client_secret = "123456" + strategy_version = 2 + tenant_domain = "example.onmicrosoft.com" + domain = "example.onmicrosoft.com" domain_aliases = [ "example.com", "api.example.com" @@ -714,6 +720,7 @@ func TestAccConnectionADFS(t *testing.T) { resource.TestCheckResourceAttr("auth0_connection.adfs", "options.0.adfs_server", "https://github.com/raw/auth0/terraform-provider-auth0/b5ed4fc037bcf7be0a8953033a3c3ffa1be17083/test/data/federation_metadata.xml"), resource.TestCheckResourceAttr("auth0_connection.adfs", "options.0.api_enable_users", "false"), resource.TestCheckResourceAttr("auth0_connection.adfs", "options.0.set_user_root_attributes", "on_each_login"), + resource.TestCheckResourceAttr("auth0_connection.adfs", "options.0.strategy_version", "2"), resource.TestCheckResourceAttr("auth0_connection.adfs", "options.0.non_persistent_attrs.#", "2"), resource.TestCheckResourceAttr("auth0_connection.adfs", "options.0.non_persistent_attrs.0", "gender"), resource.TestCheckResourceAttr("auth0_connection.adfs", "options.0.non_persistent_attrs.1", "hair_color"), @@ -760,6 +767,7 @@ resource "auth0_connection" "adfs" { icon_url = "https://example.com/logo.svg" adfs_server = "https://github.com/raw/auth0/terraform-provider-auth0/b5ed4fc037bcf7be0a8953033a3c3ffa1be17083/test/data/federation_metadata.xml" sign_in_endpoint = "https://adfs.provider/wsfed" + strategy_version = 2 api_enable_users = false set_user_root_attributes = "on_each_login" non_persistent_attrs = ["gender","hair_color"] @@ -863,7 +871,7 @@ func TestAccConnectionOIDC(t *testing.T) { resource.TestCheckResourceAttr("auth0_connection.oidc", "options.0.connection_settings.#", "1"), resource.TestCheckResourceAttr("auth0_connection.oidc", "options.0.connection_settings.0.pkce", "disabled"), resource.TestCheckResourceAttr("auth0_connection.oidc", "options.0.attribute_map.#", "1"), - resource.TestCheckResourceAttr("auth0_connection.oidc", "options.0.attribute_map.0.mapping_mode", "basic_profile"), + resource.TestCheckResourceAttr("auth0_connection.oidc", "options.0.attribute_map.0.mapping_mode", "bind_all"), ), }, { @@ -889,7 +897,7 @@ func TestAccConnectionOIDC(t *testing.T) { resource.TestCheckResourceAttr("auth0_connection.oidc", "options.0.connection_settings.#", "1"), resource.TestCheckResourceAttr("auth0_connection.oidc", "options.0.connection_settings.0.pkce", "auto"), resource.TestCheckResourceAttr("auth0_connection.oidc", "options.0.attribute_map.#", "1"), - resource.TestCheckResourceAttr("auth0_connection.oidc", "options.0.attribute_map.0.mapping_mode", "basic_profile"), + resource.TestCheckResourceAttr("auth0_connection.oidc", "options.0.attribute_map.0.mapping_mode", "use_map"), resource.TestCheckResourceAttr("auth0_connection.oidc", "options.0.attribute_map.0.userinfo_scope", "openid email profile groups"), resource.TestCheckResourceAttr("auth0_connection.oidc", "options.0.attribute_map.0.attributes", "{\"email\":\"${context.tokenset.email}\",\"email_verified\":\"${context.tokenset.email_verified}\",\"family_name\":\"${context.tokenset.family_name}\",\"given_name\":\"${context.tokenset.given_name}\",\"name\":\"${context.tokenset.name}\",\"nickname\":\"${context.tokenset.nickname}\",\"picture\":\"${context.tokenset.picture}\"}"), ), @@ -929,8 +937,8 @@ resource "auth0_connection" "oidc" { strategy = "oidc" show_as_button = true options { - client_id = "123456" - client_secret = "123456" + client_id = "123456" + client_secret = "123456" domain_aliases = [ "example.com", "api.example.com" @@ -956,7 +964,7 @@ resource "auth0_connection" "oidc" { } attribute_map { - mapping_mode = "basic_profile" + mapping_mode = "bind_all" } } } @@ -989,7 +997,7 @@ resource "auth0_connection" "oidc" { } attribute_map { - mapping_mode = "basic_profile" + mapping_mode = "use_map" userinfo_scope = "openid email profile groups" attributes = jsonencode({ "name": "$${context.tokenset.name}", @@ -1237,6 +1245,7 @@ func TestAccConnectionOAuth2(t *testing.T) { resource.TestCheckResourceAttr("auth0_connection.oauth2", "strategy", "oauth2"), resource.TestCheckResourceAttr("auth0_connection.oauth2", "options.0.client_id", "123456"), resource.TestCheckResourceAttr("auth0_connection.oauth2", "options.0.client_secret", "123456"), + resource.TestCheckResourceAttr("auth0_connection.oauth2", "options.0.strategy_version", "2"), resource.TestCheckResourceAttr("auth0_connection.oauth2", "options.0.token_endpoint", "https://api.login.yahoo.com/oauth2/get_token"), resource.TestCheckResourceAttr("auth0_connection.oauth2", "options.0.authorization_endpoint", "https://api.login.yahoo.com/oauth2/request_auth"), resource.TestCheckResourceAttr("auth0_connection.oauth2", "options.0.scopes.#", "3"), @@ -1279,6 +1288,7 @@ resource "auth0_connection" "oauth2" { options { client_id = "123456" client_secret = "123456" + strategy_version = 2 token_endpoint = "https://api.login.yahoo.com/oauth2/get_token" authorization_endpoint = "https://api.login.yahoo.com/oauth2/request_auth" scopes = [ "openid", "email", "profile" ] @@ -2201,6 +2211,7 @@ func TestAccConnectionSAML(t *testing.T) { resource.TestCheckResourceAttr("auth0_connection.my_connection", "options.0.sign_in_endpoint", "https://saml-from-metadata-xml.provider/sign_in"), resource.TestCheckResourceAttrSet("auth0_connection.my_connection", "options.0.signing_cert"), resource.TestCheckResourceAttr("auth0_connection.my_connection", "options.0.disable_sign_out", "false"), + resource.TestCheckResourceAttr("auth0_connection.my_connection", "options.0.strategy_version", "2"), resource.TestCheckResourceAttr("auth0_connection.my_connection", "options.0.entity_id", ""), resource.TestCheckResourceAttr("auth0_connection.my_connection", "options.0.idp_initiated.0.client_authorize_query", "type=code&timeout=30"), resource.TestCheckResourceAttr("auth0_connection.my_connection", "options.0.fields_map", "{\"email\":[\"emailaddress\",\"nameidentifier\"],\"family_name\":\"surname\",\"name\":[\"name\",\"nameidentifier\"]}"), @@ -2262,6 +2273,7 @@ resource "auth0_connection" "my_connection" { disable_sign_out = false user_id_attribute = "https://saml.provider/imi/ns/identity-200810" + strategy_version = 2 tenant_domain = "example.com" domain_aliases = ["example.com", "example.coz"] protocol_binding = "urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST" diff --git a/internal/auth0/connection/schema.go b/internal/auth0/connection/schema.go index 58863366..31230eec 100644 --- a/internal/auth0/connection/schema.go +++ b/internal/auth0/connection/schema.go @@ -15,6 +15,7 @@ var resourceSchema = map[string]*schema.Schema{ "display_name": { Type: schema.TypeString, Optional: true, + Computed: true, Description: "Name used in login screen.", }, "is_domain_connection": { diff --git a/test/data/recordings/TestAccConnection.yaml b/test/data/recordings/TestAccConnection.yaml index 37a1ace7..74e12fd4 100644 --- a/test/data/recordings/TestAccConnection.yaml +++ b/test/data/recordings/TestAccConnection.yaml @@ -6,20 +6,20 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 846 + content_length: 867 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"name":"Acceptance-Test-Connection-TestAccConnection","strategy":"auth0","is_domain_connection":true,"metadata":{"key1":"foo","key2":"bar"},"options":{"mfa":{"active":true,"return_enroll_settings":true},"validation":{"username":{"max":40,"min":10}},"passwordPolicy":"fair","password_history":{"enable":true,"size":5},"password_no_personal_info":{"enable":true},"password_dictionary":{"dictionary":["1234","admin","password"],"enable":true},"password_complexity_options":{"min_length":6},"enabledDatabaseCustomization":false,"brute_force_protection":true,"import_mode":false,"disable_signup":false,"requires_username":true,"customScripts":{"get_user":"myFunction"},"configuration":{"foo":"bar"},"non_persistent_attrs":["gender","hair_color"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"disable_self_service_change_password":false}} + {"name":"Acceptance-Test-Connection-TestAccConnection","strategy":"auth0","is_domain_connection":true,"metadata":{"key1":"foo","key2":"bar"},"options":{"mfa":{"active":true,"return_enroll_settings":true},"validation":{"username":{"max":40,"min":10}},"passwordPolicy":"fair","password_history":{"enable":true,"size":5},"password_no_personal_info":{"enable":true},"password_dictionary":{"dictionary":["1234","admin","password"],"enable":true},"password_complexity_options":{"min_length":6},"enabledDatabaseCustomization":false,"brute_force_protection":true,"import_mode":false,"disable_signup":false,"requires_username":true,"customScripts":{"get_user":"myFunction"},"configuration":{"foo":"bar"},"strategy_version":2,"non_persistent_attrs":["gender","hair_color"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"disable_self_service_change_password":false}} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.16.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections method: POST response: @@ -30,33 +30,32 @@ interactions: trailer: {} content_length: -1 uncompressed: false - body: '{"id":"con_dFvRUNNkrPXlSiDw","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"fair","validation":{"username":{"max":40,"min":10}},"password_history":{"enable":true,"size":5},"password_no_personal_info":{"enable":true},"password_dictionary":{"dictionary":["1234","admin","password"],"enable":true},"password_complexity_options":{"min_length":6},"enabledDatabaseCustomization":false,"brute_force_protection":true,"import_mode":false,"disable_signup":false,"requires_username":true,"customScripts":{"get_user":"myFunction"},"non_persistent_attrs":["gender","hair_color"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"disable_self_service_change_password":false,"configuration":{"foo":"2.0$fe4b6c362b1011a21e0abd2ff582b562$3f5b978005ebd74ae949d727e67ba3cc$3b8a7fa370ea85a8ac36e92d2eb21b8ca96714dcb2417f6a62690339a09b3ebc"},"strategy_version":2},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnection","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnection"],"metadata":{"key1":"foo","key2":"bar"}}' + body: '{"id":"con_IPeCaCzy6ARWKhUd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"fair","validation":{"username":{"max":40,"min":10}},"password_history":{"enable":true,"size":5},"password_no_personal_info":{"enable":true},"password_dictionary":{"dictionary":["1234","admin","password"],"enable":true},"password_complexity_options":{"min_length":6},"enabledDatabaseCustomization":false,"brute_force_protection":true,"import_mode":false,"disable_signup":false,"requires_username":true,"customScripts":{"get_user":"myFunction"},"strategy_version":2,"non_persistent_attrs":["gender","hair_color"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"disable_self_service_change_password":false,"configuration":{"foo":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9EUitlTEVneFZlWmlXL1MzU1NFbkp4SVFhRUhBY1NOb0FCcHd1aytmRW9sT3ZRSUVhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJDkzODA3OCRiMDFiOWNhODI0OWNiNGU4NjVkOTJjNGIkMjZlNmRhM2I1YTFhZDIxNzQzMmRhZTFmMWNmNTRjNmI="},"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true}},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnection","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnection"],"metadata":{"key1":"foo","key2":"bar"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 179.745375ms + duration: 196.697917ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.16.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dFvRUNNkrPXlSiDw + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_IPeCaCzy6ARWKhUd method: GET response: proto: HTTP/2.0 @@ -66,33 +65,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_dFvRUNNkrPXlSiDw","options":{"mfa":{"active":true,"return_enroll_settings":true},"validation":{"username":{"max":40,"min":10}},"import_mode":false,"configuration":{"foo":"2.0$fe4b6c362b1011a21e0abd2ff582b562$3f5b978005ebd74ae949d727e67ba3cc$3b8a7fa370ea85a8ac36e92d2eb21b8ca96714dcb2417f6a62690339a09b3ebc"},"customScripts":{"get_user":"myFunction"},"disable_signup":false,"passwordPolicy":"fair","upstream_params":{"screen_name":{"alias":"login_hint"}},"password_history":{"size":5,"enable":true},"strategy_version":2,"requires_username":true,"password_dictionary":{"enable":true,"dictionary":["1234","admin","password"]},"non_persistent_attrs":["gender","hair_color"],"brute_force_protection":true,"password_no_personal_info":{"enable":true},"password_complexity_options":{"min_length":6},"enabledDatabaseCustomization":false,"disable_self_service_change_password":false},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnection","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnection"],"metadata":{"key1":"foo","key2":"bar"}}' + body: '{"id":"con_IPeCaCzy6ARWKhUd","options":{"mfa":{"active":true,"return_enroll_settings":true},"validation":{"username":{"max":40,"min":10}},"import_mode":false,"configuration":{"foo":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9EUitlTEVneFZlWmlXL1MzU1NFbkp4SVFhRUhBY1NOb0FCcHd1aytmRW9sT3ZRSUVhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJDkzODA3OCRiMDFiOWNhODI0OWNiNGU4NjVkOTJjNGIkMjZlNmRhM2I1YTFhZDIxNzQzMmRhZTFmMWNmNTRjNmI="},"customScripts":{"get_user":"myFunction"},"disable_signup":false,"passwordPolicy":"fair","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"upstream_params":{"screen_name":{"alias":"login_hint"}},"password_history":{"size":5,"enable":true},"strategy_version":2,"requires_username":true,"password_dictionary":{"enable":true,"dictionary":["1234","admin","password"]},"non_persistent_attrs":["gender","hair_color"],"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true,"password_no_personal_info":{"enable":true},"password_complexity_options":{"min_length":6},"enabledDatabaseCustomization":false,"disable_self_service_change_password":false},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnection","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnection"],"metadata":{"key1":"foo","key2":"bar"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 174.67525ms + duration: 144.738667ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.16.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dFvRUNNkrPXlSiDw + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_IPeCaCzy6ARWKhUd method: GET response: proto: HTTP/2.0 @@ -102,33 +100,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_dFvRUNNkrPXlSiDw","options":{"mfa":{"active":true,"return_enroll_settings":true},"validation":{"username":{"max":40,"min":10}},"import_mode":false,"configuration":{"foo":"2.0$fe4b6c362b1011a21e0abd2ff582b562$3f5b978005ebd74ae949d727e67ba3cc$3b8a7fa370ea85a8ac36e92d2eb21b8ca96714dcb2417f6a62690339a09b3ebc"},"customScripts":{"get_user":"myFunction"},"disable_signup":false,"passwordPolicy":"fair","upstream_params":{"screen_name":{"alias":"login_hint"}},"password_history":{"size":5,"enable":true},"strategy_version":2,"requires_username":true,"password_dictionary":{"enable":true,"dictionary":["1234","admin","password"]},"non_persistent_attrs":["gender","hair_color"],"brute_force_protection":true,"password_no_personal_info":{"enable":true},"password_complexity_options":{"min_length":6},"enabledDatabaseCustomization":false,"disable_self_service_change_password":false},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnection","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnection"],"metadata":{"key1":"foo","key2":"bar"}}' + body: '{"id":"con_IPeCaCzy6ARWKhUd","options":{"mfa":{"active":true,"return_enroll_settings":true},"validation":{"username":{"max":40,"min":10}},"import_mode":false,"configuration":{"foo":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9EUitlTEVneFZlWmlXL1MzU1NFbkp4SVFhRUhBY1NOb0FCcHd1aytmRW9sT3ZRSUVhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJDkzODA3OCRiMDFiOWNhODI0OWNiNGU4NjVkOTJjNGIkMjZlNmRhM2I1YTFhZDIxNzQzMmRhZTFmMWNmNTRjNmI="},"customScripts":{"get_user":"myFunction"},"disable_signup":false,"passwordPolicy":"fair","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"upstream_params":{"screen_name":{"alias":"login_hint"}},"password_history":{"size":5,"enable":true},"strategy_version":2,"requires_username":true,"password_dictionary":{"enable":true,"dictionary":["1234","admin","password"]},"non_persistent_attrs":["gender","hair_color"],"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true,"password_no_personal_info":{"enable":true},"password_complexity_options":{"min_length":6},"enabledDatabaseCustomization":false,"disable_self_service_change_password":false},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnection","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnection"],"metadata":{"key1":"foo","key2":"bar"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 203.55225ms + duration: 144.499625ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.16.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dFvRUNNkrPXlSiDw + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_IPeCaCzy6ARWKhUd method: GET response: proto: HTTP/2.0 @@ -138,33 +135,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_dFvRUNNkrPXlSiDw","options":{"mfa":{"active":true,"return_enroll_settings":true},"validation":{"username":{"max":40,"min":10}},"import_mode":false,"configuration":{"foo":"2.0$fe4b6c362b1011a21e0abd2ff582b562$3f5b978005ebd74ae949d727e67ba3cc$3b8a7fa370ea85a8ac36e92d2eb21b8ca96714dcb2417f6a62690339a09b3ebc"},"customScripts":{"get_user":"myFunction"},"disable_signup":false,"passwordPolicy":"fair","upstream_params":{"screen_name":{"alias":"login_hint"}},"password_history":{"size":5,"enable":true},"strategy_version":2,"requires_username":true,"password_dictionary":{"enable":true,"dictionary":["1234","admin","password"]},"non_persistent_attrs":["gender","hair_color"],"brute_force_protection":true,"password_no_personal_info":{"enable":true},"password_complexity_options":{"min_length":6},"enabledDatabaseCustomization":false,"disable_self_service_change_password":false},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnection","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnection"],"metadata":{"key1":"foo","key2":"bar"}}' + body: '{"id":"con_IPeCaCzy6ARWKhUd","options":{"mfa":{"active":true,"return_enroll_settings":true},"validation":{"username":{"max":40,"min":10}},"import_mode":false,"configuration":{"foo":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9EUitlTEVneFZlWmlXL1MzU1NFbkp4SVFhRUhBY1NOb0FCcHd1aytmRW9sT3ZRSUVhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJDkzODA3OCRiMDFiOWNhODI0OWNiNGU4NjVkOTJjNGIkMjZlNmRhM2I1YTFhZDIxNzQzMmRhZTFmMWNmNTRjNmI="},"customScripts":{"get_user":"myFunction"},"disable_signup":false,"passwordPolicy":"fair","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"upstream_params":{"screen_name":{"alias":"login_hint"}},"password_history":{"size":5,"enable":true},"strategy_version":2,"requires_username":true,"password_dictionary":{"enable":true,"dictionary":["1234","admin","password"]},"non_persistent_attrs":["gender","hair_color"],"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true,"password_no_personal_info":{"enable":true},"password_complexity_options":{"min_length":6},"enabledDatabaseCustomization":false,"disable_self_service_change_password":false},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnection","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnection"],"metadata":{"key1":"foo","key2":"bar"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.879708ms + duration: 142.853625ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.16.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dFvRUNNkrPXlSiDw + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_IPeCaCzy6ARWKhUd method: GET response: proto: HTTP/2.0 @@ -174,13 +170,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_dFvRUNNkrPXlSiDw","options":{"mfa":{"active":true,"return_enroll_settings":true},"validation":{"username":{"max":40,"min":10}},"import_mode":false,"configuration":{"foo":"2.0$fe4b6c362b1011a21e0abd2ff582b562$3f5b978005ebd74ae949d727e67ba3cc$3b8a7fa370ea85a8ac36e92d2eb21b8ca96714dcb2417f6a62690339a09b3ebc"},"customScripts":{"get_user":"myFunction"},"disable_signup":false,"passwordPolicy":"fair","upstream_params":{"screen_name":{"alias":"login_hint"}},"password_history":{"size":5,"enable":true},"strategy_version":2,"requires_username":true,"password_dictionary":{"enable":true,"dictionary":["1234","admin","password"]},"non_persistent_attrs":["gender","hair_color"],"brute_force_protection":true,"password_no_personal_info":{"enable":true},"password_complexity_options":{"min_length":6},"enabledDatabaseCustomization":false,"disable_self_service_change_password":false},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnection","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnection"],"metadata":{"key1":"foo","key2":"bar"}}' + body: '{"id":"con_IPeCaCzy6ARWKhUd","options":{"mfa":{"active":true,"return_enroll_settings":true},"validation":{"username":{"max":40,"min":10}},"import_mode":false,"configuration":{"foo":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9EUitlTEVneFZlWmlXL1MzU1NFbkp4SVFhRUhBY1NOb0FCcHd1aytmRW9sT3ZRSUVhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJDkzODA3OCRiMDFiOWNhODI0OWNiNGU4NjVkOTJjNGIkMjZlNmRhM2I1YTFhZDIxNzQzMmRhZTFmMWNmNTRjNmI="},"customScripts":{"get_user":"myFunction"},"disable_signup":false,"passwordPolicy":"fair","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"upstream_params":{"screen_name":{"alias":"login_hint"}},"password_history":{"size":5,"enable":true},"strategy_version":2,"requires_username":true,"password_dictionary":{"enable":true,"dictionary":["1234","admin","password"]},"non_persistent_attrs":["gender","hair_color"],"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true,"password_no_personal_info":{"enable":true},"password_complexity_options":{"min_length":6},"enabledDatabaseCustomization":false,"disable_self_service_change_password":false},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnection","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnection"],"metadata":{"key1":"foo","key2":"bar"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 134.633084ms + duration: 161.016292ms - id: 5 request: proto: HTTP/1.1 @@ -199,8 +195,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.16.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dFvRUNNkrPXlSiDw + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_IPeCaCzy6ARWKhUd method: PATCH response: proto: HTTP/2.0 @@ -210,33 +206,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_dFvRUNNkrPXlSiDw","options":{"mfa":{"active":true,"return_enroll_settings":false},"import_mode":false,"configuration":{"foo":"2.0$36d9c7cd70c86020f261b3d4281e938e$9293156bc470086234dcdd559893f616$5699ba9622269296277092f8bc60d4652b6103e2da8bd4cb7d310213bcb5bb30"},"customScripts":{"get_user":"myFunction"},"disable_signup":false,"passwordPolicy":"fair","password_history":{"size":5,"enable":true},"requires_username":true,"non_persistent_attrs":[],"enable_script_context":true,"brute_force_protection":false,"set_user_root_attributes":"on_first_login","password_no_personal_info":{"enable":true},"enabledDatabaseCustomization":true,"disable_self_service_change_password":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnection","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnection"],"metadata":{"key1":"foo","key2":"bar"}}' + body: '{"id":"con_IPeCaCzy6ARWKhUd","options":{"mfa":{"active":true,"return_enroll_settings":false},"import_mode":false,"configuration":{"foo":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9EKy96WEVnd0hsSTFHazdwVy9jdWduVU1hRUhodEVhKzdTR3dqdU9RaXNrK3V2VkFhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJGI3N2YzMiRmZThiZmEwZDUwOWI2MmM0MzY1OGIzYTUkMjc2MDgxOWE0MDc3ZTM4ZDIyOGYzYjM4ODY4OTM5MjY="},"customScripts":{"get_user":"myFunction"},"disable_signup":false,"passwordPolicy":"fair","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"password_history":{"size":5,"enable":true},"requires_username":true,"non_persistent_attrs":[],"enable_script_context":true,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":false,"set_user_root_attributes":"on_first_login","password_no_personal_info":{"enable":true},"enabledDatabaseCustomization":true,"disable_self_service_change_password":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnection","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnection"],"metadata":{"key1":"foo","key2":"bar"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 272.759625ms + duration: 402.314584ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.16.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dFvRUNNkrPXlSiDw + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_IPeCaCzy6ARWKhUd method: GET response: proto: HTTP/2.0 @@ -246,33 +241,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_dFvRUNNkrPXlSiDw","options":{"mfa":{"active":true,"return_enroll_settings":false},"import_mode":false,"configuration":{"foo":"2.0$36d9c7cd70c86020f261b3d4281e938e$9293156bc470086234dcdd559893f616$5699ba9622269296277092f8bc60d4652b6103e2da8bd4cb7d310213bcb5bb30"},"customScripts":{"get_user":"myFunction"},"disable_signup":false,"passwordPolicy":"fair","password_history":{"size":5,"enable":true},"requires_username":true,"non_persistent_attrs":[],"enable_script_context":true,"brute_force_protection":false,"set_user_root_attributes":"on_first_login","password_no_personal_info":{"enable":true},"enabledDatabaseCustomization":true,"disable_self_service_change_password":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnection","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnection"],"metadata":{"key1":"foo","key2":"bar"}}' + body: '{"id":"con_IPeCaCzy6ARWKhUd","options":{"mfa":{"active":true,"return_enroll_settings":false},"import_mode":false,"configuration":{"foo":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9EKy96WEVnd0hsSTFHazdwVy9jdWduVU1hRUhodEVhKzdTR3dqdU9RaXNrK3V2VkFhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJGI3N2YzMiRmZThiZmEwZDUwOWI2MmM0MzY1OGIzYTUkMjc2MDgxOWE0MDc3ZTM4ZDIyOGYzYjM4ODY4OTM5MjY="},"customScripts":{"get_user":"myFunction"},"disable_signup":false,"passwordPolicy":"fair","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"password_history":{"size":5,"enable":true},"requires_username":true,"non_persistent_attrs":[],"enable_script_context":true,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":false,"set_user_root_attributes":"on_first_login","password_no_personal_info":{"enable":true},"enabledDatabaseCustomization":true,"disable_self_service_change_password":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnection","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnection"],"metadata":{"key1":"foo","key2":"bar"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.177916ms + duration: 150.11375ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.16.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dFvRUNNkrPXlSiDw + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_IPeCaCzy6ARWKhUd method: GET response: proto: HTTP/2.0 @@ -282,13 +276,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_dFvRUNNkrPXlSiDw","options":{"mfa":{"active":true,"return_enroll_settings":false},"import_mode":false,"configuration":{"foo":"2.0$36d9c7cd70c86020f261b3d4281e938e$9293156bc470086234dcdd559893f616$5699ba9622269296277092f8bc60d4652b6103e2da8bd4cb7d310213bcb5bb30"},"customScripts":{"get_user":"myFunction"},"disable_signup":false,"passwordPolicy":"fair","password_history":{"size":5,"enable":true},"requires_username":true,"non_persistent_attrs":[],"enable_script_context":true,"brute_force_protection":false,"set_user_root_attributes":"on_first_login","password_no_personal_info":{"enable":true},"enabledDatabaseCustomization":true,"disable_self_service_change_password":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnection","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnection"],"metadata":{"key1":"foo","key2":"bar"}}' + body: '{"id":"con_IPeCaCzy6ARWKhUd","options":{"mfa":{"active":true,"return_enroll_settings":false},"import_mode":false,"configuration":{"foo":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9EKy96WEVnd0hsSTFHazdwVy9jdWduVU1hRUhodEVhKzdTR3dqdU9RaXNrK3V2VkFhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJGI3N2YzMiRmZThiZmEwZDUwOWI2MmM0MzY1OGIzYTUkMjc2MDgxOWE0MDc3ZTM4ZDIyOGYzYjM4ODY4OTM5MjY="},"customScripts":{"get_user":"myFunction"},"disable_signup":false,"passwordPolicy":"fair","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"password_history":{"size":5,"enable":true},"requires_username":true,"non_persistent_attrs":[],"enable_script_context":true,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":false,"set_user_root_attributes":"on_first_login","password_no_personal_info":{"enable":true},"enabledDatabaseCustomization":true,"disable_self_service_change_password":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnection","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnection"],"metadata":{"key1":"foo","key2":"bar"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.603042ms + duration: 137.584417ms - id: 8 request: proto: HTTP/1.1 @@ -306,8 +300,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.16.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dFvRUNNkrPXlSiDw + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_IPeCaCzy6ARWKhUd method: DELETE response: proto: HTTP/2.0 @@ -317,10 +311,10 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2023-03-16T09:23:13.215Z"}' + body: '{"deleted_at":"2024-09-12T21:27:48.639Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 183.888375ms + duration: 147.271166ms diff --git a/test/data/recordings/TestAccConnectionAD.yaml b/test/data/recordings/TestAccConnectionAD.yaml index a9d8a412..f0549cad 100644 --- a/test/data/recordings/TestAccConnectionAD.yaml +++ b/test/data/recordings/TestAccConnectionAD.yaml @@ -6,20 +6,20 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 395 + content_length: 416 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"name":"Acceptance-Test-AD-TestAccConnectionAD","strategy":"ad","show_as_button":true,"options":{"tenant_domain":"example.com","domain_aliases":["api.example.com","example.com"],"ips":["192.168.1.1","192.168.1.2"],"brute_force_protection":true,"non_persistent_attrs":["ethnicity","gender"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"disable_self_service_change_password":false}} + {"name":"Acceptance-Test-AD-TestAccConnectionAD","strategy":"ad","show_as_button":true,"options":{"strategy_version":2,"tenant_domain":"example.com","domain_aliases":["api.example.com","example.com"],"ips":["192.168.1.1","192.168.1.2"],"brute_force_protection":true,"non_persistent_attrs":["ethnicity","gender"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"disable_self_service_change_password":false}} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections method: POST response: @@ -28,35 +28,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 622 + content_length: 642 uncompressed: false - body: '{"id":"con_yAtnohItHFcriZzk","options":{"tenant_domain":"example.com","domain_aliases":["api.example.com","example.com"],"ips":["192.168.1.1","192.168.1.2"],"brute_force_protection":true,"non_persistent_attrs":["ethnicity","gender"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"disable_self_service_change_password":false},"strategy":"ad","name":"Acceptance-Test-AD-TestAccConnectionAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/ad/lmMkUOn0gQFneCfrfV7VT46B2raRSFcS","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-AD-TestAccConnectionAD"]}' + body: '{"id":"con_OoLY9skaNl8vhQ80","options":{"strategy_version":2,"tenant_domain":"example.com","domain_aliases":["api.example.com","example.com"],"ips":["192.168.1.1","192.168.1.2"],"brute_force_protection":true,"non_persistent_attrs":["ethnicity","gender"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"disable_self_service_change_password":false},"strategy":"ad","name":"Acceptance-Test-AD-TestAccConnectionAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/ad/AnKGKFnIhoZk5iFJXFrEEPqoLmB2Q4ey","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-AD-TestAccConnectionAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 209.435167ms + duration: 171.225583ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_yAtnohItHFcriZzk + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_OoLY9skaNl8vhQ80 method: GET response: proto: HTTP/2.0 @@ -66,33 +65,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_yAtnohItHFcriZzk","options":{"ips":["192.168.1.1","192.168.1.2"],"tenant_domain":"example.com","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"non_persistent_attrs":["ethnicity","gender"],"brute_force_protection":true,"disable_self_service_change_password":false},"strategy":"ad","name":"Acceptance-Test-AD-TestAccConnectionAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/ad/lmMkUOn0gQFneCfrfV7VT46B2raRSFcS","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-AD-TestAccConnectionAD"]}' + body: '{"id":"con_OoLY9skaNl8vhQ80","options":{"ips":["192.168.1.1","192.168.1.2"],"tenant_domain":"example.com","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"strategy_version":2,"non_persistent_attrs":["ethnicity","gender"],"brute_force_protection":true,"disable_self_service_change_password":false},"strategy":"ad","name":"Acceptance-Test-AD-TestAccConnectionAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/ad/AnKGKFnIhoZk5iFJXFrEEPqoLmB2Q4ey","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-AD-TestAccConnectionAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 101.596875ms + duration: 143.382708ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_yAtnohItHFcriZzk + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_OoLY9skaNl8vhQ80 method: GET response: proto: HTTP/2.0 @@ -102,33 +100,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_yAtnohItHFcriZzk","options":{"ips":["192.168.1.1","192.168.1.2"],"tenant_domain":"example.com","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"non_persistent_attrs":["ethnicity","gender"],"brute_force_protection":true,"disable_self_service_change_password":false},"strategy":"ad","name":"Acceptance-Test-AD-TestAccConnectionAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/ad/lmMkUOn0gQFneCfrfV7VT46B2raRSFcS","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-AD-TestAccConnectionAD"]}' + body: '{"id":"con_OoLY9skaNl8vhQ80","options":{"ips":["192.168.1.1","192.168.1.2"],"tenant_domain":"example.com","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"strategy_version":2,"non_persistent_attrs":["ethnicity","gender"],"brute_force_protection":true,"disable_self_service_change_password":false},"strategy":"ad","name":"Acceptance-Test-AD-TestAccConnectionAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/ad/AnKGKFnIhoZk5iFJXFrEEPqoLmB2Q4ey","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-AD-TestAccConnectionAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 102.970333ms + duration: 142.16325ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_yAtnohItHFcriZzk + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_OoLY9skaNl8vhQ80 method: GET response: proto: HTTP/2.0 @@ -138,33 +135,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_yAtnohItHFcriZzk","options":{"ips":["192.168.1.1","192.168.1.2"],"tenant_domain":"example.com","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"non_persistent_attrs":["ethnicity","gender"],"brute_force_protection":true,"disable_self_service_change_password":false},"strategy":"ad","name":"Acceptance-Test-AD-TestAccConnectionAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/ad/lmMkUOn0gQFneCfrfV7VT46B2raRSFcS","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-AD-TestAccConnectionAD"]}' + body: '{"id":"con_OoLY9skaNl8vhQ80","options":{"ips":["192.168.1.1","192.168.1.2"],"tenant_domain":"example.com","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"strategy_version":2,"non_persistent_attrs":["ethnicity","gender"],"brute_force_protection":true,"disable_self_service_change_password":false},"strategy":"ad","name":"Acceptance-Test-AD-TestAccConnectionAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/ad/AnKGKFnIhoZk5iFJXFrEEPqoLmB2Q4ey","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-AD-TestAccConnectionAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 133.853042ms + duration: 141.087084ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_yAtnohItHFcriZzk + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_OoLY9skaNl8vhQ80 method: GET response: proto: HTTP/2.0 @@ -174,13 +170,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_yAtnohItHFcriZzk","options":{"ips":["192.168.1.1","192.168.1.2"],"tenant_domain":"example.com","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"non_persistent_attrs":["ethnicity","gender"],"brute_force_protection":true,"disable_self_service_change_password":false},"strategy":"ad","name":"Acceptance-Test-AD-TestAccConnectionAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/ad/lmMkUOn0gQFneCfrfV7VT46B2raRSFcS","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-AD-TestAccConnectionAD"]}' + body: '{"id":"con_OoLY9skaNl8vhQ80","options":{"ips":["192.168.1.1","192.168.1.2"],"tenant_domain":"example.com","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"strategy_version":2,"non_persistent_attrs":["ethnicity","gender"],"brute_force_protection":true,"disable_self_service_change_password":false},"strategy":"ad","name":"Acceptance-Test-AD-TestAccConnectionAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/ad/AnKGKFnIhoZk5iFJXFrEEPqoLmB2Q4ey","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-AD-TestAccConnectionAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 176.196ms + duration: 137.881625ms - id: 5 request: proto: HTTP/1.1 @@ -199,8 +195,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_yAtnohItHFcriZzk + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_OoLY9skaNl8vhQ80 method: PATCH response: proto: HTTP/2.0 @@ -210,33 +206,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_yAtnohItHFcriZzk","options":{"ips":["192.168.1.1","192.168.1.2"],"tenant_domain":"example.com","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"non_persistent_attrs":["ethnicity","gender"],"brute_force_protection":true,"set_user_root_attributes":"on_first_login","disable_self_service_change_password":true},"strategy":"ad","name":"Acceptance-Test-AD-TestAccConnectionAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/ad/lmMkUOn0gQFneCfrfV7VT46B2raRSFcS","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-AD-TestAccConnectionAD"]}' + body: '{"id":"con_OoLY9skaNl8vhQ80","options":{"ips":["192.168.1.1","192.168.1.2"],"tenant_domain":"example.com","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"non_persistent_attrs":["ethnicity","gender"],"brute_force_protection":true,"set_user_root_attributes":"on_first_login","disable_self_service_change_password":true},"strategy":"ad","name":"Acceptance-Test-AD-TestAccConnectionAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/ad/AnKGKFnIhoZk5iFJXFrEEPqoLmB2Q4ey","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-AD-TestAccConnectionAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 163.709ms + duration: 250.544042ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_yAtnohItHFcriZzk + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_OoLY9skaNl8vhQ80 method: GET response: proto: HTTP/2.0 @@ -246,33 +241,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_yAtnohItHFcriZzk","options":{"ips":["192.168.1.1","192.168.1.2"],"tenant_domain":"example.com","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"non_persistent_attrs":["ethnicity","gender"],"brute_force_protection":true,"set_user_root_attributes":"on_first_login","disable_self_service_change_password":true},"strategy":"ad","name":"Acceptance-Test-AD-TestAccConnectionAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/ad/lmMkUOn0gQFneCfrfV7VT46B2raRSFcS","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-AD-TestAccConnectionAD"]}' + body: '{"id":"con_OoLY9skaNl8vhQ80","options":{"ips":["192.168.1.1","192.168.1.2"],"tenant_domain":"example.com","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"non_persistent_attrs":["ethnicity","gender"],"brute_force_protection":true,"set_user_root_attributes":"on_first_login","disable_self_service_change_password":true},"strategy":"ad","name":"Acceptance-Test-AD-TestAccConnectionAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/ad/AnKGKFnIhoZk5iFJXFrEEPqoLmB2Q4ey","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-AD-TestAccConnectionAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.574666ms + duration: 155.177ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_yAtnohItHFcriZzk + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_OoLY9skaNl8vhQ80 method: GET response: proto: HTTP/2.0 @@ -282,13 +276,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_yAtnohItHFcriZzk","options":{"ips":["192.168.1.1","192.168.1.2"],"tenant_domain":"example.com","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"non_persistent_attrs":["ethnicity","gender"],"brute_force_protection":true,"set_user_root_attributes":"on_first_login","disable_self_service_change_password":true},"strategy":"ad","name":"Acceptance-Test-AD-TestAccConnectionAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/ad/lmMkUOn0gQFneCfrfV7VT46B2raRSFcS","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-AD-TestAccConnectionAD"]}' + body: '{"id":"con_OoLY9skaNl8vhQ80","options":{"ips":["192.168.1.1","192.168.1.2"],"tenant_domain":"example.com","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"non_persistent_attrs":["ethnicity","gender"],"brute_force_protection":true,"set_user_root_attributes":"on_first_login","disable_self_service_change_password":true},"strategy":"ad","name":"Acceptance-Test-AD-TestAccConnectionAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/ad/AnKGKFnIhoZk5iFJXFrEEPqoLmB2Q4ey","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-AD-TestAccConnectionAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.606708ms + duration: 151.26925ms - id: 8 request: proto: HTTP/1.1 @@ -306,8 +300,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/latest - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_yAtnohItHFcriZzk + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_OoLY9skaNl8vhQ80 method: DELETE response: proto: HTTP/2.0 @@ -317,10 +311,10 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2023-11-08T12:52:41.530Z"}' + body: '{"deleted_at":"2024-09-12T21:27:16.594Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 106.59675ms + duration: 150.868083ms diff --git a/test/data/recordings/TestAccConnectionADFS.yaml b/test/data/recordings/TestAccConnectionADFS.yaml index 45b9c4a8..8ff24d2d 100644 --- a/test/data/recordings/TestAccConnectionADFS.yaml +++ b/test/data/recordings/TestAccConnectionADFS.yaml @@ -6,20 +6,20 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 622 + content_length: 643 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"name":"Acceptance-Test-ADFS-TestAccConnectionADFS","strategy":"adfs","show_as_button":true,"options":{"tenant_domain":"example.auth0.com","domain_aliases":["example.com"],"icon_url":"https://example.com/logo.svg","adfs_server":"https://github.com/raw/auth0/terraform-provider-auth0/b5ed4fc037bcf7be0a8953033a3c3ffa1be17083/test/data/federation_metadata.xml","api_enable_users":false,"non_persistent_attrs":["gender","hair_color"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"signInEndpoint":"https://adfs.provider/wsfed","should_trust_email_verified_connection":"always_set_emails_as_verified"}} + {"name":"Acceptance-Test-ADFS-TestAccConnectionADFS","strategy":"adfs","show_as_button":true,"options":{"strategy_version":2,"tenant_domain":"example.auth0.com","domain_aliases":["example.com"],"icon_url":"https://example.com/logo.svg","adfs_server":"https://github.com/raw/auth0/terraform-provider-auth0/b5ed4fc037bcf7be0a8953033a3c3ffa1be17083/test/data/federation_metadata.xml","api_enable_users":false,"non_persistent_attrs":["gender","hair_color"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"signInEndpoint":"https://adfs.provider/wsfed","should_trust_email_verified_connection":"always_set_emails_as_verified"}} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections method: POST response: @@ -28,35 +28,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 872 + content_length: 868 uncompressed: false - body: '{"id":"con_P1pga8T8U8vGt5dP","options":{"tenant_domain":"example.auth0.com","domain_aliases":["example.com"],"icon_url":"https://example.com/logo.svg","adfs_server":"https://github.com/raw/auth0/terraform-provider-auth0/b5ed4fc037bcf7be0a8953033a3c3ffa1be17083/test/data/federation_metadata.xml","api_enable_users":false,"non_persistent_attrs":["gender","hair_color"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"signInEndpoint":"https://adfs.provider/wsfed","should_trust_email_verified_connection":"always_set_emails_as_verified","thumbprints":[]},"strategy":"adfs","name":"Acceptance-Test-ADFS-TestAccConnectionADFS","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/adfs/A57GHZ3M","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-ADFS-TestAccConnectionADFS"]}' + body: '{"id":"con_rYP4biAVSsETivE3","options":{"strategy_version":2,"tenant_domain":"example.auth0.com","domain_aliases":["example.com"],"icon_url":"https://example.com/logo.svg","adfs_server":"https://github.com/raw/auth0/terraform-provider-auth0/b5ed4fc037bcf7be0a8953033a3c3ffa1be17083/test/data/federation_metadata.xml","api_enable_users":false,"non_persistent_attrs":["gender","hair_color"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"signInEndpoint":"https://adfs.provider/wsfed","should_trust_email_verified_connection":"always_set_emails_as_verified","thumbprints":[]},"strategy":"adfs","name":"Acceptance-Test-ADFS-TestAccConnectionADFS","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/adfs/CbV08lsz","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-ADFS-TestAccConnectionADFS"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 379.954208ms + duration: 364.488334ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_P1pga8T8U8vGt5dP + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_rYP4biAVSsETivE3 method: GET response: proto: HTTP/2.0 @@ -66,33 +65,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_P1pga8T8U8vGt5dP","options":{"icon_url":"https://example.com/logo.svg","adfs_server":"https://github.com/raw/auth0/terraform-provider-auth0/b5ed4fc037bcf7be0a8953033a3c3ffa1be17083/test/data/federation_metadata.xml","thumbprints":[],"tenant_domain":"example.auth0.com","domain_aliases":["example.com"],"signInEndpoint":"https://adfs.provider/wsfed","upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":false,"non_persistent_attrs":["gender","hair_color"],"should_trust_email_verified_connection":"always_set_emails_as_verified"},"strategy":"adfs","name":"Acceptance-Test-ADFS-TestAccConnectionADFS","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/adfs/A57GHZ3M","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-ADFS-TestAccConnectionADFS"]}' + body: '{"id":"con_rYP4biAVSsETivE3","options":{"icon_url":"https://example.com/logo.svg","adfs_server":"https://github.com/raw/auth0/terraform-provider-auth0/b5ed4fc037bcf7be0a8953033a3c3ffa1be17083/test/data/federation_metadata.xml","thumbprints":[],"tenant_domain":"example.auth0.com","domain_aliases":["example.com"],"signInEndpoint":"https://adfs.provider/wsfed","upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":false,"strategy_version":2,"non_persistent_attrs":["gender","hair_color"],"should_trust_email_verified_connection":"always_set_emails_as_verified"},"strategy":"adfs","name":"Acceptance-Test-ADFS-TestAccConnectionADFS","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/adfs/CbV08lsz","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-ADFS-TestAccConnectionADFS"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 145.003792ms + duration: 158.704083ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_P1pga8T8U8vGt5dP + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_rYP4biAVSsETivE3 method: GET response: proto: HTTP/2.0 @@ -102,33 +100,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_P1pga8T8U8vGt5dP","options":{"icon_url":"https://example.com/logo.svg","adfs_server":"https://github.com/raw/auth0/terraform-provider-auth0/b5ed4fc037bcf7be0a8953033a3c3ffa1be17083/test/data/federation_metadata.xml","thumbprints":[],"tenant_domain":"example.auth0.com","domain_aliases":["example.com"],"signInEndpoint":"https://adfs.provider/wsfed","upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":false,"non_persistent_attrs":["gender","hair_color"],"should_trust_email_verified_connection":"always_set_emails_as_verified"},"strategy":"adfs","name":"Acceptance-Test-ADFS-TestAccConnectionADFS","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/adfs/A57GHZ3M","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-ADFS-TestAccConnectionADFS"]}' + body: '{"id":"con_rYP4biAVSsETivE3","options":{"icon_url":"https://example.com/logo.svg","adfs_server":"https://github.com/raw/auth0/terraform-provider-auth0/b5ed4fc037bcf7be0a8953033a3c3ffa1be17083/test/data/federation_metadata.xml","thumbprints":[],"tenant_domain":"example.auth0.com","domain_aliases":["example.com"],"signInEndpoint":"https://adfs.provider/wsfed","upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":false,"strategy_version":2,"non_persistent_attrs":["gender","hair_color"],"should_trust_email_verified_connection":"always_set_emails_as_verified"},"strategy":"adfs","name":"Acceptance-Test-ADFS-TestAccConnectionADFS","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/adfs/CbV08lsz","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-ADFS-TestAccConnectionADFS"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.30325ms + duration: 145.303875ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_P1pga8T8U8vGt5dP + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_rYP4biAVSsETivE3 method: GET response: proto: HTTP/2.0 @@ -138,33 +135,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_P1pga8T8U8vGt5dP","options":{"icon_url":"https://example.com/logo.svg","adfs_server":"https://github.com/raw/auth0/terraform-provider-auth0/b5ed4fc037bcf7be0a8953033a3c3ffa1be17083/test/data/federation_metadata.xml","thumbprints":[],"tenant_domain":"example.auth0.com","domain_aliases":["example.com"],"signInEndpoint":"https://adfs.provider/wsfed","upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":false,"non_persistent_attrs":["gender","hair_color"],"should_trust_email_verified_connection":"always_set_emails_as_verified"},"strategy":"adfs","name":"Acceptance-Test-ADFS-TestAccConnectionADFS","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/adfs/A57GHZ3M","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-ADFS-TestAccConnectionADFS"]}' + body: '{"id":"con_rYP4biAVSsETivE3","options":{"icon_url":"https://example.com/logo.svg","adfs_server":"https://github.com/raw/auth0/terraform-provider-auth0/b5ed4fc037bcf7be0a8953033a3c3ffa1be17083/test/data/federation_metadata.xml","thumbprints":[],"tenant_domain":"example.auth0.com","domain_aliases":["example.com"],"signInEndpoint":"https://adfs.provider/wsfed","upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":false,"strategy_version":2,"non_persistent_attrs":["gender","hair_color"],"should_trust_email_verified_connection":"always_set_emails_as_verified"},"strategy":"adfs","name":"Acceptance-Test-ADFS-TestAccConnectionADFS","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/adfs/CbV08lsz","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-ADFS-TestAccConnectionADFS"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.08375ms + duration: 142.107208ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_P1pga8T8U8vGt5dP + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_rYP4biAVSsETivE3 method: GET response: proto: HTTP/2.0 @@ -174,13 +170,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_P1pga8T8U8vGt5dP","options":{"icon_url":"https://example.com/logo.svg","adfs_server":"https://github.com/raw/auth0/terraform-provider-auth0/b5ed4fc037bcf7be0a8953033a3c3ffa1be17083/test/data/federation_metadata.xml","thumbprints":[],"tenant_domain":"example.auth0.com","domain_aliases":["example.com"],"signInEndpoint":"https://adfs.provider/wsfed","upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":false,"non_persistent_attrs":["gender","hair_color"],"should_trust_email_verified_connection":"always_set_emails_as_verified"},"strategy":"adfs","name":"Acceptance-Test-ADFS-TestAccConnectionADFS","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/adfs/A57GHZ3M","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-ADFS-TestAccConnectionADFS"]}' + body: '{"id":"con_rYP4biAVSsETivE3","options":{"icon_url":"https://example.com/logo.svg","adfs_server":"https://github.com/raw/auth0/terraform-provider-auth0/b5ed4fc037bcf7be0a8953033a3c3ffa1be17083/test/data/federation_metadata.xml","thumbprints":[],"tenant_domain":"example.auth0.com","domain_aliases":["example.com"],"signInEndpoint":"https://adfs.provider/wsfed","upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":false,"strategy_version":2,"non_persistent_attrs":["gender","hair_color"],"should_trust_email_verified_connection":"always_set_emails_as_verified"},"strategy":"adfs","name":"Acceptance-Test-ADFS-TestAccConnectionADFS","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/adfs/CbV08lsz","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-ADFS-TestAccConnectionADFS"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.565292ms + duration: 143.350292ms - id: 5 request: proto: HTTP/1.1 @@ -199,8 +195,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_P1pga8T8U8vGt5dP + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_rYP4biAVSsETivE3 method: PATCH response: proto: HTTP/2.0 @@ -210,33 +206,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_P1pga8T8U8vGt5dP","options":{"icon_url":"https://example.com/logo.svg","adfs_server":"","thumbprints":[],"tenant_domain":"example.auth0.com","domain_aliases":["example.com"],"fedMetadataXml":"\n\n \n \n \n https://adfs.provider/\n \n \n \n \n https://adfs.provider/wsfed\n \n \n \n \n https://adfs.provider/wsfed\n \n \n \n \n \n \n \n\n\n","signInEndpoint":"https://adfs.provider/wsfed","upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":false,"non_persistent_attrs":["gender","hair_color"],"set_user_root_attributes":"on_first_login","should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"adfs","name":"Acceptance-Test-ADFS-TestAccConnectionADFS","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/adfs/A57GHZ3M","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-ADFS-TestAccConnectionADFS"]}' + body: '{"id":"con_rYP4biAVSsETivE3","options":{"icon_url":"https://example.com/logo.svg","adfs_server":"","thumbprints":[],"tenant_domain":"example.auth0.com","domain_aliases":["example.com"],"fedMetadataXml":"\n\n \n \n \n https://adfs.provider/\n \n \n \n \n https://adfs.provider/wsfed\n \n \n \n \n https://adfs.provider/wsfed\n \n \n \n \n \n \n \n\n\n","signInEndpoint":"https://adfs.provider/wsfed","upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":false,"non_persistent_attrs":["gender","hair_color"],"set_user_root_attributes":"on_first_login","should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"adfs","name":"Acceptance-Test-ADFS-TestAccConnectionADFS","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/adfs/CbV08lsz","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-ADFS-TestAccConnectionADFS"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 149.111459ms + duration: 176.824ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_P1pga8T8U8vGt5dP + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_rYP4biAVSsETivE3 method: GET response: proto: HTTP/2.0 @@ -246,33 +241,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_P1pga8T8U8vGt5dP","options":{"icon_url":"https://example.com/logo.svg","adfs_server":"","thumbprints":[],"tenant_domain":"example.auth0.com","domain_aliases":["example.com"],"fedMetadataXml":"\n\n \n \n \n https://adfs.provider/\n \n \n \n \n https://adfs.provider/wsfed\n \n \n \n \n https://adfs.provider/wsfed\n \n \n \n \n \n \n \n\n\n","signInEndpoint":"https://adfs.provider/wsfed","upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":false,"non_persistent_attrs":["gender","hair_color"],"set_user_root_attributes":"on_first_login","should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"adfs","name":"Acceptance-Test-ADFS-TestAccConnectionADFS","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/adfs/A57GHZ3M","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-ADFS-TestAccConnectionADFS"]}' + body: '{"id":"con_rYP4biAVSsETivE3","options":{"icon_url":"https://example.com/logo.svg","adfs_server":"","thumbprints":[],"tenant_domain":"example.auth0.com","domain_aliases":["example.com"],"fedMetadataXml":"\n\n \n \n \n https://adfs.provider/\n \n \n \n \n https://adfs.provider/wsfed\n \n \n \n \n https://adfs.provider/wsfed\n \n \n \n \n \n \n \n\n\n","signInEndpoint":"https://adfs.provider/wsfed","upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":false,"non_persistent_attrs":["gender","hair_color"],"set_user_root_attributes":"on_first_login","should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"adfs","name":"Acceptance-Test-ADFS-TestAccConnectionADFS","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/adfs/CbV08lsz","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-ADFS-TestAccConnectionADFS"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 97.952333ms + duration: 142.85775ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_P1pga8T8U8vGt5dP + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_rYP4biAVSsETivE3 method: GET response: proto: HTTP/2.0 @@ -282,13 +276,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_P1pga8T8U8vGt5dP","options":{"icon_url":"https://example.com/logo.svg","adfs_server":"","thumbprints":[],"tenant_domain":"example.auth0.com","domain_aliases":["example.com"],"fedMetadataXml":"\n\n \n \n \n https://adfs.provider/\n \n \n \n \n https://adfs.provider/wsfed\n \n \n \n \n https://adfs.provider/wsfed\n \n \n \n \n \n \n \n\n\n","signInEndpoint":"https://adfs.provider/wsfed","upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":false,"non_persistent_attrs":["gender","hair_color"],"set_user_root_attributes":"on_first_login","should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"adfs","name":"Acceptance-Test-ADFS-TestAccConnectionADFS","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/adfs/A57GHZ3M","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-ADFS-TestAccConnectionADFS"]}' + body: '{"id":"con_rYP4biAVSsETivE3","options":{"icon_url":"https://example.com/logo.svg","adfs_server":"","thumbprints":[],"tenant_domain":"example.auth0.com","domain_aliases":["example.com"],"fedMetadataXml":"\n\n \n \n \n https://adfs.provider/\n \n \n \n \n https://adfs.provider/wsfed\n \n \n \n \n https://adfs.provider/wsfed\n \n \n \n \n \n \n \n\n\n","signInEndpoint":"https://adfs.provider/wsfed","upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":false,"non_persistent_attrs":["gender","hair_color"],"set_user_root_attributes":"on_first_login","should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"adfs","name":"Acceptance-Test-ADFS-TestAccConnectionADFS","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/adfs/CbV08lsz","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-ADFS-TestAccConnectionADFS"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 101.075834ms + duration: 136.205958ms - id: 8 request: proto: HTTP/1.1 @@ -306,8 +300,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_P1pga8T8U8vGt5dP + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_rYP4biAVSsETivE3 method: DELETE response: proto: HTTP/2.0 @@ -317,10 +311,10 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2023-08-31T08:59:30.329Z"}' + body: '{"deleted_at":"2024-09-12T21:27:11.158Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 124.713125ms + duration: 164.579125ms diff --git a/test/data/recordings/TestAccConnectionApple.yaml b/test/data/recordings/TestAccConnectionApple.yaml index 95d5c581..a46b5e71 100644 --- a/test/data/recordings/TestAccConnectionApple.yaml +++ b/test/data/recordings/TestAccConnectionApple.yaml @@ -1,290 +1,285 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 672 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"name":"Acceptance-Test-Apple-TestAccConnectionApple","strategy":"apple","is_domain_connection":false,"options":{"client_id":"client_id","app_secret":"-----BEGIN PRIVATE KEY-----\nMIHBAgEAMA0GCSqGSIb3DQEBAQUABIGsMIGpAgEAAiEA3+luhVHxSJ8cv3VNzQDP\nEL6BPs7FjBq4oro0MWM+QJMCAwEAAQIgWbq6/pRK4/ZXV+ZTSj7zuxsWZuK5i3ET\nfR2TCEkZR3kCEQD2ElqDr/pY5aHA++9HioY9AhEA6PIxC1c/K3gJqu+K+EsfDwIQ\nG5MS8Y7Wzv9skOOqfKnZQQIQdG24vaZZ2GwiyOD5YKiLWQIQYNtrb3j0BWsT4LI+\nN9+l1g==\n-----END PRIVATE KEY-----","team_id":"team_id","kid":"key_id","name":true,"email":true,"set_user_root_attributes":"on_each_login","non_persistent_attrs":null,"upstream_params":{"screen_name":{"alias":"login_hint"}}}} - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: false - body: '{"id":"con_iJtTGSUO2cIa4OS2","options":{"client_id":"client_id","app_secret":"-----BEGIN PRIVATE KEY-----\nMIHBAgEAMA0GCSqGSIb3DQEBAQUABIGsMIGpAgEAAiEA3+luhVHxSJ8cv3VNzQDP\nEL6BPs7FjBq4oro0MWM+QJMCAwEAAQIgWbq6/pRK4/ZXV+ZTSj7zuxsWZuK5i3ET\nfR2TCEkZR3kCEQD2ElqDr/pY5aHA++9HioY9AhEA6PIxC1c/K3gJqu+K+EsfDwIQ\nG5MS8Y7Wzv9skOOqfKnZQQIQdG24vaZZ2GwiyOD5YKiLWQIQYNtrb3j0BWsT4LI+\nN9+l1g==\n-----END PRIVATE KEY-----","team_id":"team_id","kid":"key_id","name":true,"email":true,"set_user_root_attributes":"on_each_login","non_persistent_attrs":null,"upstream_params":{"screen_name":{"alias":"login_hint"}},"scope":"name email"},"strategy":"apple","name":"Acceptance-Test-Apple-TestAccConnectionApple","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Apple-TestAccConnectionApple"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 1ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_iJtTGSUO2cIa4OS2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_iJtTGSUO2cIa4OS2","options":{"kid":"key_id","name":true,"email":true,"scope":"name email","team_id":"team_id","client_id":"client_id","app_secret":"-----BEGIN PRIVATE KEY-----\nMIHBAgEAMA0GCSqGSIb3DQEBAQUABIGsMIGpAgEAAiEA3+luhVHxSJ8cv3VNzQDP\nEL6BPs7FjBq4oro0MWM+QJMCAwEAAQIgWbq6/pRK4/ZXV+ZTSj7zuxsWZuK5i3ET\nfR2TCEkZR3kCEQD2ElqDr/pY5aHA++9HioY9AhEA6PIxC1c/K3gJqu+K+EsfDwIQ\nG5MS8Y7Wzv9skOOqfKnZQQIQdG24vaZZ2GwiyOD5YKiLWQIQYNtrb3j0BWsT4LI+\nN9+l1g==\n-----END PRIVATE KEY-----","upstream_params":{"screen_name":{"alias":"login_hint"}},"non_persistent_attrs":null,"set_user_root_attributes":"on_each_login"},"strategy":"apple","name":"Acceptance-Test-Apple-TestAccConnectionApple","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Apple-TestAccConnectionApple"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_iJtTGSUO2cIa4OS2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_iJtTGSUO2cIa4OS2","options":{"kid":"key_id","name":true,"email":true,"scope":"name email","team_id":"team_id","client_id":"client_id","app_secret":"-----BEGIN PRIVATE KEY-----\nMIHBAgEAMA0GCSqGSIb3DQEBAQUABIGsMIGpAgEAAiEA3+luhVHxSJ8cv3VNzQDP\nEL6BPs7FjBq4oro0MWM+QJMCAwEAAQIgWbq6/pRK4/ZXV+ZTSj7zuxsWZuK5i3ET\nfR2TCEkZR3kCEQD2ElqDr/pY5aHA++9HioY9AhEA6PIxC1c/K3gJqu+K+EsfDwIQ\nG5MS8Y7Wzv9skOOqfKnZQQIQdG24vaZZ2GwiyOD5YKiLWQIQYNtrb3j0BWsT4LI+\nN9+l1g==\n-----END PRIVATE KEY-----","upstream_params":{"screen_name":{"alias":"login_hint"}},"non_persistent_attrs":null,"set_user_root_attributes":"on_each_login"},"strategy":"apple","name":"Acceptance-Test-Apple-TestAccConnectionApple","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Apple-TestAccConnectionApple"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_iJtTGSUO2cIa4OS2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_iJtTGSUO2cIa4OS2","options":{"kid":"key_id","name":true,"email":true,"scope":"name email","team_id":"team_id","client_id":"client_id","app_secret":"-----BEGIN PRIVATE KEY-----\nMIHBAgEAMA0GCSqGSIb3DQEBAQUABIGsMIGpAgEAAiEA3+luhVHxSJ8cv3VNzQDP\nEL6BPs7FjBq4oro0MWM+QJMCAwEAAQIgWbq6/pRK4/ZXV+ZTSj7zuxsWZuK5i3ET\nfR2TCEkZR3kCEQD2ElqDr/pY5aHA++9HioY9AhEA6PIxC1c/K3gJqu+K+EsfDwIQ\nG5MS8Y7Wzv9skOOqfKnZQQIQdG24vaZZ2GwiyOD5YKiLWQIQYNtrb3j0BWsT4LI+\nN9+l1g==\n-----END PRIVATE KEY-----","upstream_params":{"screen_name":{"alias":"login_hint"}},"non_persistent_attrs":null,"set_user_root_attributes":"on_each_login"},"strategy":"apple","name":"Acceptance-Test-Apple-TestAccConnectionApple","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Apple-TestAccConnectionApple"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 558 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"is_domain_connection":false,"options":{"client_id":"client_id","app_secret":"-----BEGIN PRIVATE KEY-----\nMIHBAgEAMA0GCSqGSIb3DQEBAQUABIGsMIGpAgEAAiEA3+luhVHxSJ8cv3VNzQDP\nEL6BPs7FjBq4oro0MWM+QJMCAwEAAQIgWbq6/pRK4/ZXV+ZTSj7zuxsWZuK5i3ET\nfR2TCEkZR3kCEQD2ElqDr/pY5aHA++9HioY9AhEA6PIxC1c/K3gJqu+K+EsfDwIQ\nG5MS8Y7Wzv9skOOqfKnZQQIQdG24vaZZ2GwiyOD5YKiLWQIQYNtrb3j0BWsT4LI+\nN9+l1g==\n-----END PRIVATE KEY-----","team_id":"team_id_update","kid":"key_id_update","name":false,"email":true,"set_user_root_attributes":"on_first_login","non_persistent_attrs":null}} - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_iJtTGSUO2cIa4OS2 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_iJtTGSUO2cIa4OS2","options":{"kid":"key_id_update","name":false,"email":true,"scope":"email","team_id":"team_id_update","client_id":"client_id","app_secret":"-----BEGIN PRIVATE KEY-----\nMIHBAgEAMA0GCSqGSIb3DQEBAQUABIGsMIGpAgEAAiEA3+luhVHxSJ8cv3VNzQDP\nEL6BPs7FjBq4oro0MWM+QJMCAwEAAQIgWbq6/pRK4/ZXV+ZTSj7zuxsWZuK5i3ET\nfR2TCEkZR3kCEQD2ElqDr/pY5aHA++9HioY9AhEA6PIxC1c/K3gJqu+K+EsfDwIQ\nG5MS8Y7Wzv9skOOqfKnZQQIQdG24vaZZ2GwiyOD5YKiLWQIQYNtrb3j0BWsT4LI+\nN9+l1g==\n-----END PRIVATE KEY-----","non_persistent_attrs":null,"set_user_root_attributes":"on_first_login"},"strategy":"apple","name":"Acceptance-Test-Apple-TestAccConnectionApple","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Apple-TestAccConnectionApple"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_iJtTGSUO2cIa4OS2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_iJtTGSUO2cIa4OS2","options":{"kid":"key_id_update","name":false,"email":true,"scope":"email","team_id":"team_id_update","client_id":"client_id","app_secret":"-----BEGIN PRIVATE KEY-----\nMIHBAgEAMA0GCSqGSIb3DQEBAQUABIGsMIGpAgEAAiEA3+luhVHxSJ8cv3VNzQDP\nEL6BPs7FjBq4oro0MWM+QJMCAwEAAQIgWbq6/pRK4/ZXV+ZTSj7zuxsWZuK5i3ET\nfR2TCEkZR3kCEQD2ElqDr/pY5aHA++9HioY9AhEA6PIxC1c/K3gJqu+K+EsfDwIQ\nG5MS8Y7Wzv9skOOqfKnZQQIQdG24vaZZ2GwiyOD5YKiLWQIQYNtrb3j0BWsT4LI+\nN9+l1g==\n-----END PRIVATE KEY-----","non_persistent_attrs":null,"set_user_root_attributes":"on_first_login"},"strategy":"apple","name":"Acceptance-Test-Apple-TestAccConnectionApple","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Apple-TestAccConnectionApple"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_iJtTGSUO2cIa4OS2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_iJtTGSUO2cIa4OS2","options":{"kid":"key_id_update","name":false,"email":true,"scope":"email","team_id":"team_id_update","client_id":"client_id","app_secret":"-----BEGIN PRIVATE KEY-----\nMIHBAgEAMA0GCSqGSIb3DQEBAQUABIGsMIGpAgEAAiEA3+luhVHxSJ8cv3VNzQDP\nEL6BPs7FjBq4oro0MWM+QJMCAwEAAQIgWbq6/pRK4/ZXV+ZTSj7zuxsWZuK5i3ET\nfR2TCEkZR3kCEQD2ElqDr/pY5aHA++9HioY9AhEA6PIxC1c/K3gJqu+K+EsfDwIQ\nG5MS8Y7Wzv9skOOqfKnZQQIQdG24vaZZ2GwiyOD5YKiLWQIQYNtrb3j0BWsT4LI+\nN9+l1g==\n-----END PRIVATE KEY-----","non_persistent_attrs":null,"set_user_root_attributes":"on_first_login"},"strategy":"apple","name":"Acceptance-Test-Apple-TestAccConnectionApple","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Apple-TestAccConnectionApple"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: "" - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_iJtTGSUO2cIa4OS2 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Type: - - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 1ms + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 644 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Acceptance-Test-Apple-TestAccConnectionApple","strategy":"apple","is_domain_connection":false,"options":{"client_id":"client_id","app_secret":"-----BEGIN PRIVATE KEY-----\nMIHBAgEAMA0GCSqGSIb3DQEBAQUABIGsMIGpAgEAAiEA3+luhVHxSJ8cv3VNzQDP\nEL6BPs7FjBq4oro0MWM+QJMCAwEAAQIgWbq6/pRK4/ZXV+ZTSj7zuxsWZuK5i3ET\nfR2TCEkZR3kCEQD2ElqDr/pY5aHA++9HioY9AhEA6PIxC1c/K3gJqu+K+EsfDwIQ\nG5MS8Y7Wzv9skOOqfKnZQQIQdG24vaZZ2GwiyOD5YKiLWQIQYNtrb3j0BWsT4LI+\nN9+l1g==\n-----END PRIVATE KEY-----","team_id":"team_id","kid":"key_id","name":true,"email":true,"set_user_root_attributes":"on_each_login","upstream_params":{"screen_name":{"alias":"login_hint"}}}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 771 + uncompressed: false + body: '{"id":"con_ZreNpmdras2E31d5","options":{"client_id":"client_id","app_secret":"-----BEGIN PRIVATE KEY-----\nMIHBAgEAMA0GCSqGSIb3DQEBAQUABIGsMIGpAgEAAiEA3+luhVHxSJ8cv3VNzQDP\nEL6BPs7FjBq4oro0MWM+QJMCAwEAAQIgWbq6/pRK4/ZXV+ZTSj7zuxsWZuK5i3ET\nfR2TCEkZR3kCEQD2ElqDr/pY5aHA++9HioY9AhEA6PIxC1c/K3gJqu+K+EsfDwIQ\nG5MS8Y7Wzv9skOOqfKnZQQIQdG24vaZZ2GwiyOD5YKiLWQIQYNtrb3j0BWsT4LI+\nN9+l1g==\n-----END PRIVATE KEY-----","team_id":"team_id","kid":"key_id","name":true,"email":true,"set_user_root_attributes":"on_each_login","upstream_params":{"screen_name":{"alias":"login_hint"}},"scope":"name email"},"strategy":"apple","name":"Acceptance-Test-Apple-TestAccConnectionApple","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Apple-TestAccConnectionApple"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 150.127667ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZreNpmdras2E31d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_ZreNpmdras2E31d5","options":{"kid":"key_id","name":true,"email":true,"scope":"name email","team_id":"team_id","client_id":"client_id","app_secret":"-----BEGIN PRIVATE KEY-----\nMIHBAgEAMA0GCSqGSIb3DQEBAQUABIGsMIGpAgEAAiEA3+luhVHxSJ8cv3VNzQDP\nEL6BPs7FjBq4oro0MWM+QJMCAwEAAQIgWbq6/pRK4/ZXV+ZTSj7zuxsWZuK5i3ET\nfR2TCEkZR3kCEQD2ElqDr/pY5aHA++9HioY9AhEA6PIxC1c/K3gJqu+K+EsfDwIQ\nG5MS8Y7Wzv9skOOqfKnZQQIQdG24vaZZ2GwiyOD5YKiLWQIQYNtrb3j0BWsT4LI+\nN9+l1g==\n-----END PRIVATE KEY-----","upstream_params":{"screen_name":{"alias":"login_hint"}},"set_user_root_attributes":"on_each_login"},"strategy":"apple","name":"Acceptance-Test-Apple-TestAccConnectionApple","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Apple-TestAccConnectionApple"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 143.480625ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZreNpmdras2E31d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_ZreNpmdras2E31d5","options":{"kid":"key_id","name":true,"email":true,"scope":"name email","team_id":"team_id","client_id":"client_id","app_secret":"-----BEGIN PRIVATE KEY-----\nMIHBAgEAMA0GCSqGSIb3DQEBAQUABIGsMIGpAgEAAiEA3+luhVHxSJ8cv3VNzQDP\nEL6BPs7FjBq4oro0MWM+QJMCAwEAAQIgWbq6/pRK4/ZXV+ZTSj7zuxsWZuK5i3ET\nfR2TCEkZR3kCEQD2ElqDr/pY5aHA++9HioY9AhEA6PIxC1c/K3gJqu+K+EsfDwIQ\nG5MS8Y7Wzv9skOOqfKnZQQIQdG24vaZZ2GwiyOD5YKiLWQIQYNtrb3j0BWsT4LI+\nN9+l1g==\n-----END PRIVATE KEY-----","upstream_params":{"screen_name":{"alias":"login_hint"}},"set_user_root_attributes":"on_each_login"},"strategy":"apple","name":"Acceptance-Test-Apple-TestAccConnectionApple","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Apple-TestAccConnectionApple"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 143.961833ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZreNpmdras2E31d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_ZreNpmdras2E31d5","options":{"kid":"key_id","name":true,"email":true,"scope":"name email","team_id":"team_id","client_id":"client_id","app_secret":"-----BEGIN PRIVATE KEY-----\nMIHBAgEAMA0GCSqGSIb3DQEBAQUABIGsMIGpAgEAAiEA3+luhVHxSJ8cv3VNzQDP\nEL6BPs7FjBq4oro0MWM+QJMCAwEAAQIgWbq6/pRK4/ZXV+ZTSj7zuxsWZuK5i3ET\nfR2TCEkZR3kCEQD2ElqDr/pY5aHA++9HioY9AhEA6PIxC1c/K3gJqu+K+EsfDwIQ\nG5MS8Y7Wzv9skOOqfKnZQQIQdG24vaZZ2GwiyOD5YKiLWQIQYNtrb3j0BWsT4LI+\nN9+l1g==\n-----END PRIVATE KEY-----","upstream_params":{"screen_name":{"alias":"login_hint"}},"set_user_root_attributes":"on_each_login"},"strategy":"apple","name":"Acceptance-Test-Apple-TestAccConnectionApple","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Apple-TestAccConnectionApple"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 137.813917ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 530 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"is_domain_connection":false,"options":{"client_id":"client_id","app_secret":"-----BEGIN PRIVATE KEY-----\nMIHBAgEAMA0GCSqGSIb3DQEBAQUABIGsMIGpAgEAAiEA3+luhVHxSJ8cv3VNzQDP\nEL6BPs7FjBq4oro0MWM+QJMCAwEAAQIgWbq6/pRK4/ZXV+ZTSj7zuxsWZuK5i3ET\nfR2TCEkZR3kCEQD2ElqDr/pY5aHA++9HioY9AhEA6PIxC1c/K3gJqu+K+EsfDwIQ\nG5MS8Y7Wzv9skOOqfKnZQQIQdG24vaZZ2GwiyOD5YKiLWQIQYNtrb3j0BWsT4LI+\nN9+l1g==\n-----END PRIVATE KEY-----","team_id":"team_id_update","kid":"key_id_update","name":false,"email":true,"set_user_root_attributes":"on_first_login"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZreNpmdras2E31d5 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_ZreNpmdras2E31d5","options":{"kid":"key_id_update","name":false,"email":true,"scope":"email","team_id":"team_id_update","client_id":"client_id","app_secret":"-----BEGIN PRIVATE KEY-----\nMIHBAgEAMA0GCSqGSIb3DQEBAQUABIGsMIGpAgEAAiEA3+luhVHxSJ8cv3VNzQDP\nEL6BPs7FjBq4oro0MWM+QJMCAwEAAQIgWbq6/pRK4/ZXV+ZTSj7zuxsWZuK5i3ET\nfR2TCEkZR3kCEQD2ElqDr/pY5aHA++9HioY9AhEA6PIxC1c/K3gJqu+K+EsfDwIQ\nG5MS8Y7Wzv9skOOqfKnZQQIQdG24vaZZ2GwiyOD5YKiLWQIQYNtrb3j0BWsT4LI+\nN9+l1g==\n-----END PRIVATE KEY-----","set_user_root_attributes":"on_first_login"},"strategy":"apple","name":"Acceptance-Test-Apple-TestAccConnectionApple","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Apple-TestAccConnectionApple"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 180.384375ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZreNpmdras2E31d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_ZreNpmdras2E31d5","options":{"kid":"key_id_update","name":false,"email":true,"scope":"email","team_id":"team_id_update","client_id":"client_id","app_secret":"-----BEGIN PRIVATE KEY-----\nMIHBAgEAMA0GCSqGSIb3DQEBAQUABIGsMIGpAgEAAiEA3+luhVHxSJ8cv3VNzQDP\nEL6BPs7FjBq4oro0MWM+QJMCAwEAAQIgWbq6/pRK4/ZXV+ZTSj7zuxsWZuK5i3ET\nfR2TCEkZR3kCEQD2ElqDr/pY5aHA++9HioY9AhEA6PIxC1c/K3gJqu+K+EsfDwIQ\nG5MS8Y7Wzv9skOOqfKnZQQIQdG24vaZZ2GwiyOD5YKiLWQIQYNtrb3j0BWsT4LI+\nN9+l1g==\n-----END PRIVATE KEY-----","set_user_root_attributes":"on_first_login"},"strategy":"apple","name":"Acceptance-Test-Apple-TestAccConnectionApple","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Apple-TestAccConnectionApple"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 148.623417ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZreNpmdras2E31d5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_ZreNpmdras2E31d5","options":{"kid":"key_id_update","name":false,"email":true,"scope":"email","team_id":"team_id_update","client_id":"client_id","app_secret":"-----BEGIN PRIVATE KEY-----\nMIHBAgEAMA0GCSqGSIb3DQEBAQUABIGsMIGpAgEAAiEA3+luhVHxSJ8cv3VNzQDP\nEL6BPs7FjBq4oro0MWM+QJMCAwEAAQIgWbq6/pRK4/ZXV+ZTSj7zuxsWZuK5i3ET\nfR2TCEkZR3kCEQD2ElqDr/pY5aHA++9HioY9AhEA6PIxC1c/K3gJqu+K+EsfDwIQ\nG5MS8Y7Wzv9skOOqfKnZQQIQdG24vaZZ2GwiyOD5YKiLWQIQYNtrb3j0BWsT4LI+\nN9+l1g==\n-----END PRIVATE KEY-----","set_user_root_attributes":"on_first_login"},"strategy":"apple","name":"Acceptance-Test-Apple-TestAccConnectionApple","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Apple-TestAccConnectionApple"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 140.463667ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZreNpmdras2E31d5 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41 + uncompressed: false + body: '{"deleted_at":"2024-09-12T21:26:48.469Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 202 Accepted + code: 202 + duration: 150.539208ms diff --git a/test/data/recordings/TestAccConnectionAzureAD.yaml b/test/data/recordings/TestAccConnectionAzureAD.yaml index 2bd4848f..1d628416 100644 --- a/test/data/recordings/TestAccConnectionAzureAD.yaml +++ b/test/data/recordings/TestAccConnectionAzureAD.yaml @@ -6,20 +6,20 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 620 + content_length: 641 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","strategy":"waad","show_as_button":true,"options":{"client_id":"123456","client_secret":"123456","tenant_domain":"example.onmicrosoft.com","domain":"example.onmicrosoft.com","domain_aliases":["api.example.com","example.com"],"identity_api":"azure-active-directory-v1.0","waad_protocol":"openid-connect","use_wsfed":false,"useCommonEndpoint":false,"api_enable_users":true,"basic_profile":true,"ext_profile":true,"ext_groups":true,"should_trust_email_verified_connection":"never_set_emails_as_verified","upstream_params":{"screen_name":{"alias":"login_hint"}}}} + {"name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","strategy":"waad","show_as_button":true,"options":{"client_id":"123456","client_secret":"123456","strategy_version":2,"tenant_domain":"example.onmicrosoft.com","domain":"example.onmicrosoft.com","domain_aliases":["api.example.com","example.com"],"identity_api":"azure-active-directory-v1.0","waad_protocol":"openid-connect","use_wsfed":false,"useCommonEndpoint":false,"api_enable_users":true,"basic_profile":true,"ext_profile":true,"ext_groups":true,"should_trust_email_verified_connection":"never_set_emails_as_verified","upstream_params":{"screen_name":{"alias":"login_hint"}}}} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections method: POST response: @@ -30,33 +30,32 @@ interactions: trailer: {} content_length: -1 uncompressed: false - body: '{"id":"con_dAweBN15jCPJXn6m","options":{"client_id":"123456","client_secret":"123456","tenant_domain":"example.onmicrosoft.com","domain":"example.onmicrosoft.com","domain_aliases":["api.example.com","example.com"],"identity_api":"azure-active-directory-v1.0","waad_protocol":"openid-connect","use_wsfed":false,"useCommonEndpoint":false,"api_enable_users":true,"basic_profile":true,"ext_profile":true,"ext_groups":true,"should_trust_email_verified_connection":"never_set_emails_as_verified","upstream_params":{"screen_name":{"alias":"login_hint"}},"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","thumbprints":["f8a23743d9cd47b6d1a1fc66799a17a9b1d919ec","9472c8bb89a82aaccf72893095f0913c7ca39798"]},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/tV6FByCP","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' + body: '{"id":"con_UqghLdzVUhenLt7a","options":{"client_id":"123456","client_secret":"123456","strategy_version":2,"tenant_domain":"example.onmicrosoft.com","domain":"example.onmicrosoft.com","domain_aliases":["api.example.com","example.com"],"identity_api":"azure-active-directory-v1.0","waad_protocol":"openid-connect","use_wsfed":false,"useCommonEndpoint":false,"api_enable_users":true,"basic_profile":true,"ext_profile":true,"ext_groups":true,"should_trust_email_verified_connection":"never_set_emails_as_verified","upstream_params":{"screen_name":{"alias":"login_hint"}},"thumbprints":["4a3138b6fcc0c00a28e86077dbe83540076021c9","1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","2743ae2dd284d5280f768e2f77eb145f1bb6751b","824f47a0658299810b52ad51110d0290783e46c6"],"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","waad_common_endpoint":false,"userid_attribute":"oid"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/B121PNH5","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 569.489125ms + duration: 388.469792ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dAweBN15jCPJXn6m + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_UqghLdzVUhenLt7a method: GET response: proto: HTTP/2.0 @@ -66,33 +65,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_dAweBN15jCPJXn6m","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["f8a23743d9cd47b6d1a1fc66799a17a9b1d919ec","9472c8bb89a82aaccf72893095f0913c7ca39798"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"useCommonEndpoint":false,"should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/tV6FByCP","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' + body: '{"id":"con_UqghLdzVUhenLt7a","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["4a3138b6fcc0c00a28e86077dbe83540076021c9","1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","2743ae2dd284d5280f768e2f77eb145f1bb6751b","824f47a0658299810b52ad51110d0290783e46c6"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"strategy_version":2,"userid_attribute":"oid","useCommonEndpoint":false,"waad_common_endpoint":false,"should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/B121PNH5","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.615167ms + duration: 200.323625ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dAweBN15jCPJXn6m + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_UqghLdzVUhenLt7a method: GET response: proto: HTTP/2.0 @@ -102,33 +100,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_dAweBN15jCPJXn6m","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["f8a23743d9cd47b6d1a1fc66799a17a9b1d919ec","9472c8bb89a82aaccf72893095f0913c7ca39798"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"useCommonEndpoint":false,"should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/tV6FByCP","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' + body: '{"id":"con_UqghLdzVUhenLt7a","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["4a3138b6fcc0c00a28e86077dbe83540076021c9","1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","2743ae2dd284d5280f768e2f77eb145f1bb6751b","824f47a0658299810b52ad51110d0290783e46c6"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"strategy_version":2,"userid_attribute":"oid","useCommonEndpoint":false,"waad_common_endpoint":false,"should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/B121PNH5","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 97.54875ms + duration: 184.929625ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dAweBN15jCPJXn6m + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_UqghLdzVUhenLt7a method: GET response: proto: HTTP/2.0 @@ -138,33 +135,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_dAweBN15jCPJXn6m","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["f8a23743d9cd47b6d1a1fc66799a17a9b1d919ec","9472c8bb89a82aaccf72893095f0913c7ca39798"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"useCommonEndpoint":false,"should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/tV6FByCP","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' + body: '{"id":"con_UqghLdzVUhenLt7a","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["4a3138b6fcc0c00a28e86077dbe83540076021c9","1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","2743ae2dd284d5280f768e2f77eb145f1bb6751b","824f47a0658299810b52ad51110d0290783e46c6"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"strategy_version":2,"userid_attribute":"oid","useCommonEndpoint":false,"waad_common_endpoint":false,"should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/B121PNH5","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 92.558875ms + duration: 217.119375ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dAweBN15jCPJXn6m + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_UqghLdzVUhenLt7a method: GET response: proto: HTTP/2.0 @@ -174,33 +170,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_dAweBN15jCPJXn6m","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["f8a23743d9cd47b6d1a1fc66799a17a9b1d919ec","9472c8bb89a82aaccf72893095f0913c7ca39798"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"useCommonEndpoint":false,"should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/tV6FByCP","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' + body: '{"id":"con_UqghLdzVUhenLt7a","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["4a3138b6fcc0c00a28e86077dbe83540076021c9","1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","2743ae2dd284d5280f768e2f77eb145f1bb6751b","824f47a0658299810b52ad51110d0290783e46c6"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"strategy_version":2,"userid_attribute":"oid","useCommonEndpoint":false,"waad_common_endpoint":false,"should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/B121PNH5","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 102.5015ms + duration: 193.132667ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 752 + content_length: 856 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"show_as_button":true,"options":{"client_id":"123456","client_secret":"123456","tenant_domain":"example.onmicrosoft.com","domain":"example.onmicrosoft.com","domain_aliases":["api.example.com","example.com"],"identity_api":"azure-active-directory-v1.0","waad_protocol":"openid-connect","use_wsfed":false,"useCommonEndpoint":false,"api_enable_users":true,"basic_profile":true,"ext_profile":true,"ext_groups":true,"set_user_root_attributes":"on_first_login","should_trust_email_verified_connection":"never_set_emails_as_verified","upstream_params":{"screen_name":{"alias":"login_hint"}},"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","thumbprints":["f8a23743d9cd47b6d1a1fc66799a17a9b1d919ec","9472c8bb89a82aaccf72893095f0913c7ca39798"]}} + {"show_as_button":true,"options":{"client_id":"123456","client_secret":"123456","tenant_domain":"example.onmicrosoft.com","domain":"example.onmicrosoft.com","domain_aliases":["api.example.com","example.com"],"identity_api":"azure-active-directory-v1.0","waad_protocol":"openid-connect","use_wsfed":false,"useCommonEndpoint":false,"api_enable_users":true,"basic_profile":true,"ext_profile":true,"ext_groups":true,"set_user_root_attributes":"on_first_login","should_trust_email_verified_connection":"never_set_emails_as_verified","upstream_params":{"screen_name":{"alias":"login_hint"}},"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","thumbprints":["4a3138b6fcc0c00a28e86077dbe83540076021c9","1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","2743ae2dd284d5280f768e2f77eb145f1bb6751b","824f47a0658299810b52ad51110d0290783e46c6"]}} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dAweBN15jCPJXn6m + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_UqghLdzVUhenLt7a method: PATCH response: proto: HTTP/2.0 @@ -210,33 +206,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_dAweBN15jCPJXn6m","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["f8a23743d9cd47b6d1a1fc66799a17a9b1d919ec","9472c8bb89a82aaccf72893095f0913c7ca39798"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"useCommonEndpoint":false,"set_user_root_attributes":"on_first_login","should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/tV6FByCP","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' + body: '{"id":"con_UqghLdzVUhenLt7a","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["4a3138b6fcc0c00a28e86077dbe83540076021c9","1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","2743ae2dd284d5280f768e2f77eb145f1bb6751b","824f47a0658299810b52ad51110d0290783e46c6"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"userid_attribute":null,"useCommonEndpoint":false,"waad_common_endpoint":false,"set_user_root_attributes":"on_first_login","should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/B121PNH5","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 439.426625ms + duration: 364.643833ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dAweBN15jCPJXn6m + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_UqghLdzVUhenLt7a method: GET response: proto: HTTP/2.0 @@ -246,33 +241,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_dAweBN15jCPJXn6m","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["f8a23743d9cd47b6d1a1fc66799a17a9b1d919ec","9472c8bb89a82aaccf72893095f0913c7ca39798"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"useCommonEndpoint":false,"set_user_root_attributes":"on_first_login","should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/tV6FByCP","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' + body: '{"id":"con_UqghLdzVUhenLt7a","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["4a3138b6fcc0c00a28e86077dbe83540076021c9","1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","2743ae2dd284d5280f768e2f77eb145f1bb6751b","824f47a0658299810b52ad51110d0290783e46c6"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"userid_attribute":null,"useCommonEndpoint":false,"waad_common_endpoint":false,"set_user_root_attributes":"on_first_login","should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/B121PNH5","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 158.296125ms + duration: 176.896542ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dAweBN15jCPJXn6m + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_UqghLdzVUhenLt7a method: GET response: proto: HTTP/2.0 @@ -282,13 +276,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_dAweBN15jCPJXn6m","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["f8a23743d9cd47b6d1a1fc66799a17a9b1d919ec","9472c8bb89a82aaccf72893095f0913c7ca39798"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"useCommonEndpoint":false,"set_user_root_attributes":"on_first_login","should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/tV6FByCP","is_domain_connection":false,"show_as_button":true,"enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' + body: '{"id":"con_UqghLdzVUhenLt7a","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["4a3138b6fcc0c00a28e86077dbe83540076021c9","1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","2743ae2dd284d5280f768e2f77eb145f1bb6751b","824f47a0658299810b52ad51110d0290783e46c6"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"userid_attribute":null,"useCommonEndpoint":false,"waad_common_endpoint":false,"set_user_root_attributes":"on_first_login","should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/B121PNH5","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.425583ms + duration: 205.429958ms - id: 8 request: proto: HTTP/1.1 @@ -306,8 +300,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dAweBN15jCPJXn6m + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_UqghLdzVUhenLt7a method: DELETE response: proto: HTTP/2.0 @@ -317,10 +311,10 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2023-08-31T08:59:42.378Z"}' + body: '{"deleted_at":"2024-09-13T14:49:36.430Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 112.65575ms + duration: 197.561167ms diff --git a/test/data/recordings/TestAccConnectionClient.yaml b/test/data/recordings/TestAccConnectionClient.yaml index 3b59eb1c..40eff951 100644 --- a/test/data/recordings/TestAccConnectionClient.yaml +++ b/test/data/recordings/TestAccConnectionClient.yaml @@ -1,1188 +1,1165 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 81 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"name":"Acceptance-Test-Connection-TestAccConnectionClient","strategy":"auth0"} - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: 361 - uncompressed: false - body: '{"id":"con_LuLO2bKCL60cX2Im","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 254.984472ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LuLO2bKCL60cX2Im - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_LuLO2bKCL60cX2Im","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 135.640394ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 60 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"name":"Acceptance-Test-Client-1-TestAccConnectionClient"} - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: false - body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClient","client_id":"abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"cross_origin_auth":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 320.429288ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClient","client_id":"abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"cross_origin_auth":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 168.292771ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LuLO2bKCL60cX2Im - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_LuLO2bKCL60cX2Im","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 189.85862ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 57 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"enabled_clients":["abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv"]} - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LuLO2bKCL60cX2Im - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_LuLO2bKCL60cX2Im","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 151.48578ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 60 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"name":"Acceptance-Test-Client-2-TestAccConnectionClient"} - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: false - body: '{"name":"Acceptance-Test-Client-2-TestAccConnectionClient","client_id":"nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"cross_origin_auth":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 410.757931ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LuLO2bKCL60cX2Im - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_LuLO2bKCL60cX2Im","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 170.022978ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"name":"Acceptance-Test-Client-2-TestAccConnectionClient","client_id":"nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"cross_origin_auth":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 143.127685ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LuLO2bKCL60cX2Im - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_LuLO2bKCL60cX2Im","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 181.394779ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 92 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"enabled_clients":["abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv","nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK"]} - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LuLO2bKCL60cX2Im - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_LuLO2bKCL60cX2Im","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv","nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 149.914158ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LuLO2bKCL60cX2Im - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_LuLO2bKCL60cX2Im","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK","abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 121.740598ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LuLO2bKCL60cX2Im - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_LuLO2bKCL60cX2Im","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK","abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 131.551577ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClient","client_id":"abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"cross_origin_auth":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 134.536232ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LuLO2bKCL60cX2Im - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_LuLO2bKCL60cX2Im","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK","abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 122.757546ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"name":"Acceptance-Test-Client-2-TestAccConnectionClient","client_id":"nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"cross_origin_auth":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 110.007723ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LuLO2bKCL60cX2Im - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_LuLO2bKCL60cX2Im","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK","abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 112.78407ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"name":"Acceptance-Test-Client-2-TestAccConnectionClient","client_id":"nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"cross_origin_auth":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 131.491152ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LuLO2bKCL60cX2Im - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_LuLO2bKCL60cX2Im","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK","abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 148.502791ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClient","client_id":"abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"cross_origin_auth":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 148.53109ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LuLO2bKCL60cX2Im - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_LuLO2bKCL60cX2Im","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK","abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 190.181984ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LuLO2bKCL60cX2Im - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_LuLO2bKCL60cX2Im","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK","abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 109.074937ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LuLO2bKCL60cX2Im - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_LuLO2bKCL60cX2Im","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK","abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 116.277364ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 57 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"enabled_clients":["nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK"]} - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LuLO2bKCL60cX2Im - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_LuLO2bKCL60cX2Im","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 208.030045ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClient","client_id":"abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"cross_origin_auth":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 114.401294ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"name":"Acceptance-Test-Client-2-TestAccConnectionClient","client_id":"nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"cross_origin_auth":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 133.358647ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LuLO2bKCL60cX2Im - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_LuLO2bKCL60cX2Im","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 143.703315ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LuLO2bKCL60cX2Im - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_LuLO2bKCL60cX2Im","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 148.687691ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: "" - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/abYGKOQlrLVr0LyQV1k2v0CeDqcNf5zv - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Type: - - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 152.081979ms - - id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LuLO2bKCL60cX2Im - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_LuLO2bKCL60cX2Im","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 152.170315ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 25 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"enabled_clients":null} - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LuLO2bKCL60cX2Im - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_LuLO2bKCL60cX2Im","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 144.530013ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: "" - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LuLO2bKCL60cX2Im - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: 41 - uncompressed: false - body: '{"deleted_at":"2022-12-20T12:12:16.888Z"}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 202 Accepted - code: 202 - duration: 163.840626ms - - id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: "" - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.14.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/nX2U9nyu9jz53V3OdkMzoBu7Pym6xYJK - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Type: - - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 108.663689ms + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 81 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Acceptance-Test-Connection-TestAccConnectionClient","strategy":"auth0"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 556 + uncompressed: false + body: '{"id":"con_K5StyRCIefx4k87z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 182.823542ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_K5StyRCIefx4k87z + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_K5StyRCIefx4k87z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 144.182833ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 60 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Acceptance-Test-Client-1-TestAccConnectionClient"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: false + body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClient","client_id":"Itv2W4rh5AwpMhSZ7url2itVa1Wapf36","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 295.257458ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Itv2W4rh5AwpMhSZ7url2itVa1Wapf36 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClient","client_id":"Itv2W4rh5AwpMhSZ7url2itVa1Wapf36","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 142.600792ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_K5StyRCIefx4k87z + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_K5StyRCIefx4k87z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 150.823333ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 60 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Acceptance-Test-Client-2-TestAccConnectionClient"} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: false + body: '{"name":"Acceptance-Test-Client-2-TestAccConnectionClient","client_id":"XDplWKzAdLtAacsbx0uML7oGE430O0Tw","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 314.877125ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 57 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"enabled_clients":["Itv2W4rh5AwpMhSZ7url2itVa1Wapf36"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_K5StyRCIefx4k87z + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_K5StyRCIefx4k87z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["Itv2W4rh5AwpMhSZ7url2itVa1Wapf36"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 208.182584ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/XDplWKzAdLtAacsbx0uML7oGE430O0Tw + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance-Test-Client-2-TestAccConnectionClient","client_id":"XDplWKzAdLtAacsbx0uML7oGE430O0Tw","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 150.8685ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_K5StyRCIefx4k87z + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_K5StyRCIefx4k87z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["Itv2W4rh5AwpMhSZ7url2itVa1Wapf36"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 176.586083ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_K5StyRCIefx4k87z + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_K5StyRCIefx4k87z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["Itv2W4rh5AwpMhSZ7url2itVa1Wapf36"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 143.256292ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 92 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"enabled_clients":["Itv2W4rh5AwpMhSZ7url2itVa1Wapf36","XDplWKzAdLtAacsbx0uML7oGE430O0Tw"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_K5StyRCIefx4k87z + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_K5StyRCIefx4k87z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["Itv2W4rh5AwpMhSZ7url2itVa1Wapf36","XDplWKzAdLtAacsbx0uML7oGE430O0Tw"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 153.34625ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_K5StyRCIefx4k87z + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_K5StyRCIefx4k87z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["Itv2W4rh5AwpMhSZ7url2itVa1Wapf36","XDplWKzAdLtAacsbx0uML7oGE430O0Tw"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 146.960542ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_K5StyRCIefx4k87z + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_K5StyRCIefx4k87z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["Itv2W4rh5AwpMhSZ7url2itVa1Wapf36","XDplWKzAdLtAacsbx0uML7oGE430O0Tw"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 138.294667ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Itv2W4rh5AwpMhSZ7url2itVa1Wapf36 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClient","client_id":"Itv2W4rh5AwpMhSZ7url2itVa1Wapf36","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 153.284ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_K5StyRCIefx4k87z + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_K5StyRCIefx4k87z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["Itv2W4rh5AwpMhSZ7url2itVa1Wapf36","XDplWKzAdLtAacsbx0uML7oGE430O0Tw"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 163.986166ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/XDplWKzAdLtAacsbx0uML7oGE430O0Tw + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance-Test-Client-2-TestAccConnectionClient","client_id":"XDplWKzAdLtAacsbx0uML7oGE430O0Tw","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 162.20725ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_K5StyRCIefx4k87z + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_K5StyRCIefx4k87z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["Itv2W4rh5AwpMhSZ7url2itVa1Wapf36","XDplWKzAdLtAacsbx0uML7oGE430O0Tw"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 144.101ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/XDplWKzAdLtAacsbx0uML7oGE430O0Tw + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance-Test-Client-2-TestAccConnectionClient","client_id":"XDplWKzAdLtAacsbx0uML7oGE430O0Tw","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 148.038375ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_K5StyRCIefx4k87z + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_K5StyRCIefx4k87z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["Itv2W4rh5AwpMhSZ7url2itVa1Wapf36","XDplWKzAdLtAacsbx0uML7oGE430O0Tw"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 163.491459ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Itv2W4rh5AwpMhSZ7url2itVa1Wapf36 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClient","client_id":"Itv2W4rh5AwpMhSZ7url2itVa1Wapf36","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 200.836792ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_K5StyRCIefx4k87z + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_K5StyRCIefx4k87z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["Itv2W4rh5AwpMhSZ7url2itVa1Wapf36","XDplWKzAdLtAacsbx0uML7oGE430O0Tw"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 202.279375ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_K5StyRCIefx4k87z + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_K5StyRCIefx4k87z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["Itv2W4rh5AwpMhSZ7url2itVa1Wapf36","XDplWKzAdLtAacsbx0uML7oGE430O0Tw"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 160.31925ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_K5StyRCIefx4k87z + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_K5StyRCIefx4k87z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["Itv2W4rh5AwpMhSZ7url2itVa1Wapf36","XDplWKzAdLtAacsbx0uML7oGE430O0Tw"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 159.940834ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 57 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"enabled_clients":["XDplWKzAdLtAacsbx0uML7oGE430O0Tw"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_K5StyRCIefx4k87z + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_K5StyRCIefx4k87z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["XDplWKzAdLtAacsbx0uML7oGE430O0Tw"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 187.65125ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Itv2W4rh5AwpMhSZ7url2itVa1Wapf36 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClient","client_id":"Itv2W4rh5AwpMhSZ7url2itVa1Wapf36","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 152.892041ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/XDplWKzAdLtAacsbx0uML7oGE430O0Tw + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"name":"Acceptance-Test-Client-2-TestAccConnectionClient","client_id":"XDplWKzAdLtAacsbx0uML7oGE430O0Tw","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 166.210833ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_K5StyRCIefx4k87z + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_K5StyRCIefx4k87z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["XDplWKzAdLtAacsbx0uML7oGE430O0Tw"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 175.631291ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_K5StyRCIefx4k87z + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_K5StyRCIefx4k87z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["XDplWKzAdLtAacsbx0uML7oGE430O0Tw"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 172.887042ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_K5StyRCIefx4k87z + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_K5StyRCIefx4k87z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":["XDplWKzAdLtAacsbx0uML7oGE430O0Tw"],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 138.926834ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/Itv2W4rh5AwpMhSZ7url2itVa1Wapf36 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 165.554375ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 25 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"enabled_clients":null} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_K5StyRCIefx4k87z + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_K5StyRCIefx4k87z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClient","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClient"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 185.670416ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_K5StyRCIefx4k87z + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41 + uncompressed: false + body: '{"deleted_at":"2024-09-12T21:28:48.129Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 202 Accepted + code: 202 + duration: 148.408959ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/XDplWKzAdLtAacsbx0uML7oGE430O0Tw + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 200.743542ms diff --git a/test/data/recordings/TestAccConnectionClients.yaml b/test/data/recordings/TestAccConnectionClients.yaml index 10247d52..4a4d863f 100644 --- a/test/data/recordings/TestAccConnectionClients.yaml +++ b/test/data/recordings/TestAccConnectionClients.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections method: POST response: @@ -30,33 +30,32 @@ interactions: trailer: {} content_length: 558 uncompressed: false - body: '{"id":"con_0I9mGSatSxBeBKge","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 6.641665125s + duration: 151.628084ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N method: GET response: proto: HTTP/2.0 @@ -66,33 +65,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 747.918208ms + duration: 139.607209ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true method: GET response: proto: HTTP/2.0 @@ -102,13 +100,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 4.232926459s + duration: 147.287958ms - id: 3 request: proto: HTTP/1.1 @@ -127,8 +125,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N method: PATCH response: proto: HTTP/2.0 @@ -138,33 +136,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 673.697209ms + duration: 160.081125ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true method: GET response: proto: HTTP/2.0 @@ -174,33 +171,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 2.008501959s + duration: 143.564292ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N method: GET response: proto: HTTP/2.0 @@ -210,33 +206,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.538896708s + duration: 137.717042ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true method: GET response: proto: HTTP/2.0 @@ -246,33 +241,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.594325833s + duration: 131.992792ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N method: GET response: proto: HTTP/2.0 @@ -282,33 +276,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 467.217ms + duration: 146.810167ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true method: GET response: proto: HTTP/2.0 @@ -318,13 +311,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 324.282709ms + duration: 136.437083ms - id: 9 request: proto: HTTP/1.1 @@ -343,7 +336,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients method: POST response: @@ -354,33 +347,32 @@ interactions: trailer: {} content_length: -1 uncompressed: false - body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClients","client_id":"UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClients","client_id":"wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 1.819750209s + duration: 402.289375ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P method: GET response: proto: HTTP/2.0 @@ -390,13 +382,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClients","client_id":"UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClients","client_id":"wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.923786208s + duration: 137.412417ms - id: 11 request: proto: HTTP/1.1 @@ -409,14 +401,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"enabled_clients":["UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg"]} + {"enabled_clients":["wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N method: PATCH response: proto: HTTP/2.0 @@ -426,33 +418,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg"],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P"],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 2.274151667s + duration: 171.9575ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true method: GET response: proto: HTTP/2.0 @@ -462,33 +453,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg"]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 912.172625ms + duration: 135.043917ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N method: GET response: proto: HTTP/2.0 @@ -498,33 +488,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg"],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P"],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 610.675417ms + duration: 138.764667ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P method: GET response: proto: HTTP/2.0 @@ -534,33 +523,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClients","client_id":"UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClients","client_id":"wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 2.938033291s + duration: 156.152ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true method: GET response: proto: HTTP/2.0 @@ -570,33 +558,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg"]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 333.05225ms + duration: 143.169958ms - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N method: GET response: proto: HTTP/2.0 @@ -606,33 +593,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg"],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P"],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 3.837746625s + duration: 147.737167ms - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P method: GET response: proto: HTTP/2.0 @@ -642,33 +628,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClients","client_id":"UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClients","client_id":"wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 2.070649834s + duration: 147.857208ms - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true method: GET response: proto: HTTP/2.0 @@ -678,13 +663,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg"]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 635.874334ms + duration: 140.711583ms - id: 19 request: proto: HTTP/1.1 @@ -703,7 +688,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients method: POST response: @@ -714,33 +699,32 @@ interactions: trailer: {} content_length: -1 uncompressed: false - body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClients","client_id":"aYQMYYKScxCG9UsfE2UMi9ZkdKZwrpp8","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClients","client_id":"uW2FwFPpM3lFMT1kLsJOsFqzmeHEve7m","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 1.273457459s + duration: 270.49425ms - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/aYQMYYKScxCG9UsfE2UMi9ZkdKZwrpp8 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/uW2FwFPpM3lFMT1kLsJOsFqzmeHEve7m method: GET response: proto: HTTP/2.0 @@ -750,13 +734,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClients","client_id":"aYQMYYKScxCG9UsfE2UMi9ZkdKZwrpp8","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClients","client_id":"uW2FwFPpM3lFMT1kLsJOsFqzmeHEve7m","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.012607333s + duration: 159.229042ms - id: 21 request: proto: HTTP/1.1 @@ -769,14 +753,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"enabled_clients":["UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg","aYQMYYKScxCG9UsfE2UMi9ZkdKZwrpp8"]} + {"enabled_clients":["uW2FwFPpM3lFMT1kLsJOsFqzmeHEve7m","wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N method: PATCH response: proto: HTTP/2.0 @@ -786,33 +770,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg","aYQMYYKScxCG9UsfE2UMi9ZkdKZwrpp8"],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["uW2FwFPpM3lFMT1kLsJOsFqzmeHEve7m","wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P"],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.10740025s + duration: 157.598917ms - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true method: GET response: proto: HTTP/2.0 @@ -822,33 +805,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["aYQMYYKScxCG9UsfE2UMi9ZkdKZwrpp8","UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg"]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P","uW2FwFPpM3lFMT1kLsJOsFqzmeHEve7m"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.848775041s + duration: 131.523375ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N method: GET response: proto: HTTP/2.0 @@ -858,33 +840,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["aYQMYYKScxCG9UsfE2UMi9ZkdKZwrpp8","UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg"],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P","uW2FwFPpM3lFMT1kLsJOsFqzmeHEve7m"],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 814.332209ms + duration: 145.346708ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P method: GET response: proto: HTTP/2.0 @@ -894,33 +875,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClients","client_id":"UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClients","client_id":"wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.143348041s + duration: 142.870333ms - id: 25 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/aYQMYYKScxCG9UsfE2UMi9ZkdKZwrpp8 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/uW2FwFPpM3lFMT1kLsJOsFqzmeHEve7m method: GET response: proto: HTTP/2.0 @@ -930,33 +910,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClients","client_id":"aYQMYYKScxCG9UsfE2UMi9ZkdKZwrpp8","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClients","client_id":"uW2FwFPpM3lFMT1kLsJOsFqzmeHEve7m","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 788.914042ms + duration: 138.353667ms - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true method: GET response: proto: HTTP/2.0 @@ -966,33 +945,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["aYQMYYKScxCG9UsfE2UMi9ZkdKZwrpp8","UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg"]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P","uW2FwFPpM3lFMT1kLsJOsFqzmeHEve7m"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 3.396354709s + duration: 168.340875ms - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/aYQMYYKScxCG9UsfE2UMi9ZkdKZwrpp8 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/uW2FwFPpM3lFMT1kLsJOsFqzmeHEve7m method: GET response: proto: HTTP/2.0 @@ -1002,33 +980,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClients","client_id":"aYQMYYKScxCG9UsfE2UMi9ZkdKZwrpp8","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClients","client_id":"uW2FwFPpM3lFMT1kLsJOsFqzmeHEve7m","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 2.033297792s + duration: 143.707916ms - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N method: GET response: proto: HTTP/2.0 @@ -1038,33 +1015,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClients","client_id":"UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"id":"con_xEuykzkeQsXtbj1N","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P","uW2FwFPpM3lFMT1kLsJOsFqzmeHEve7m"],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 3.793117833s + duration: 149.4825ms - id: 29 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P method: GET response: proto: HTTP/2.0 @@ -1074,33 +1050,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["aYQMYYKScxCG9UsfE2UMi9ZkdKZwrpp8","UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg"]}' + body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClients","client_id":"wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 3.981864917s + duration: 149.430833ms - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true method: GET response: proto: HTTP/2.0 @@ -1110,13 +1085,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["aYQMYYKScxCG9UsfE2UMi9ZkdKZwrpp8","UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg"],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":["wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P","uW2FwFPpM3lFMT1kLsJOsFqzmeHEve7m"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 5.374189916s + duration: 151.34025ms - id: 31 request: proto: HTTP/1.1 @@ -1135,8 +1110,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N method: PATCH response: proto: HTTP/2.0 @@ -1146,13 +1121,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.63569325s + duration: 167.91075ms - id: 32 request: proto: HTTP/1.1 @@ -1170,8 +1145,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/aYQMYYKScxCG9UsfE2UMi9ZkdKZwrpp8 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/uW2FwFPpM3lFMT1kLsJOsFqzmeHEve7m method: DELETE response: proto: HTTP/2.0 @@ -1187,7 +1162,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 2.07057025s + duration: 174.056875ms - id: 33 request: proto: HTTP/1.1 @@ -1205,8 +1180,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/UXdIeKr4F7gN9XoTTwqWe6iaVRauhXbg + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/wF6k7Q2wlI6IGUMMmhQacRti46RQaD2P method: DELETE response: proto: HTTP/2.0 @@ -1222,27 +1197,26 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 712.691208ms + duration: 150.481291ms - id: 34 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N method: GET response: proto: HTTP/2.0 @@ -1252,33 +1226,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.092904042s + duration: 140.090416ms - id: 35 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N method: GET response: proto: HTTP/2.0 @@ -1288,33 +1261,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 890.910125ms + duration: 140.098375ms - id: 36 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N method: GET response: proto: HTTP/2.0 @@ -1324,13 +1296,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_0I9mGSatSxBeBKge","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' + body: '{"id":"con_xEuykzkeQsXtbj1N","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionClients","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionClients"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.096448083s + duration: 137.915834ms - id: 37 request: proto: HTTP/1.1 @@ -1348,8 +1320,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0I9mGSatSxBeBKge + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xEuykzkeQsXtbj1N method: DELETE response: proto: HTTP/2.0 @@ -1359,10 +1331,10 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2023-12-19T13:31:47.751Z"}' + body: '{"deleted_at":"2024-09-12T21:29:04.443Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 687.4345ms + duration: 164.320166ms diff --git a/test/data/recordings/TestAccConnectionClientsImport.yaml b/test/data/recordings/TestAccConnectionClientsImport.yaml index 88b449e7..e3ac3970 100644 --- a/test/data/recordings/TestAccConnectionClientsImport.yaml +++ b/test/data/recordings/TestAccConnectionClientsImport.yaml @@ -6,21 +6,20 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ouKiPbGv6eONERfA + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfclIwGFilDZfig3 method: GET response: proto: HTTP/2.0 @@ -30,33 +29,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ouKiPbGv6eONERfA","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-TestAccConnectionClientsImport","is_domain_connection":false,"enabled_clients":["TGIXl1IBOpFmwBpxuCLsoXwl5OQBa1Z7"],"realms":["Acceptance-Test-TestAccConnectionClientsImport"]}' + body: '{"id":"con_QfclIwGFilDZfig3","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-TestAccConnectionClientsImport","is_domain_connection":false,"enabled_clients":["iUytqzFf4KueZRmFL7DRFNqn8RrQGu5Q"],"realms":["Acceptance-Test-TestAccConnectionClientsImport"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.959625ms + duration: 190.368333ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TGIXl1IBOpFmwBpxuCLsoXwl5OQBa1Z7 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/iUytqzFf4KueZRmFL7DRFNqn8RrQGu5Q method: GET response: proto: HTTP/2.0 @@ -66,33 +64,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClientsImport","client_id":"TGIXl1IBOpFmwBpxuCLsoXwl5OQBa1Z7","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClientsImport","client_id":"iUytqzFf4KueZRmFL7DRFNqn8RrQGu5Q","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 176.210208ms + duration: 183.364459ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ouKiPbGv6eONERfA?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfclIwGFilDZfig3?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true method: GET response: proto: HTTP/2.0 @@ -102,33 +99,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ouKiPbGv6eONERfA","strategy":"auth0","name":"Acceptance-Test-TestAccConnectionClientsImport","is_domain_connection":false,"enabled_clients":["TGIXl1IBOpFmwBpxuCLsoXwl5OQBa1Z7"]}' + body: '{"id":"con_QfclIwGFilDZfig3","strategy":"auth0","name":"Acceptance-Test-TestAccConnectionClientsImport","is_domain_connection":false,"enabled_clients":["iUytqzFf4KueZRmFL7DRFNqn8RrQGu5Q"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.060959ms + duration: 194.630667ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ouKiPbGv6eONERfA + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfclIwGFilDZfig3 method: GET response: proto: HTTP/2.0 @@ -138,33 +134,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ouKiPbGv6eONERfA","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-TestAccConnectionClientsImport","is_domain_connection":false,"enabled_clients":["TGIXl1IBOpFmwBpxuCLsoXwl5OQBa1Z7"],"realms":["Acceptance-Test-TestAccConnectionClientsImport"]}' + body: '{"id":"con_QfclIwGFilDZfig3","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-TestAccConnectionClientsImport","is_domain_connection":false,"enabled_clients":["iUytqzFf4KueZRmFL7DRFNqn8RrQGu5Q"],"realms":["Acceptance-Test-TestAccConnectionClientsImport"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 94.564708ms + duration: 183.355334ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TGIXl1IBOpFmwBpxuCLsoXwl5OQBa1Z7 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/iUytqzFf4KueZRmFL7DRFNqn8RrQGu5Q method: GET response: proto: HTTP/2.0 @@ -174,33 +169,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClientsImport","client_id":"TGIXl1IBOpFmwBpxuCLsoXwl5OQBa1Z7","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClientsImport","client_id":"iUytqzFf4KueZRmFL7DRFNqn8RrQGu5Q","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.412417ms + duration: 204.222666ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ouKiPbGv6eONERfA?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfclIwGFilDZfig3?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true method: GET response: proto: HTTP/2.0 @@ -210,33 +204,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ouKiPbGv6eONERfA","strategy":"auth0","name":"Acceptance-Test-TestAccConnectionClientsImport","is_domain_connection":false,"enabled_clients":["TGIXl1IBOpFmwBpxuCLsoXwl5OQBa1Z7"]}' + body: '{"id":"con_QfclIwGFilDZfig3","strategy":"auth0","name":"Acceptance-Test-TestAccConnectionClientsImport","is_domain_connection":false,"enabled_clients":["iUytqzFf4KueZRmFL7DRFNqn8RrQGu5Q"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.206917ms + duration: 213.179042ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ouKiPbGv6eONERfA + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfclIwGFilDZfig3 method: GET response: proto: HTTP/2.0 @@ -246,33 +239,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ouKiPbGv6eONERfA","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-TestAccConnectionClientsImport","is_domain_connection":false,"enabled_clients":["TGIXl1IBOpFmwBpxuCLsoXwl5OQBa1Z7"],"realms":["Acceptance-Test-TestAccConnectionClientsImport"]}' + body: '{"id":"con_QfclIwGFilDZfig3","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-TestAccConnectionClientsImport","is_domain_connection":false,"enabled_clients":["iUytqzFf4KueZRmFL7DRFNqn8RrQGu5Q"],"realms":["Acceptance-Test-TestAccConnectionClientsImport"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 102.419625ms + duration: 219.022667ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TGIXl1IBOpFmwBpxuCLsoXwl5OQBa1Z7 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/iUytqzFf4KueZRmFL7DRFNqn8RrQGu5Q method: GET response: proto: HTTP/2.0 @@ -282,33 +274,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClientsImport","client_id":"TGIXl1IBOpFmwBpxuCLsoXwl5OQBa1Z7","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance-Test-Client-1-TestAccConnectionClientsImport","client_id":"iUytqzFf4KueZRmFL7DRFNqn8RrQGu5Q","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 96.205583ms + duration: 194.848708ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ouKiPbGv6eONERfA?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfclIwGFilDZfig3?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true method: GET response: proto: HTTP/2.0 @@ -318,13 +309,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ouKiPbGv6eONERfA","strategy":"auth0","name":"Acceptance-Test-TestAccConnectionClientsImport","is_domain_connection":false,"enabled_clients":["TGIXl1IBOpFmwBpxuCLsoXwl5OQBa1Z7"]}' + body: '{"id":"con_QfclIwGFilDZfig3","strategy":"auth0","name":"Acceptance-Test-TestAccConnectionClientsImport","is_domain_connection":false,"enabled_clients":["iUytqzFf4KueZRmFL7DRFNqn8RrQGu5Q"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 91.63025ms + duration: 156.013875ms - id: 9 request: proto: HTTP/1.1 @@ -343,8 +334,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ouKiPbGv6eONERfA + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfclIwGFilDZfig3 method: PATCH response: proto: HTTP/2.0 @@ -354,13 +345,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_ouKiPbGv6eONERfA","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-TestAccConnectionClientsImport","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-TestAccConnectionClientsImport"]}' + body: '{"id":"con_QfclIwGFilDZfig3","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-TestAccConnectionClientsImport","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-TestAccConnectionClientsImport"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.750791ms + duration: 213.6255ms - id: 10 request: proto: HTTP/1.1 @@ -378,8 +369,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TGIXl1IBOpFmwBpxuCLsoXwl5OQBa1Z7 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/iUytqzFf4KueZRmFL7DRFNqn8RrQGu5Q method: DELETE response: proto: HTTP/2.0 @@ -395,7 +386,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 184.174833ms + duration: 248.956167ms - id: 11 request: proto: HTTP/1.1 @@ -413,8 +404,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ouKiPbGv6eONERfA + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfclIwGFilDZfig3 method: DELETE response: proto: HTTP/2.0 @@ -424,10 +415,10 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2023-05-23T09:27:27.698Z"}' + body: '{"deleted_at":"2024-09-13T15:14:45.582Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 149.468125ms + duration: 204.982666ms diff --git a/test/data/recordings/TestAccConnectionClientsPreventErasingEnabledClientsOnCreate.yaml b/test/data/recordings/TestAccConnectionClientsPreventErasingEnabledClientsOnCreate.yaml index 3e1b86f7..231af83c 100644 --- a/test/data/recordings/TestAccConnectionClientsPreventErasingEnabledClientsOnCreate.yaml +++ b/test/data/recordings/TestAccConnectionClientsPreventErasingEnabledClientsOnCreate.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections method: POST response: @@ -28,35 +28,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 343 + content_length: 538 uncompressed: false - body: '{"id":"con_VY2LhgO5EtjcTm9V","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-PreventErasing","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-PreventErasing"]}' + body: '{"id":"con_qAbg7eOsqlGyS7QO","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-PreventErasing","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-PreventErasing"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 190.317ms + duration: 233.051166ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_VY2LhgO5EtjcTm9V + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qAbg7eOsqlGyS7QO method: GET response: proto: HTTP/2.0 @@ -66,13 +65,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_VY2LhgO5EtjcTm9V","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-PreventErasing","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-PreventErasing"]}' + body: '{"id":"con_qAbg7eOsqlGyS7QO","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-PreventErasing","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-PreventErasing"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 138.727875ms + duration: 204.124667ms - id: 2 request: proto: HTTP/1.1 @@ -91,7 +90,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients method: POST response: @@ -102,33 +101,32 @@ interactions: trailer: {} content_length: -1 uncompressed: false - body: '{"name":"Acceptance-Test-Client-1-PreventErasing","client_id":"TqWoBEncmLak9u4tlZZmsr71XFNTWnAX","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance-Test-Client-1-PreventErasing","client_id":"wbAFKohm1sWfccVlFvGyrJV4GATz2E4W","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 681.056167ms + duration: 329.340167ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TqWoBEncmLak9u4tlZZmsr71XFNTWnAX + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/wbAFKohm1sWfccVlFvGyrJV4GATz2E4W method: GET response: proto: HTTP/2.0 @@ -138,33 +136,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"name":"Acceptance-Test-Client-1-PreventErasing","client_id":"TqWoBEncmLak9u4tlZZmsr71XFNTWnAX","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' + body: '{"name":"Acceptance-Test-Client-1-PreventErasing","client_id":"wbAFKohm1sWfccVlFvGyrJV4GATz2E4W","client_secret":"[REDACTED]","is_first_party":true,"is_token_endpoint_ip_header_trusted":false,"oidc_conformant":false,"jwt_configuration":{"secret_encoded":false,"lifetime_in_seconds":36000},"signing_keys":[{"cert":"[REDACTED]"}],"sso_disabled":false,"grant_types":["authorization_code","implicit","refresh_token","client_credentials"],"custom_login_page_on":true,"refresh_token":{"rotation_type":"non-rotating","expiration_type":"non-expiring","leeway":0,"token_lifetime":2592000,"infinite_token_lifetime":true,"infinite_idle_token_lifetime":true,"idle_token_lifetime":1296000}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 180.318ms + duration: 197.865583ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_VY2LhgO5EtjcTm9V + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qAbg7eOsqlGyS7QO method: GET response: proto: HTTP/2.0 @@ -174,13 +171,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_VY2LhgO5EtjcTm9V","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-PreventErasing","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-PreventErasing"]}' + body: '{"id":"con_qAbg7eOsqlGyS7QO","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-PreventErasing","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-PreventErasing"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 137.005125ms + duration: 175.470167ms - id: 5 request: proto: HTTP/1.1 @@ -193,14 +190,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"enabled_clients":["TqWoBEncmLak9u4tlZZmsr71XFNTWnAX"]} + {"enabled_clients":["wbAFKohm1sWfccVlFvGyrJV4GATz2E4W"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_VY2LhgO5EtjcTm9V + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qAbg7eOsqlGyS7QO method: PATCH response: proto: HTTP/2.0 @@ -210,33 +207,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_VY2LhgO5EtjcTm9V","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-PreventErasing","is_domain_connection":false,"enabled_clients":["TqWoBEncmLak9u4tlZZmsr71XFNTWnAX"],"realms":["Acceptance-Test-Connection-PreventErasing"]}' + body: '{"id":"con_qAbg7eOsqlGyS7QO","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-PreventErasing","is_domain_connection":false,"enabled_clients":["wbAFKohm1sWfccVlFvGyrJV4GATz2E4W"],"realms":["Acceptance-Test-Connection-PreventErasing"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 146.729ms + duration: 198.040375ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_VY2LhgO5EtjcTm9V + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qAbg7eOsqlGyS7QO method: GET response: proto: HTTP/2.0 @@ -246,33 +242,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_VY2LhgO5EtjcTm9V","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-PreventErasing","is_domain_connection":false,"enabled_clients":["TqWoBEncmLak9u4tlZZmsr71XFNTWnAX"],"realms":["Acceptance-Test-Connection-PreventErasing"]}' + body: '{"id":"con_qAbg7eOsqlGyS7QO","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-PreventErasing","is_domain_connection":false,"enabled_clients":["wbAFKohm1sWfccVlFvGyrJV4GATz2E4W"],"realms":["Acceptance-Test-Connection-PreventErasing"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 153.497042ms + duration: 205.440209ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_VY2LhgO5EtjcTm9V?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qAbg7eOsqlGyS7QO?fields=enabled_clients%2Cstrategy%2Cname&include_fields=true method: GET response: proto: HTTP/2.0 @@ -282,33 +277,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_VY2LhgO5EtjcTm9V","strategy":"auth0","name":"Acceptance-Test-Connection-PreventErasing","is_domain_connection":false,"enabled_clients":["TqWoBEncmLak9u4tlZZmsr71XFNTWnAX"]}' + body: '{"id":"con_qAbg7eOsqlGyS7QO","strategy":"auth0","name":"Acceptance-Test-Connection-PreventErasing","is_domain_connection":false,"enabled_clients":["wbAFKohm1sWfccVlFvGyrJV4GATz2E4W"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 140.307625ms + duration: 380.42525ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_VY2LhgO5EtjcTm9V + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qAbg7eOsqlGyS7QO method: GET response: proto: HTTP/2.0 @@ -318,13 +312,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_VY2LhgO5EtjcTm9V","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-PreventErasing","is_domain_connection":false,"enabled_clients":["TqWoBEncmLak9u4tlZZmsr71XFNTWnAX"],"realms":["Acceptance-Test-Connection-PreventErasing"]}' + body: '{"id":"con_qAbg7eOsqlGyS7QO","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-PreventErasing","is_domain_connection":false,"enabled_clients":["wbAFKohm1sWfccVlFvGyrJV4GATz2E4W"],"realms":["Acceptance-Test-Connection-PreventErasing"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.093083ms + duration: 168.358541ms - id: 9 request: proto: HTTP/1.1 @@ -343,8 +337,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_VY2LhgO5EtjcTm9V + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qAbg7eOsqlGyS7QO method: PATCH response: proto: HTTP/2.0 @@ -354,13 +348,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_VY2LhgO5EtjcTm9V","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-PreventErasing","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-PreventErasing"]}' + body: '{"id":"con_qAbg7eOsqlGyS7QO","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-PreventErasing","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-PreventErasing"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 177.433375ms + duration: 189.472417ms - id: 10 request: proto: HTTP/1.1 @@ -378,8 +372,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/TqWoBEncmLak9u4tlZZmsr71XFNTWnAX + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/clients/wbAFKohm1sWfccVlFvGyrJV4GATz2E4W method: DELETE response: proto: HTTP/2.0 @@ -395,7 +389,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 147.694416ms + duration: 301.0905ms - id: 11 request: proto: HTTP/1.1 @@ -413,8 +407,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.17.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_VY2LhgO5EtjcTm9V + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qAbg7eOsqlGyS7QO method: DELETE response: proto: HTTP/2.0 @@ -424,10 +418,10 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2023-05-08T14:19:03.398Z"}' + body: '{"deleted_at":"2024-09-13T14:52:30.148Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 211.139834ms + duration: 204.075792ms diff --git a/test/data/recordings/TestAccConnectionConfiguration.yaml b/test/data/recordings/TestAccConnectionConfiguration.yaml index cc0d815b..bcb72825 100644 --- a/test/data/recordings/TestAccConnectionConfiguration.yaml +++ b/test/data/recordings/TestAccConnectionConfiguration.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections method: POST response: @@ -28,35 +28,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 678 + content_length: -1 uncompressed: false - body: '{"id":"con_482BTJPR5p3Q81RH","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","brute_force_protection":true,"configuration":{"bar":"2.0$ec150ff5f374e616e57dc00a339ce2db$d5d377e1ba8dbe441d3d84e1e49622f6$43c77093c2d97788eb5b1e0c36fc5150c49d6e335b170005e0707a88370aa615","foo":"2.0$e613d7a15f2aef47a8c625ac3fb153b6$5732466a75180ec0f0050034942b7852$6f7719f3349958b9aba06c06376d78ec35baf541c48a2bb359fc7190af9f5e31"},"strategy_version":2},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionConfiguration","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionConfiguration"]}' + body: '{"id":"con_JQw9hhjEytXA8cx2","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","brute_force_protection":true,"configuration":{"bar":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9ETXE4K0VneGZjblJpRmZrSFovaElWWFVhRUlOV0dpNEs1YnpVaHBOUkpFN2xwcllhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJDdiMThjNyQ2NWJlYTBmODM2OGU5OTMwYWRmYWI4YzUkMWIyMDYxMDAwNjJiYjQxYTQwMmY4ZTUzZDMwMzE5ZTc=","foo":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9EaVpQckVnd0FtdUpoNlVYZGRWM1R0N01hRUY1aG4wMHRMRkZYTDZSMmttTFFwcUVhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJDhlZjg2MSQ3ZDZjZjAyNWIwMjM0MGEwMzYyYzY5NzAkNTQ4NDAzNDRmNjExODgzOGMzNmY5MzQ1MDQ4NzBlNjU="},"strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true}},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionConfiguration","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionConfiguration"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 170.936458ms + duration: 192.284958ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_482BTJPR5p3Q81RH + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_JQw9hhjEytXA8cx2 method: GET response: proto: HTTP/2.0 @@ -66,33 +65,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_482BTJPR5p3Q81RH","options":{"mfa":{"active":true,"return_enroll_settings":true},"configuration":{"bar":"2.0$ec150ff5f374e616e57dc00a339ce2db$d5d377e1ba8dbe441d3d84e1e49622f6$43c77093c2d97788eb5b1e0c36fc5150c49d6e335b170005e0707a88370aa615","foo":"2.0$e613d7a15f2aef47a8c625ac3fb153b6$5732466a75180ec0f0050034942b7852$6f7719f3349958b9aba06c06376d78ec35baf541c48a2bb359fc7190af9f5e31"},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionConfiguration","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionConfiguration"]}' + body: '{"id":"con_JQw9hhjEytXA8cx2","options":{"mfa":{"active":true,"return_enroll_settings":true},"configuration":{"bar":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9ETXE4K0VneGZjblJpRmZrSFovaElWWFVhRUlOV0dpNEs1YnpVaHBOUkpFN2xwcllhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJDdiMThjNyQ2NWJlYTBmODM2OGU5OTMwYWRmYWI4YzUkMWIyMDYxMDAwNjJiYjQxYTQwMmY4ZTUzZDMwMzE5ZTc=","foo":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9EaVpQckVnd0FtdUpoNlVYZGRWM1R0N01hRUY1aG4wMHRMRkZYTDZSMmttTFFwcUVhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJDhlZjg2MSQ3ZDZjZjAyNWIwMjM0MGEwMzYyYzY5NzAkNTQ4NDAzNDRmNjExODgzOGMzNmY5MzQ1MDQ4NzBlNjU="},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionConfiguration","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionConfiguration"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 93.186958ms + duration: 143.705125ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_482BTJPR5p3Q81RH + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_JQw9hhjEytXA8cx2 method: GET response: proto: HTTP/2.0 @@ -102,33 +100,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_482BTJPR5p3Q81RH","options":{"mfa":{"active":true,"return_enroll_settings":true},"configuration":{"bar":"2.0$ec150ff5f374e616e57dc00a339ce2db$d5d377e1ba8dbe441d3d84e1e49622f6$43c77093c2d97788eb5b1e0c36fc5150c49d6e335b170005e0707a88370aa615","foo":"2.0$e613d7a15f2aef47a8c625ac3fb153b6$5732466a75180ec0f0050034942b7852$6f7719f3349958b9aba06c06376d78ec35baf541c48a2bb359fc7190af9f5e31"},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionConfiguration","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionConfiguration"]}' + body: '{"id":"con_JQw9hhjEytXA8cx2","options":{"mfa":{"active":true,"return_enroll_settings":true},"configuration":{"bar":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9ETXE4K0VneGZjblJpRmZrSFovaElWWFVhRUlOV0dpNEs1YnpVaHBOUkpFN2xwcllhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJDdiMThjNyQ2NWJlYTBmODM2OGU5OTMwYWRmYWI4YzUkMWIyMDYxMDAwNjJiYjQxYTQwMmY4ZTUzZDMwMzE5ZTc=","foo":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9EaVpQckVnd0FtdUpoNlVYZGRWM1R0N01hRUY1aG4wMHRMRkZYTDZSMmttTFFwcUVhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJDhlZjg2MSQ3ZDZjZjAyNWIwMjM0MGEwMzYyYzY5NzAkNTQ4NDAzNDRmNjExODgzOGMzNmY5MzQ1MDQ4NzBlNjU="},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionConfiguration","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionConfiguration"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.861292ms + duration: 139.805ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_482BTJPR5p3Q81RH + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_JQw9hhjEytXA8cx2 method: GET response: proto: HTTP/2.0 @@ -138,33 +135,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_482BTJPR5p3Q81RH","options":{"mfa":{"active":true,"return_enroll_settings":true},"configuration":{"bar":"2.0$ec150ff5f374e616e57dc00a339ce2db$d5d377e1ba8dbe441d3d84e1e49622f6$43c77093c2d97788eb5b1e0c36fc5150c49d6e335b170005e0707a88370aa615","foo":"2.0$e613d7a15f2aef47a8c625ac3fb153b6$5732466a75180ec0f0050034942b7852$6f7719f3349958b9aba06c06376d78ec35baf541c48a2bb359fc7190af9f5e31"},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionConfiguration","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionConfiguration"]}' + body: '{"id":"con_JQw9hhjEytXA8cx2","options":{"mfa":{"active":true,"return_enroll_settings":true},"configuration":{"bar":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9ETXE4K0VneGZjblJpRmZrSFovaElWWFVhRUlOV0dpNEs1YnpVaHBOUkpFN2xwcllhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJDdiMThjNyQ2NWJlYTBmODM2OGU5OTMwYWRmYWI4YzUkMWIyMDYxMDAwNjJiYjQxYTQwMmY4ZTUzZDMwMzE5ZTc=","foo":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9EaVpQckVnd0FtdUpoNlVYZGRWM1R0N01hRUY1aG4wMHRMRkZYTDZSMmttTFFwcUVhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJDhlZjg2MSQ3ZDZjZjAyNWIwMjM0MGEwMzYyYzY5NzAkNTQ4NDAzNDRmNjExODgzOGMzNmY5MzQ1MDQ4NzBlNjU="},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionConfiguration","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionConfiguration"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 94.070041ms + duration: 152.975959ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_482BTJPR5p3Q81RH + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_JQw9hhjEytXA8cx2 method: GET response: proto: HTTP/2.0 @@ -174,13 +170,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_482BTJPR5p3Q81RH","options":{"mfa":{"active":true,"return_enroll_settings":true},"configuration":{"bar":"2.0$ec150ff5f374e616e57dc00a339ce2db$d5d377e1ba8dbe441d3d84e1e49622f6$43c77093c2d97788eb5b1e0c36fc5150c49d6e335b170005e0707a88370aa615","foo":"2.0$e613d7a15f2aef47a8c625ac3fb153b6$5732466a75180ec0f0050034942b7852$6f7719f3349958b9aba06c06376d78ec35baf541c48a2bb359fc7190af9f5e31"},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionConfiguration","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionConfiguration"]}' + body: '{"id":"con_JQw9hhjEytXA8cx2","options":{"mfa":{"active":true,"return_enroll_settings":true},"configuration":{"bar":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9ETXE4K0VneGZjblJpRmZrSFovaElWWFVhRUlOV0dpNEs1YnpVaHBOUkpFN2xwcllhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJDdiMThjNyQ2NWJlYTBmODM2OGU5OTMwYWRmYWI4YzUkMWIyMDYxMDAwNjJiYjQxYTQwMmY4ZTUzZDMwMzE5ZTc=","foo":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9EaVpQckVnd0FtdUpoNlVYZGRWM1R0N01hRUY1aG4wMHRMRkZYTDZSMmttTFFwcUVhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJDhlZjg2MSQ3ZDZjZjAyNWIwMjM0MGEwMzYyYzY5NzAkNTQ4NDAzNDRmNjExODgzOGMzNmY5MzQ1MDQ4NzBlNjU="},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionConfiguration","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionConfiguration"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 128.356ms + duration: 140.360917ms - id: 5 request: proto: HTTP/1.1 @@ -199,8 +195,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_482BTJPR5p3Q81RH + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_JQw9hhjEytXA8cx2 method: PATCH response: proto: HTTP/2.0 @@ -210,33 +206,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_482BTJPR5p3Q81RH","options":{"configuration":{"bar":"2.0$61a2fb121da1b1be44801e6931ac4c25$299420ac6dc27de2af7c5436d49f4344$691652a3967907b88e23183348f41bdb0466f6150085d1b655f44f6209998748","baz":"2.0$a923388fdae928f19976978a69c41ff5$644796e6030d370f6a9abc92fe7cefa6$c44d867948500178342947a6df04a1bd912e576c251eaba2b800b138c35db050","foo":"2.0$f3921ad662670279ac1ed213acb6f033$0fe12d47830efc1b7be7ba2937dbda65$b7b0ca61c17afd1cf1e88ee8a29810cbf19d87cd0eebf6abb68e118200c6f1f5"},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionConfiguration","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionConfiguration"]}' + body: '{"id":"con_JQw9hhjEytXA8cx2","options":{"configuration":{"bar":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9EY3BLckVnek0weEdIOWxIU0JRUEV2VnNhRUdKZHQ0dUNTemZGaE0wb0FCcjdSaHdhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJGYwYTEwMyRlYzE2MDA4OTVlMDdjOWZiZTQ1ZTI0NmQkMDdlM2Y5ZTA1YmJjNGUzZmUwZmZiMTA2NDJhOTkxY2I=","baz":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9EWFB6Z0VnelNXelpheTRIeG1XR0d4SmdhRUhaL29OdGlLZ2hJRDJHTlJkcThDaW9hRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJDRkMjUyOCRhODc1N2NiNTM2ZTRhMzM3NDFlZGIzZGIkZjg0MWJmZTc5MzlhNDIzNTg4NTU4MGViZjIyMzM4NjU=","foo":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9ENE5oOEVneEZVT2pNTXJjcEIwRHVEdFFhRU5jVkZoYzkveVZYc1BsMGx3VFlHMDRhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJGI5MjBkNyQ3MzZkNjc5OGNiODhiNzVhM2E1YmE2YmUkMTMzNWZlZGY5Y2NjYzBlZGJkNDE2NDdlY2E1YmNjMTk="},"passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionConfiguration","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionConfiguration"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 138.717708ms + duration: 178.38775ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_482BTJPR5p3Q81RH + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_JQw9hhjEytXA8cx2 method: GET response: proto: HTTP/2.0 @@ -246,33 +241,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_482BTJPR5p3Q81RH","options":{"configuration":{"bar":"2.0$61a2fb121da1b1be44801e6931ac4c25$299420ac6dc27de2af7c5436d49f4344$691652a3967907b88e23183348f41bdb0466f6150085d1b655f44f6209998748","baz":"2.0$a923388fdae928f19976978a69c41ff5$644796e6030d370f6a9abc92fe7cefa6$c44d867948500178342947a6df04a1bd912e576c251eaba2b800b138c35db050","foo":"2.0$f3921ad662670279ac1ed213acb6f033$0fe12d47830efc1b7be7ba2937dbda65$b7b0ca61c17afd1cf1e88ee8a29810cbf19d87cd0eebf6abb68e118200c6f1f5"},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionConfiguration","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionConfiguration"]}' + body: '{"id":"con_JQw9hhjEytXA8cx2","options":{"configuration":{"bar":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9EY3BLckVnek0weEdIOWxIU0JRUEV2VnNhRUdKZHQ0dUNTemZGaE0wb0FCcjdSaHdhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJGYwYTEwMyRlYzE2MDA4OTVlMDdjOWZiZTQ1ZTI0NmQkMDdlM2Y5ZTA1YmJjNGUzZmUwZmZiMTA2NDJhOTkxY2I=","baz":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9EWFB6Z0VnelNXelpheTRIeG1XR0d4SmdhRUhaL29OdGlLZ2hJRDJHTlJkcThDaW9hRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJDRkMjUyOCRhODc1N2NiNTM2ZTRhMzM3NDFlZGIzZGIkZjg0MWJmZTc5MzlhNDIzNTg4NTU4MGViZjIyMzM4NjU=","foo":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9ENE5oOEVneEZVT2pNTXJjcEIwRHVEdFFhRU5jVkZoYzkveVZYc1BsMGx3VFlHMDRhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJGI5MjBkNyQ3MzZkNjc5OGNiODhiNzVhM2E1YmE2YmUkMTMzNWZlZGY5Y2NjYzBlZGJkNDE2NDdlY2E1YmNjMTk="},"passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionConfiguration","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionConfiguration"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 94.950208ms + duration: 140.774583ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_482BTJPR5p3Q81RH + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_JQw9hhjEytXA8cx2 method: GET response: proto: HTTP/2.0 @@ -282,13 +276,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_482BTJPR5p3Q81RH","options":{"configuration":{"bar":"2.0$61a2fb121da1b1be44801e6931ac4c25$299420ac6dc27de2af7c5436d49f4344$691652a3967907b88e23183348f41bdb0466f6150085d1b655f44f6209998748","baz":"2.0$a923388fdae928f19976978a69c41ff5$644796e6030d370f6a9abc92fe7cefa6$c44d867948500178342947a6df04a1bd912e576c251eaba2b800b138c35db050","foo":"2.0$f3921ad662670279ac1ed213acb6f033$0fe12d47830efc1b7be7ba2937dbda65$b7b0ca61c17afd1cf1e88ee8a29810cbf19d87cd0eebf6abb68e118200c6f1f5"},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionConfiguration","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionConfiguration"]}' + body: '{"id":"con_JQw9hhjEytXA8cx2","options":{"configuration":{"bar":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9EY3BLckVnek0weEdIOWxIU0JRUEV2VnNhRUdKZHQ0dUNTemZGaE0wb0FCcjdSaHdhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJGYwYTEwMyRlYzE2MDA4OTVlMDdjOWZiZTQ1ZTI0NmQkMDdlM2Y5ZTA1YmJjNGUzZmUwZmZiMTA2NDJhOTkxY2I=","baz":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9EWFB6Z0VnelNXelpheTRIeG1XR0d4SmdhRUhaL29OdGlLZ2hJRDJHTlJkcThDaW9hRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJDRkMjUyOCRhODc1N2NiNTM2ZTRhMzM3NDFlZGIzZGIkZjg0MWJmZTc5MzlhNDIzNTg4NTU4MGViZjIyMzM4NjU=","foo":"CgRlZmdoEqgBQ2tJS0lEMWhCei9YVFZsTlZhaVBlOWY2clQrTmxiYXRxdTR6YWowTHZUenkzRDF1RWd4cEdSZDNqZStmVjduSlVwOGFFQTBGN1BpNzV0cXdSemE2Y1N5U0tRVVNKUW9ENE5oOEVneEZVT2pNTXJjcEIwRHVEdFFhRU5jVkZoYzkveVZYc1BsMGx3VFlHMDRhRUhkY2wzS2JnMG40alNmdFE3a3IyQ1E9Gkg1LjAkMDAwJGI5MjBkNyQ3MzZkNjc5OGNiODhiNzVhM2E1YmE2YmUkMTMzNWZlZGY5Y2NjYzBlZGJkNDE2NDdlY2E1YmNjMTk="},"passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-TestAccConnectionConfiguration","is_domain_connection":true,"enabled_clients":[],"realms":["Acceptance-Test-Connection-TestAccConnectionConfiguration"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.258917ms + duration: 149.457416ms - id: 8 request: proto: HTTP/1.1 @@ -306,8 +300,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0-SDK/0.15.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_482BTJPR5p3Q81RH + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_JQw9hhjEytXA8cx2 method: DELETE response: proto: HTTP/2.0 @@ -317,10 +311,10 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2023-03-01T17:18:04.370Z"}' + body: '{"deleted_at":"2024-09-12T21:26:35.501Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 201.08275ms + duration: 145.994792ms diff --git a/test/data/recordings/TestAccConnectionGoogleOAuth2.yaml b/test/data/recordings/TestAccConnectionGoogleOAuth2.yaml index c836f4f3..e7e11411 100644 --- a/test/data/recordings/TestAccConnectionGoogleOAuth2.yaml +++ b/test/data/recordings/TestAccConnectionGoogleOAuth2.yaml @@ -1,146 +1,144 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 377 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"name":"Acceptance-Test-Google-OAuth2-TestAccConnectionGoogleOAuth2","strategy":"google-oauth2","is_domain_connection":false,"options":{"allowed_audiences":["api.example.com","example.com"],"email":true,"profile":true,"gmail":true,"youtube":true,"set_user_root_attributes":"on_each_login","non_persistent_attrs":null,"upstream_params":{"screen_name":{"alias":"login_hint"}}}} - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: false - body: '{"id":"con_2cUel3D6VfYcZHtp","options":{"allowed_audiences":["api.example.com","example.com"],"email":true,"profile":true,"gmail":true,"youtube":true,"set_user_root_attributes":"on_each_login","non_persistent_attrs":null,"upstream_params":{"screen_name":{"alias":"login_hint"}},"scope":["email","profile","https://mail.google.com/mail/feed/atom","https://gdata.youtube.com"]},"strategy":"google-oauth2","name":"Acceptance-Test-Google-OAuth2-TestAccConnectionGoogleOAuth2","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Google-OAuth2-TestAccConnectionGoogleOAuth2"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 1ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_2cUel3D6VfYcZHtp - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_2cUel3D6VfYcZHtp","options":{"email":true,"gmail":true,"scope":["email","profile","https://mail.google.com/mail/feed/atom","https://gdata.youtube.com"],"profile":true,"youtube":true,"upstream_params":{"screen_name":{"alias":"login_hint"}},"allowed_audiences":["api.example.com","example.com"],"non_persistent_attrs":null,"set_user_root_attributes":"on_each_login"},"strategy":"google-oauth2","name":"Acceptance-Test-Google-OAuth2-TestAccConnectionGoogleOAuth2","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Google-OAuth2-TestAccConnectionGoogleOAuth2"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_2cUel3D6VfYcZHtp - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_2cUel3D6VfYcZHtp","options":{"email":true,"gmail":true,"scope":["email","profile","https://mail.google.com/mail/feed/atom","https://gdata.youtube.com"],"profile":true,"youtube":true,"upstream_params":{"screen_name":{"alias":"login_hint"}},"allowed_audiences":["api.example.com","example.com"],"non_persistent_attrs":null,"set_user_root_attributes":"on_each_login"},"strategy":"google-oauth2","name":"Acceptance-Test-Google-OAuth2-TestAccConnectionGoogleOAuth2","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Google-OAuth2-TestAccConnectionGoogleOAuth2"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: "" - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_2cUel3D6VfYcZHtp - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Type: - - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 1ms + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 383 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Acceptance-Test-Google-OAuth2-TestAccConnectionGoogleOAuth2","strategy":"google-oauth2","is_domain_connection":false,"options":{"client_id":"","client_secret":"","email":true,"profile":true,"gmail":true,"youtube":true,"set_user_root_attributes":"on_each_login","upstream_params":{"screen_name":{"alias":"login_hint"}},"allowed_audiences":["api.example.com","example.com"]}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 601 + uncompressed: false + body: '{"id":"con_SWN3mTf5i7by8ghD","options":{"client_id":"","client_secret":"","email":true,"profile":true,"gmail":true,"youtube":true,"set_user_root_attributes":"on_each_login","upstream_params":{"screen_name":{"alias":"login_hint"}},"allowed_audiences":["api.example.com","example.com"],"scope":["email","profile","https://mail.google.com/mail/feed/atom","https://gdata.youtube.com"]},"strategy":"google-oauth2","name":"Acceptance-Test-Google-OAuth2-TestAccConnectionGoogleOAuth2","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Google-OAuth2-TestAccConnectionGoogleOAuth2"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 175.281167ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SWN3mTf5i7by8ghD + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_SWN3mTf5i7by8ghD","options":{"email":true,"gmail":true,"scope":["email","profile","https://mail.google.com/mail/feed/atom","https://gdata.youtube.com"],"profile":true,"youtube":true,"client_id":"","client_secret":"","upstream_params":{"screen_name":{"alias":"login_hint"}},"allowed_audiences":["api.example.com","example.com"],"set_user_root_attributes":"on_each_login"},"strategy":"google-oauth2","name":"Acceptance-Test-Google-OAuth2-TestAccConnectionGoogleOAuth2","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Google-OAuth2-TestAccConnectionGoogleOAuth2"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 142.290584ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SWN3mTf5i7by8ghD + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_SWN3mTf5i7by8ghD","options":{"email":true,"gmail":true,"scope":["email","profile","https://mail.google.com/mail/feed/atom","https://gdata.youtube.com"],"profile":true,"youtube":true,"client_id":"","client_secret":"","upstream_params":{"screen_name":{"alias":"login_hint"}},"allowed_audiences":["api.example.com","example.com"],"set_user_root_attributes":"on_each_login"},"strategy":"google-oauth2","name":"Acceptance-Test-Google-OAuth2-TestAccConnectionGoogleOAuth2","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Google-OAuth2-TestAccConnectionGoogleOAuth2"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 148.285416ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SWN3mTf5i7by8ghD + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41 + uncompressed: false + body: '{"deleted_at":"2024-09-12T21:27:26.447Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 202 Accepted + code: 202 + duration: 181.36175ms diff --git a/test/data/recordings/TestAccConnectionLinkedin.yaml b/test/data/recordings/TestAccConnectionLinkedin.yaml index 3812296c..3845671c 100644 --- a/test/data/recordings/TestAccConnectionLinkedin.yaml +++ b/test/data/recordings/TestAccConnectionLinkedin.yaml @@ -1,290 +1,285 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 336 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"name":"Acceptance-Test-Linkedin-TestAccConnectionLinkedin","strategy":"linkedin","is_domain_connection":false,"options":{"client_id":"client_id","client_secret":"client_secret","strategy_version":2,"email":true,"profile":true,"basic_profile":true,"non_persistent_attrs":null,"upstream_params":{"screen_name":{"alias":"login_hint"}}}} - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: false - body: '{"id":"con_DUbnzTUJXSQilo5b","options":{"client_id":"client_id","client_secret":"client_secret","strategy_version":2,"email":true,"profile":true,"basic_profile":true,"non_persistent_attrs":null,"upstream_params":{"screen_name":{"alias":"login_hint"}},"scope":["r_emailaddress","r_liteprofile","r_basicprofile"]},"strategy":"linkedin","name":"Acceptance-Test-Linkedin-TestAccConnectionLinkedin","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Linkedin-TestAccConnectionLinkedin"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 1ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_DUbnzTUJXSQilo5b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_DUbnzTUJXSQilo5b","options":{"email":true,"scope":["r_emailaddress","r_liteprofile","r_basicprofile"],"profile":true,"client_id":"client_id","basic_profile":true,"client_secret":"client_secret","upstream_params":{"screen_name":{"alias":"login_hint"}},"strategy_version":2,"non_persistent_attrs":null},"strategy":"linkedin","name":"Acceptance-Test-Linkedin-TestAccConnectionLinkedin","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Linkedin-TestAccConnectionLinkedin"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_DUbnzTUJXSQilo5b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_DUbnzTUJXSQilo5b","options":{"email":true,"scope":["r_emailaddress","r_liteprofile","r_basicprofile"],"profile":true,"client_id":"client_id","basic_profile":true,"client_secret":"client_secret","upstream_params":{"screen_name":{"alias":"login_hint"}},"strategy_version":2,"non_persistent_attrs":null},"strategy":"linkedin","name":"Acceptance-Test-Linkedin-TestAccConnectionLinkedin","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Linkedin-TestAccConnectionLinkedin"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_DUbnzTUJXSQilo5b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_DUbnzTUJXSQilo5b","options":{"email":true,"scope":["r_emailaddress","r_liteprofile","r_basicprofile"],"profile":true,"client_id":"client_id","basic_profile":true,"client_secret":"client_secret","upstream_params":{"screen_name":{"alias":"login_hint"}},"strategy_version":2,"non_persistent_attrs":null},"strategy":"linkedin","name":"Acceptance-Test-Linkedin-TestAccConnectionLinkedin","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Linkedin-TestAccConnectionLinkedin"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 212 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"is_domain_connection":false,"options":{"client_id":"client_id_update","client_secret":"client_secret_update","strategy_version":2,"email":false,"profile":true,"basic_profile":true,"non_persistent_attrs":null}} - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_DUbnzTUJXSQilo5b - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_DUbnzTUJXSQilo5b","options":{"email":false,"scope":["r_liteprofile","r_basicprofile"],"profile":true,"client_id":"client_id_update","basic_profile":true,"client_secret":"client_secret_update","strategy_version":2,"non_persistent_attrs":null},"strategy":"linkedin","name":"Acceptance-Test-Linkedin-TestAccConnectionLinkedin","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Linkedin-TestAccConnectionLinkedin"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_DUbnzTUJXSQilo5b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_DUbnzTUJXSQilo5b","options":{"email":false,"scope":["r_liteprofile","r_basicprofile"],"profile":true,"client_id":"client_id_update","basic_profile":true,"client_secret":"client_secret_update","strategy_version":2,"non_persistent_attrs":null},"strategy":"linkedin","name":"Acceptance-Test-Linkedin-TestAccConnectionLinkedin","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Linkedin-TestAccConnectionLinkedin"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_DUbnzTUJXSQilo5b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_DUbnzTUJXSQilo5b","options":{"email":false,"scope":["r_liteprofile","r_basicprofile"],"profile":true,"client_id":"client_id_update","basic_profile":true,"client_secret":"client_secret_update","strategy_version":2,"non_persistent_attrs":null},"strategy":"linkedin","name":"Acceptance-Test-Linkedin-TestAccConnectionLinkedin","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Linkedin-TestAccConnectionLinkedin"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: "" - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_DUbnzTUJXSQilo5b - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Type: - - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 1ms + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 308 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Acceptance-Test-Linkedin-TestAccConnectionLinkedin","strategy":"linkedin","is_domain_connection":false,"options":{"client_id":"client_id","client_secret":"client_secret","strategy_version":2,"email":true,"profile":true,"basic_profile":true,"upstream_params":{"screen_name":{"alias":"login_hint"}}}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 480 + uncompressed: false + body: '{"id":"con_OBZprCgrid0WdxL4","options":{"client_id":"client_id","client_secret":"client_secret","strategy_version":2,"email":true,"profile":true,"basic_profile":true,"upstream_params":{"screen_name":{"alias":"login_hint"}},"scope":["r_emailaddress","r_liteprofile","r_basicprofile"]},"strategy":"linkedin","name":"Acceptance-Test-Linkedin-TestAccConnectionLinkedin","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Linkedin-TestAccConnectionLinkedin"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 162.230334ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_OBZprCgrid0WdxL4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_OBZprCgrid0WdxL4","options":{"email":true,"scope":["r_emailaddress","r_liteprofile","r_basicprofile"],"profile":true,"client_id":"client_id","basic_profile":true,"client_secret":"client_secret","upstream_params":{"screen_name":{"alias":"login_hint"}},"strategy_version":2},"strategy":"linkedin","name":"Acceptance-Test-Linkedin-TestAccConnectionLinkedin","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Linkedin-TestAccConnectionLinkedin"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 153.76425ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_OBZprCgrid0WdxL4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_OBZprCgrid0WdxL4","options":{"email":true,"scope":["r_emailaddress","r_liteprofile","r_basicprofile"],"profile":true,"client_id":"client_id","basic_profile":true,"client_secret":"client_secret","upstream_params":{"screen_name":{"alias":"login_hint"}},"strategy_version":2},"strategy":"linkedin","name":"Acceptance-Test-Linkedin-TestAccConnectionLinkedin","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Linkedin-TestAccConnectionLinkedin"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 137.802458ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_OBZprCgrid0WdxL4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_OBZprCgrid0WdxL4","options":{"email":true,"scope":["r_emailaddress","r_liteprofile","r_basicprofile"],"profile":true,"client_id":"client_id","basic_profile":true,"client_secret":"client_secret","upstream_params":{"screen_name":{"alias":"login_hint"}},"strategy_version":2},"strategy":"linkedin","name":"Acceptance-Test-Linkedin-TestAccConnectionLinkedin","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Linkedin-TestAccConnectionLinkedin"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 134.189541ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 184 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"is_domain_connection":false,"options":{"client_id":"client_id_update","client_secret":"client_secret_update","strategy_version":2,"email":false,"profile":true,"basic_profile":true}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_OBZprCgrid0WdxL4 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_OBZprCgrid0WdxL4","options":{"email":false,"scope":["r_liteprofile","r_basicprofile"],"profile":true,"client_id":"client_id_update","basic_profile":true,"client_secret":"client_secret_update","strategy_version":2},"strategy":"linkedin","name":"Acceptance-Test-Linkedin-TestAccConnectionLinkedin","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Linkedin-TestAccConnectionLinkedin"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 157.643542ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_OBZprCgrid0WdxL4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_OBZprCgrid0WdxL4","options":{"email":false,"scope":["r_liteprofile","r_basicprofile"],"profile":true,"client_id":"client_id_update","basic_profile":true,"client_secret":"client_secret_update","strategy_version":2},"strategy":"linkedin","name":"Acceptance-Test-Linkedin-TestAccConnectionLinkedin","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Linkedin-TestAccConnectionLinkedin"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 144.162417ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_OBZprCgrid0WdxL4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_OBZprCgrid0WdxL4","options":{"email":false,"scope":["r_liteprofile","r_basicprofile"],"profile":true,"client_id":"client_id_update","basic_profile":true,"client_secret":"client_secret_update","strategy_version":2},"strategy":"linkedin","name":"Acceptance-Test-Linkedin-TestAccConnectionLinkedin","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Linkedin-TestAccConnectionLinkedin"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 141.643375ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_OBZprCgrid0WdxL4 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41 + uncompressed: false + body: '{"deleted_at":"2024-09-12T21:26:45.027Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 202 Accepted + code: 202 + duration: 157.493458ms diff --git a/test/data/recordings/TestAccConnectionOAuth2.yaml b/test/data/recordings/TestAccConnectionOAuth2.yaml index 93fef247..61ab5170 100644 --- a/test/data/recordings/TestAccConnectionOAuth2.yaml +++ b/test/data/recordings/TestAccConnectionOAuth2.yaml @@ -1,290 +1,285 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 540 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"name":"Acceptance-Test-OAuth2-TestAccConnectionOAuth2","strategy":"oauth2","is_domain_connection":false,"options":{"client_id":"123456","client_secret":"123456","authorizationURL":"https://api.login.yahoo.com/oauth2/request_auth","tokenURL":"https://api.login.yahoo.com/oauth2/get_token","scope":"email openid profile","set_user_root_attributes":"on_each_login","non_persistent_attrs":null,"pkce_enabled":true,"scripts":{"fetchUserProfile":"function( { return callback(null) }"},"upstream_params":{"screen_name":{"alias":"login_hint"}}}} - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: false - body: '{"id":"con_t8udzYupJjK4OccE","options":{"client_id":"123456","client_secret":"123456","authorizationURL":"https://api.login.yahoo.com/oauth2/request_auth","tokenURL":"https://api.login.yahoo.com/oauth2/get_token","scope":"email openid profile","set_user_root_attributes":"on_each_login","non_persistent_attrs":null,"pkce_enabled":true,"scripts":{"fetchUserProfile":"function( { return callback(null) }"},"upstream_params":{"screen_name":{"alias":"login_hint"}}},"strategy":"oauth2","name":"Acceptance-Test-OAuth2-TestAccConnectionOAuth2","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-OAuth2-TestAccConnectionOAuth2"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 1ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_t8udzYupJjK4OccE - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_t8udzYupJjK4OccE","options":{"scope":"email openid profile","scripts":{"fetchUserProfile":"function( { return callback(null) }"},"tokenURL":"https://api.login.yahoo.com/oauth2/get_token","client_id":"123456","pkce_enabled":true,"client_secret":"123456","upstream_params":{"screen_name":{"alias":"login_hint"}},"authorizationURL":"https://api.login.yahoo.com/oauth2/request_auth","non_persistent_attrs":null,"set_user_root_attributes":"on_each_login"},"strategy":"oauth2","name":"Acceptance-Test-OAuth2-TestAccConnectionOAuth2","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-OAuth2-TestAccConnectionOAuth2"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_t8udzYupJjK4OccE - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_t8udzYupJjK4OccE","options":{"scope":"email openid profile","scripts":{"fetchUserProfile":"function( { return callback(null) }"},"tokenURL":"https://api.login.yahoo.com/oauth2/get_token","client_id":"123456","pkce_enabled":true,"client_secret":"123456","upstream_params":{"screen_name":{"alias":"login_hint"}},"authorizationURL":"https://api.login.yahoo.com/oauth2/request_auth","non_persistent_attrs":null,"set_user_root_attributes":"on_each_login"},"strategy":"oauth2","name":"Acceptance-Test-OAuth2-TestAccConnectionOAuth2","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-OAuth2-TestAccConnectionOAuth2"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_t8udzYupJjK4OccE - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_t8udzYupJjK4OccE","options":{"scope":"email openid profile","scripts":{"fetchUserProfile":"function( { return callback(null) }"},"tokenURL":"https://api.login.yahoo.com/oauth2/get_token","client_id":"123456","pkce_enabled":true,"client_secret":"123456","upstream_params":{"screen_name":{"alias":"login_hint"}},"authorizationURL":"https://api.login.yahoo.com/oauth2/request_auth","non_persistent_attrs":null,"set_user_root_attributes":"on_each_login"},"strategy":"oauth2","name":"Acceptance-Test-OAuth2-TestAccConnectionOAuth2","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-OAuth2-TestAccConnectionOAuth2"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 441 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"is_domain_connection":false,"options":{"client_id":"1234567","client_secret":"1234567","authorizationURL":"https://www.paypal.com/signin/authorize","tokenURL":"https://api.paypal.com/v1/oauth2/token","scope":"email openid","set_user_root_attributes":"on_first_login","non_persistent_attrs":null,"icon_url":"https://cdn.paypal.com/assets/logo.png","pkce_enabled":false,"scripts":{"fetchUserProfile":"function( { return callback(null) }"}}} - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_t8udzYupJjK4OccE - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_t8udzYupJjK4OccE","options":{"scope":"email openid","scripts":{"fetchUserProfile":"function( { return callback(null) }"},"icon_url":"https://cdn.paypal.com/assets/logo.png","tokenURL":"https://api.paypal.com/v1/oauth2/token","client_id":"1234567","pkce_enabled":false,"client_secret":"1234567","authorizationURL":"https://www.paypal.com/signin/authorize","non_persistent_attrs":null,"set_user_root_attributes":"on_first_login"},"strategy":"oauth2","name":"Acceptance-Test-OAuth2-TestAccConnectionOAuth2","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-OAuth2-TestAccConnectionOAuth2"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_t8udzYupJjK4OccE - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_t8udzYupJjK4OccE","options":{"scope":"email openid","scripts":{"fetchUserProfile":"function( { return callback(null) }"},"icon_url":"https://cdn.paypal.com/assets/logo.png","tokenURL":"https://api.paypal.com/v1/oauth2/token","client_id":"1234567","pkce_enabled":false,"client_secret":"1234567","authorizationURL":"https://www.paypal.com/signin/authorize","non_persistent_attrs":null,"set_user_root_attributes":"on_first_login"},"strategy":"oauth2","name":"Acceptance-Test-OAuth2-TestAccConnectionOAuth2","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-OAuth2-TestAccConnectionOAuth2"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_t8udzYupJjK4OccE - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_t8udzYupJjK4OccE","options":{"scope":"email openid","scripts":{"fetchUserProfile":"function( { return callback(null) }"},"icon_url":"https://cdn.paypal.com/assets/logo.png","tokenURL":"https://api.paypal.com/v1/oauth2/token","client_id":"1234567","pkce_enabled":false,"client_secret":"1234567","authorizationURL":"https://www.paypal.com/signin/authorize","non_persistent_attrs":null,"set_user_root_attributes":"on_first_login"},"strategy":"oauth2","name":"Acceptance-Test-OAuth2-TestAccConnectionOAuth2","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-OAuth2-TestAccConnectionOAuth2"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: "" - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_t8udzYupJjK4OccE - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Type: - - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 1ms + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 539 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Acceptance-Test-OAuth2-TestAccConnectionOAuth2","strategy":"oauth2","is_domain_connection":false,"options":{"client_id":"123456","client_secret":"123456","strategy_version":2,"authorizationURL":"https://api.login.yahoo.com/oauth2/request_auth","tokenURL":"https://api.login.yahoo.com/oauth2/get_token","set_user_root_attributes":"on_each_login","pkce_enabled":true,"scripts":{"fetchUserProfile":"function( { return callback(null) }"},"upstream_params":{"screen_name":{"alias":"login_hint"}},"scope":["email","openid","profile"]}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 647 + uncompressed: false + body: '{"id":"con_Xfqyr0lqTg9cPvLU","options":{"client_id":"123456","client_secret":"123456","strategy_version":2,"authorizationURL":"https://api.login.yahoo.com/oauth2/request_auth","tokenURL":"https://api.login.yahoo.com/oauth2/get_token","set_user_root_attributes":"on_each_login","pkce_enabled":true,"scripts":{"fetchUserProfile":"function( { return callback(null) }"},"upstream_params":{"screen_name":{"alias":"login_hint"}},"scope":["email","openid","profile"]},"strategy":"oauth2","name":"Acceptance-Test-OAuth2-TestAccConnectionOAuth2","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-OAuth2-TestAccConnectionOAuth2"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 176.859ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Xfqyr0lqTg9cPvLU + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_Xfqyr0lqTg9cPvLU","options":{"scope":["email","openid","profile"],"scripts":{"fetchUserProfile":"function( { return callback(null) }"},"tokenURL":"https://api.login.yahoo.com/oauth2/get_token","client_id":"123456","pkce_enabled":true,"client_secret":"123456","upstream_params":{"screen_name":{"alias":"login_hint"}},"authorizationURL":"https://api.login.yahoo.com/oauth2/request_auth","strategy_version":2,"set_user_root_attributes":"on_each_login"},"strategy":"oauth2","name":"Acceptance-Test-OAuth2-TestAccConnectionOAuth2","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-OAuth2-TestAccConnectionOAuth2"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 181.060208ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Xfqyr0lqTg9cPvLU + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_Xfqyr0lqTg9cPvLU","options":{"scope":["email","openid","profile"],"scripts":{"fetchUserProfile":"function( { return callback(null) }"},"tokenURL":"https://api.login.yahoo.com/oauth2/get_token","client_id":"123456","pkce_enabled":true,"client_secret":"123456","upstream_params":{"screen_name":{"alias":"login_hint"}},"authorizationURL":"https://api.login.yahoo.com/oauth2/request_auth","strategy_version":2,"set_user_root_attributes":"on_each_login"},"strategy":"oauth2","name":"Acceptance-Test-OAuth2-TestAccConnectionOAuth2","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-OAuth2-TestAccConnectionOAuth2"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 170.520667ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Xfqyr0lqTg9cPvLU + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_Xfqyr0lqTg9cPvLU","options":{"scope":["email","openid","profile"],"scripts":{"fetchUserProfile":"function( { return callback(null) }"},"tokenURL":"https://api.login.yahoo.com/oauth2/get_token","client_id":"123456","pkce_enabled":true,"client_secret":"123456","upstream_params":{"screen_name":{"alias":"login_hint"}},"authorizationURL":"https://api.login.yahoo.com/oauth2/request_auth","strategy_version":2,"set_user_root_attributes":"on_each_login"},"strategy":"oauth2","name":"Acceptance-Test-OAuth2-TestAccConnectionOAuth2","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-OAuth2-TestAccConnectionOAuth2"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 156.729458ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 417 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"is_domain_connection":false,"options":{"client_id":"1234567","client_secret":"1234567","authorizationURL":"https://www.paypal.com/signin/authorize","tokenURL":"https://api.paypal.com/v1/oauth2/token","set_user_root_attributes":"on_first_login","icon_url":"https://cdn.paypal.com/assets/logo.png","pkce_enabled":false,"scripts":{"fetchUserProfile":"function( { return callback(null) }"},"scope":["email","openid"]}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Xfqyr0lqTg9cPvLU + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_Xfqyr0lqTg9cPvLU","options":{"scope":["email","openid"],"scripts":{"fetchUserProfile":"function( { return callback(null) }"},"icon_url":"https://cdn.paypal.com/assets/logo.png","tokenURL":"https://api.paypal.com/v1/oauth2/token","client_id":"1234567","pkce_enabled":false,"client_secret":"1234567","authorizationURL":"https://www.paypal.com/signin/authorize","set_user_root_attributes":"on_first_login"},"strategy":"oauth2","name":"Acceptance-Test-OAuth2-TestAccConnectionOAuth2","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-OAuth2-TestAccConnectionOAuth2"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 156.600209ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Xfqyr0lqTg9cPvLU + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_Xfqyr0lqTg9cPvLU","options":{"scope":["email","openid"],"scripts":{"fetchUserProfile":"function( { return callback(null) }"},"icon_url":"https://cdn.paypal.com/assets/logo.png","tokenURL":"https://api.paypal.com/v1/oauth2/token","client_id":"1234567","pkce_enabled":false,"client_secret":"1234567","authorizationURL":"https://www.paypal.com/signin/authorize","set_user_root_attributes":"on_first_login"},"strategy":"oauth2","name":"Acceptance-Test-OAuth2-TestAccConnectionOAuth2","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-OAuth2-TestAccConnectionOAuth2"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 139.736791ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Xfqyr0lqTg9cPvLU + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_Xfqyr0lqTg9cPvLU","options":{"scope":["email","openid"],"scripts":{"fetchUserProfile":"function( { return callback(null) }"},"icon_url":"https://cdn.paypal.com/assets/logo.png","tokenURL":"https://api.paypal.com/v1/oauth2/token","client_id":"1234567","pkce_enabled":false,"client_secret":"1234567","authorizationURL":"https://www.paypal.com/signin/authorize","set_user_root_attributes":"on_first_login"},"strategy":"oauth2","name":"Acceptance-Test-OAuth2-TestAccConnectionOAuth2","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-OAuth2-TestAccConnectionOAuth2"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 139.771083ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Xfqyr0lqTg9cPvLU + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41 + uncompressed: false + body: '{"deleted_at":"2024-09-12T21:26:21.486Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 202 Accepted + code: 202 + duration: 169.786708ms diff --git a/test/data/recordings/TestAccConnectionOIDC.yaml b/test/data/recordings/TestAccConnectionOIDC.yaml index 2b20045d..a497e05d 100644 --- a/test/data/recordings/TestAccConnectionOIDC.yaml +++ b/test/data/recordings/TestAccConnectionOIDC.yaml @@ -6,20 +6,20 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 937 + content_length: 932 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","display_name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","strategy":"oidc","show_as_button":true,"options":{"client_id":"123456","client_secret":"123456","domain_aliases":["api.example.com","example.com"],"discovery_url":"https://api.login.yahoo.com/.well-known/openid-configuration","authorization_endpoint":"https://api.login.yahoo.com/oauth2/request_auth","issuer":"https://api.login.yahoo.com","jwks_uri":"https://api.login.yahoo.com/openid/v1/certs","type":"back_channel","userinfo_endpoint":"https://api.login.yahoo.com/openid/v1/userinfo","token_endpoint":"https://api.login.yahoo.com/oauth2/get_token","scope":"email openid profile","set_user_root_attributes":"on_each_login","non_persistent_attrs":["gender","hair_color"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"connection_settings":{"pkce":"disabled"},"attribute_map":{"mapping_mode":"basic_profile"}}} + {"name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","display_name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","strategy":"oidc","show_as_button":true,"options":{"client_id":"123456","client_secret":"123456","domain_aliases":["api.example.com","example.com"],"discovery_url":"https://api.login.yahoo.com/.well-known/openid-configuration","authorization_endpoint":"https://api.login.yahoo.com/oauth2/request_auth","issuer":"https://api.login.yahoo.com","jwks_uri":"https://api.login.yahoo.com/openid/v1/certs","type":"back_channel","userinfo_endpoint":"https://api.login.yahoo.com/openid/v1/userinfo","token_endpoint":"https://api.login.yahoo.com/oauth2/get_token","scope":"email openid profile","set_user_root_attributes":"on_each_login","non_persistent_attrs":["gender","hair_color"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"connection_settings":{"pkce":"disabled"},"attribute_map":{"mapping_mode":"bind_all"}}} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.1.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections method: POST response: @@ -30,33 +30,32 @@ interactions: trailer: {} content_length: -1 uncompressed: false - body: '{"id":"con_rBkGMxTRAQaTQHcB","options":{"client_id":"123456","client_secret":"123456","domain_aliases":["api.example.com","example.com"],"discovery_url":"https://api.login.yahoo.com/.well-known/openid-configuration","authorization_endpoint":"https://api.login.yahoo.com/oauth2/request_auth","issuer":"https://api.login.yahoo.com","jwks_uri":"https://api.login.yahoo.com/openid/v1/certs","type":"back_channel","userinfo_endpoint":"https://api.login.yahoo.com/openid/v1/userinfo","token_endpoint":"https://api.login.yahoo.com/oauth2/get_token","scope":"email openid profile","set_user_root_attributes":"on_each_login","non_persistent_attrs":["gender","hair_color"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"connection_settings":{"pkce":"disabled"},"attribute_map":{"mapping_mode":"basic_profile"},"schema_version":"openid-1.0.0","oidc_metadata":{"issuer":"https://api.login.yahoo.com","authorization_endpoint":"https://api.login.yahoo.com/oauth2/request_auth","token_endpoint":"https://api.login.yahoo.com/oauth2/get_token","introspection_endpoint":"https://api.login.yahoo.com/oauth2/introspect","userinfo_endpoint":"https://api.login.yahoo.com/openid/v1/userinfo","token_revocation_endpoint":"https://api.login.yahoo.com/oauth2/revoke","jwks_uri":"https://api.login.yahoo.com/openid/v1/certs","response_types_supported":["code","token","id_token","code token","code id_token","token id_token","code token id_token"],"subject_types_supported":["public"],"grant_types_supported":["authorization_code","refresh_token"],"id_token_signing_alg_values_supported":["ES256","RS256"],"scopes_supported":["openid","openid2","profile","email"],"acr_values_supported":["AAL1","AAL2"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post"],"claims_supported":["aud","email","email_verified","birthdate","exp","family_name","given_name","iat","iss","locale","name","sub","auth_time"],"response_modes_supported":["query"],"display_values_supported":["page"],"claims_parameter_supported":false,"request_parameter_supported":false,"request_uri_parameter_supported":false,"require_request_uri_registration":false}},"strategy":"oidc","name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","enabled_clients":[],"realms":["Acceptance-Test-OIDC-TestAccConnectionOIDC"]}' + body: '{"id":"con_U8Y22FLGSJvyQfAh","options":{"client_id":"123456","client_secret":"123456","domain_aliases":["api.example.com","example.com"],"discovery_url":"https://api.login.yahoo.com/.well-known/openid-configuration","authorization_endpoint":"https://api.login.yahoo.com/oauth2/request_auth","issuer":"https://api.login.yahoo.com","jwks_uri":"https://api.login.yahoo.com/openid/v1/certs","type":"back_channel","userinfo_endpoint":"https://api.login.yahoo.com/openid/v1/userinfo","token_endpoint":"https://api.login.yahoo.com/oauth2/get_token","scope":"email openid profile","set_user_root_attributes":"on_each_login","non_persistent_attrs":["gender","hair_color"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"connection_settings":{"pkce":"disabled"},"attribute_map":{"mapping_mode":"bind_all"},"oidc_metadata":{"issuer":"https://api.login.yahoo.com","authorization_endpoint":"https://api.login.yahoo.com/oauth2/request_auth","token_endpoint":"https://api.login.yahoo.com/oauth2/get_token","introspection_endpoint":"https://api.login.yahoo.com/oauth2/introspect","userinfo_endpoint":"https://api.login.yahoo.com/openid/v1/userinfo","token_revocation_endpoint":"https://api.login.yahoo.com/oauth2/revoke","jwks_uri":"https://api.login.yahoo.com/openid/v1/certs","response_types_supported":["code","token","id_token","code token","code id_token","token id_token","code token id_token"],"subject_types_supported":["public"],"grant_types_supported":["authorization_code","refresh_token"],"id_token_signing_alg_values_supported":["ES256","RS256"],"scopes_supported":["openid","openid2","profile","email"],"acr_values_supported":["AAL1","AAL2"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post"],"claims_supported":["aud","email","email_verified","birthdate","exp","family_name","given_name","iat","iss","locale","name","sub","auth_time"],"response_modes_supported":["query"],"display_values_supported":["page"],"claims_parameter_supported":false,"request_parameter_supported":false,"request_uri_parameter_supported":false,"require_request_uri_registration":false},"schema_version":"oidc-V4"},"strategy":"oidc","name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","enabled_clients":[],"realms":["Acceptance-Test-OIDC-TestAccConnectionOIDC"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 212.412709ms + duration: 232.90475ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.1.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_rBkGMxTRAQaTQHcB + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_U8Y22FLGSJvyQfAh method: GET response: proto: HTTP/2.0 @@ -66,33 +65,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_rBkGMxTRAQaTQHcB","options":{"type":"back_channel","scope":"email openid profile","issuer":"https://api.login.yahoo.com","jwks_uri":"https://api.login.yahoo.com/openid/v1/certs","client_id":"123456","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"123456","discovery_url":"https://api.login.yahoo.com/.well-known/openid-configuration","oidc_metadata":{"issuer":"https://api.login.yahoo.com","jwks_uri":"https://api.login.yahoo.com/openid/v1/certs","token_endpoint":"https://api.login.yahoo.com/oauth2/get_token","claims_supported":["aud","email","email_verified","birthdate","exp","family_name","given_name","iat","iss","locale","name","sub","auth_time"],"scopes_supported":["openid","openid2","profile","email"],"userinfo_endpoint":"https://api.login.yahoo.com/openid/v1/userinfo","acr_values_supported":["AAL1","AAL2"],"grant_types_supported":["authorization_code","refresh_token"],"authorization_endpoint":"https://api.login.yahoo.com/oauth2/request_auth","introspection_endpoint":"https://api.login.yahoo.com/oauth2/introspect","subject_types_supported":["public"],"display_values_supported":["page"],"response_modes_supported":["query"],"response_types_supported":["code","token","id_token","code token","code id_token","token id_token","code token id_token"],"token_revocation_endpoint":"https://api.login.yahoo.com/oauth2/revoke","claims_parameter_supported":false,"request_parameter_supported":false,"request_uri_parameter_supported":false,"require_request_uri_registration":false,"id_token_signing_alg_values_supported":["ES256","RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post"]},"domain_aliases":["api.example.com","example.com"],"schema_version":"openid-1.0.0","token_endpoint":"https://api.login.yahoo.com/oauth2/get_token","upstream_params":{"screen_name":{"alias":"login_hint"}},"userinfo_endpoint":"https://api.login.yahoo.com/openid/v1/userinfo","connection_settings":{"pkce":"disabled"},"non_persistent_attrs":["gender","hair_color"],"authorization_endpoint":"https://api.login.yahoo.com/oauth2/request_auth","set_user_root_attributes":"on_each_login"},"strategy":"oidc","name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","enabled_clients":[],"realms":["Acceptance-Test-OIDC-TestAccConnectionOIDC"]}' + body: '{"id":"con_U8Y22FLGSJvyQfAh","options":{"type":"back_channel","scope":"email openid profile","issuer":"https://api.login.yahoo.com","jwks_uri":"https://api.login.yahoo.com/openid/v1/certs","client_id":"123456","attribute_map":{"mapping_mode":"bind_all"},"client_secret":"123456","discovery_url":"https://api.login.yahoo.com/.well-known/openid-configuration","oidc_metadata":{"issuer":"https://api.login.yahoo.com","jwks_uri":"https://api.login.yahoo.com/openid/v1/certs","token_endpoint":"https://api.login.yahoo.com/oauth2/get_token","claims_supported":["aud","email","email_verified","birthdate","exp","family_name","given_name","iat","iss","locale","name","sub","auth_time"],"scopes_supported":["openid","openid2","profile","email"],"userinfo_endpoint":"https://api.login.yahoo.com/openid/v1/userinfo","acr_values_supported":["AAL1","AAL2"],"grant_types_supported":["authorization_code","refresh_token"],"authorization_endpoint":"https://api.login.yahoo.com/oauth2/request_auth","introspection_endpoint":"https://api.login.yahoo.com/oauth2/introspect","subject_types_supported":["public"],"display_values_supported":["page"],"response_modes_supported":["query"],"response_types_supported":["code","token","id_token","code token","code id_token","token id_token","code token id_token"],"token_revocation_endpoint":"https://api.login.yahoo.com/oauth2/revoke","claims_parameter_supported":false,"request_parameter_supported":false,"request_uri_parameter_supported":false,"require_request_uri_registration":false,"id_token_signing_alg_values_supported":["ES256","RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post"]},"domain_aliases":["api.example.com","example.com"],"schema_version":"oidc-V4","token_endpoint":"https://api.login.yahoo.com/oauth2/get_token","upstream_params":{"screen_name":{"alias":"login_hint"}},"userinfo_endpoint":"https://api.login.yahoo.com/openid/v1/userinfo","connection_settings":{"pkce":"disabled"},"non_persistent_attrs":["gender","hair_color"],"authorization_endpoint":"https://api.login.yahoo.com/oauth2/request_auth","set_user_root_attributes":"on_each_login"},"strategy":"oidc","name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","enabled_clients":[],"realms":["Acceptance-Test-OIDC-TestAccConnectionOIDC"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.557166ms + duration: 165.096042ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.1.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_rBkGMxTRAQaTQHcB + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_U8Y22FLGSJvyQfAh method: GET response: proto: HTTP/2.0 @@ -102,33 +100,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_rBkGMxTRAQaTQHcB","options":{"type":"back_channel","scope":"email openid profile","issuer":"https://api.login.yahoo.com","jwks_uri":"https://api.login.yahoo.com/openid/v1/certs","client_id":"123456","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"123456","discovery_url":"https://api.login.yahoo.com/.well-known/openid-configuration","oidc_metadata":{"issuer":"https://api.login.yahoo.com","jwks_uri":"https://api.login.yahoo.com/openid/v1/certs","token_endpoint":"https://api.login.yahoo.com/oauth2/get_token","claims_supported":["aud","email","email_verified","birthdate","exp","family_name","given_name","iat","iss","locale","name","sub","auth_time"],"scopes_supported":["openid","openid2","profile","email"],"userinfo_endpoint":"https://api.login.yahoo.com/openid/v1/userinfo","acr_values_supported":["AAL1","AAL2"],"grant_types_supported":["authorization_code","refresh_token"],"authorization_endpoint":"https://api.login.yahoo.com/oauth2/request_auth","introspection_endpoint":"https://api.login.yahoo.com/oauth2/introspect","subject_types_supported":["public"],"display_values_supported":["page"],"response_modes_supported":["query"],"response_types_supported":["code","token","id_token","code token","code id_token","token id_token","code token id_token"],"token_revocation_endpoint":"https://api.login.yahoo.com/oauth2/revoke","claims_parameter_supported":false,"request_parameter_supported":false,"request_uri_parameter_supported":false,"require_request_uri_registration":false,"id_token_signing_alg_values_supported":["ES256","RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post"]},"domain_aliases":["api.example.com","example.com"],"schema_version":"openid-1.0.0","token_endpoint":"https://api.login.yahoo.com/oauth2/get_token","upstream_params":{"screen_name":{"alias":"login_hint"}},"userinfo_endpoint":"https://api.login.yahoo.com/openid/v1/userinfo","connection_settings":{"pkce":"disabled"},"non_persistent_attrs":["gender","hair_color"],"authorization_endpoint":"https://api.login.yahoo.com/oauth2/request_auth","set_user_root_attributes":"on_each_login"},"strategy":"oidc","name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","enabled_clients":[],"realms":["Acceptance-Test-OIDC-TestAccConnectionOIDC"]}' + body: '{"id":"con_U8Y22FLGSJvyQfAh","options":{"type":"back_channel","scope":"email openid profile","issuer":"https://api.login.yahoo.com","jwks_uri":"https://api.login.yahoo.com/openid/v1/certs","client_id":"123456","attribute_map":{"mapping_mode":"bind_all"},"client_secret":"123456","discovery_url":"https://api.login.yahoo.com/.well-known/openid-configuration","oidc_metadata":{"issuer":"https://api.login.yahoo.com","jwks_uri":"https://api.login.yahoo.com/openid/v1/certs","token_endpoint":"https://api.login.yahoo.com/oauth2/get_token","claims_supported":["aud","email","email_verified","birthdate","exp","family_name","given_name","iat","iss","locale","name","sub","auth_time"],"scopes_supported":["openid","openid2","profile","email"],"userinfo_endpoint":"https://api.login.yahoo.com/openid/v1/userinfo","acr_values_supported":["AAL1","AAL2"],"grant_types_supported":["authorization_code","refresh_token"],"authorization_endpoint":"https://api.login.yahoo.com/oauth2/request_auth","introspection_endpoint":"https://api.login.yahoo.com/oauth2/introspect","subject_types_supported":["public"],"display_values_supported":["page"],"response_modes_supported":["query"],"response_types_supported":["code","token","id_token","code token","code id_token","token id_token","code token id_token"],"token_revocation_endpoint":"https://api.login.yahoo.com/oauth2/revoke","claims_parameter_supported":false,"request_parameter_supported":false,"request_uri_parameter_supported":false,"require_request_uri_registration":false,"id_token_signing_alg_values_supported":["ES256","RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post"]},"domain_aliases":["api.example.com","example.com"],"schema_version":"oidc-V4","token_endpoint":"https://api.login.yahoo.com/oauth2/get_token","upstream_params":{"screen_name":{"alias":"login_hint"}},"userinfo_endpoint":"https://api.login.yahoo.com/openid/v1/userinfo","connection_settings":{"pkce":"disabled"},"non_persistent_attrs":["gender","hair_color"],"authorization_endpoint":"https://api.login.yahoo.com/oauth2/request_auth","set_user_root_attributes":"on_each_login"},"strategy":"oidc","name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","enabled_clients":[],"realms":["Acceptance-Test-OIDC-TestAccConnectionOIDC"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 201.898583ms + duration: 160.895833ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.1.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_rBkGMxTRAQaTQHcB + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_U8Y22FLGSJvyQfAh method: GET response: proto: HTTP/2.0 @@ -138,33 +135,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_rBkGMxTRAQaTQHcB","options":{"type":"back_channel","scope":"email openid profile","issuer":"https://api.login.yahoo.com","jwks_uri":"https://api.login.yahoo.com/openid/v1/certs","client_id":"123456","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"123456","discovery_url":"https://api.login.yahoo.com/.well-known/openid-configuration","oidc_metadata":{"issuer":"https://api.login.yahoo.com","jwks_uri":"https://api.login.yahoo.com/openid/v1/certs","token_endpoint":"https://api.login.yahoo.com/oauth2/get_token","claims_supported":["aud","email","email_verified","birthdate","exp","family_name","given_name","iat","iss","locale","name","sub","auth_time"],"scopes_supported":["openid","openid2","profile","email"],"userinfo_endpoint":"https://api.login.yahoo.com/openid/v1/userinfo","acr_values_supported":["AAL1","AAL2"],"grant_types_supported":["authorization_code","refresh_token"],"authorization_endpoint":"https://api.login.yahoo.com/oauth2/request_auth","introspection_endpoint":"https://api.login.yahoo.com/oauth2/introspect","subject_types_supported":["public"],"display_values_supported":["page"],"response_modes_supported":["query"],"response_types_supported":["code","token","id_token","code token","code id_token","token id_token","code token id_token"],"token_revocation_endpoint":"https://api.login.yahoo.com/oauth2/revoke","claims_parameter_supported":false,"request_parameter_supported":false,"request_uri_parameter_supported":false,"require_request_uri_registration":false,"id_token_signing_alg_values_supported":["ES256","RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post"]},"domain_aliases":["api.example.com","example.com"],"schema_version":"openid-1.0.0","token_endpoint":"https://api.login.yahoo.com/oauth2/get_token","upstream_params":{"screen_name":{"alias":"login_hint"}},"userinfo_endpoint":"https://api.login.yahoo.com/openid/v1/userinfo","connection_settings":{"pkce":"disabled"},"non_persistent_attrs":["gender","hair_color"],"authorization_endpoint":"https://api.login.yahoo.com/oauth2/request_auth","set_user_root_attributes":"on_each_login"},"strategy":"oidc","name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","enabled_clients":[],"realms":["Acceptance-Test-OIDC-TestAccConnectionOIDC"]}' + body: '{"id":"con_U8Y22FLGSJvyQfAh","options":{"type":"back_channel","scope":"email openid profile","issuer":"https://api.login.yahoo.com","jwks_uri":"https://api.login.yahoo.com/openid/v1/certs","client_id":"123456","attribute_map":{"mapping_mode":"bind_all"},"client_secret":"123456","discovery_url":"https://api.login.yahoo.com/.well-known/openid-configuration","oidc_metadata":{"issuer":"https://api.login.yahoo.com","jwks_uri":"https://api.login.yahoo.com/openid/v1/certs","token_endpoint":"https://api.login.yahoo.com/oauth2/get_token","claims_supported":["aud","email","email_verified","birthdate","exp","family_name","given_name","iat","iss","locale","name","sub","auth_time"],"scopes_supported":["openid","openid2","profile","email"],"userinfo_endpoint":"https://api.login.yahoo.com/openid/v1/userinfo","acr_values_supported":["AAL1","AAL2"],"grant_types_supported":["authorization_code","refresh_token"],"authorization_endpoint":"https://api.login.yahoo.com/oauth2/request_auth","introspection_endpoint":"https://api.login.yahoo.com/oauth2/introspect","subject_types_supported":["public"],"display_values_supported":["page"],"response_modes_supported":["query"],"response_types_supported":["code","token","id_token","code token","code id_token","token id_token","code token id_token"],"token_revocation_endpoint":"https://api.login.yahoo.com/oauth2/revoke","claims_parameter_supported":false,"request_parameter_supported":false,"request_uri_parameter_supported":false,"require_request_uri_registration":false,"id_token_signing_alg_values_supported":["ES256","RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post"]},"domain_aliases":["api.example.com","example.com"],"schema_version":"oidc-V4","token_endpoint":"https://api.login.yahoo.com/oauth2/get_token","upstream_params":{"screen_name":{"alias":"login_hint"}},"userinfo_endpoint":"https://api.login.yahoo.com/openid/v1/userinfo","connection_settings":{"pkce":"disabled"},"non_persistent_attrs":["gender","hair_color"],"authorization_endpoint":"https://api.login.yahoo.com/oauth2/request_auth","set_user_root_attributes":"on_each_login"},"strategy":"oidc","name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","enabled_clients":[],"realms":["Acceptance-Test-OIDC-TestAccConnectionOIDC"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.072417ms + duration: 146.362666ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1086 + content_length: 1080 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"display_name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","show_as_button":false,"options":{"client_id":"1234567","client_secret":"1234567","domain_aliases":["example.com"],"discovery_url":"https://www.paypalobjects.com/.well-known/openid-configuration","authorization_endpoint":"https://www.paypal.com/signin/authorize","issuer":"https://www.paypalobjects.com","jwks_uri":"https://api.paypal.com/v1/oauth2/certs","type":"front_channel","userinfo_endpoint":"https://api.paypal.com/v1/oauth2/token/userinfo","token_endpoint":"https://api.paypal.com/v1/oauth2/token","scope":"email openid","set_user_root_attributes":"on_first_login","connection_settings":{"pkce":"auto"},"attribute_map":{"userinfo_scope":"openid email profile groups","mapping_mode":"basic_profile","attributes":{"email":"${context.tokenset.email}","email_verified":"${context.tokenset.email_verified}","family_name":"${context.tokenset.family_name}","given_name":"${context.tokenset.given_name}","name":"${context.tokenset.name}","nickname":"${context.tokenset.nickname}","picture":"${context.tokenset.picture}"}}}} + {"display_name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","show_as_button":false,"options":{"client_id":"1234567","client_secret":"1234567","domain_aliases":["example.com"],"discovery_url":"https://www.paypalobjects.com/.well-known/openid-configuration","authorization_endpoint":"https://www.paypal.com/signin/authorize","issuer":"https://www.paypalobjects.com","jwks_uri":"https://api.paypal.com/v1/oauth2/certs","type":"front_channel","userinfo_endpoint":"https://api.paypal.com/v1/oauth2/token/userinfo","token_endpoint":"https://api.paypal.com/v1/oauth2/token","scope":"email openid","set_user_root_attributes":"on_first_login","connection_settings":{"pkce":"auto"},"attribute_map":{"userinfo_scope":"openid email profile groups","mapping_mode":"use_map","attributes":{"email":"${context.tokenset.email}","email_verified":"${context.tokenset.email_verified}","family_name":"${context.tokenset.family_name}","given_name":"${context.tokenset.given_name}","name":"${context.tokenset.name}","nickname":"${context.tokenset.nickname}","picture":"${context.tokenset.picture}"}}}} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.1.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_rBkGMxTRAQaTQHcB + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_U8Y22FLGSJvyQfAh method: PATCH response: proto: HTTP/2.0 @@ -174,33 +171,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_rBkGMxTRAQaTQHcB","options":{"type":"front_channel","scope":"email openid","issuer":"https://www.paypalobjects.com","jwks_uri":"https://api.paypal.com/v1/oauth2/certs","client_id":"1234567","attribute_map":{"attributes":{"name":"${context.tokenset.name}","email":"${context.tokenset.email}","picture":"${context.tokenset.picture}","nickname":"${context.tokenset.nickname}","given_name":"${context.tokenset.given_name}","family_name":"${context.tokenset.family_name}","email_verified":"${context.tokenset.email_verified}"},"mapping_mode":"basic_profile","userinfo_scope":"openid email profile groups"},"client_secret":"1234567","discovery_url":"https://www.paypalobjects.com/.well-known/openid-configuration","domain_aliases":["example.com"],"schema_version":"openid-1.0.0","token_endpoint":"https://api.paypal.com/v1/oauth2/token","userinfo_endpoint":"https://api.paypal.com/v1/oauth2/token/userinfo","connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://www.paypal.com/signin/authorize","set_user_root_attributes":"on_first_login"},"strategy":"oidc","name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","enabled_clients":[],"realms":["Acceptance-Test-OIDC-TestAccConnectionOIDC"]}' + body: '{"id":"con_U8Y22FLGSJvyQfAh","options":{"type":"front_channel","scope":"email openid","issuer":"https://www.paypalobjects.com","jwks_uri":"https://api.paypal.com/v1/oauth2/certs","client_id":"1234567","attribute_map":{"attributes":{"name":"${context.tokenset.name}","email":"${context.tokenset.email}","picture":"${context.tokenset.picture}","nickname":"${context.tokenset.nickname}","given_name":"${context.tokenset.given_name}","family_name":"${context.tokenset.family_name}","email_verified":"${context.tokenset.email_verified}"},"mapping_mode":"use_map","userinfo_scope":"openid email profile groups"},"client_secret":"1234567","discovery_url":"https://www.paypalobjects.com/.well-known/openid-configuration","oidc_metadata":{"issuer":"https://www.paypal.com","jwks_uri":"https://api.paypal.com/v1/oauth2/certs","token_endpoint":"https://api.paypal.com/v1/oauth2/token","claims_supported":["aud","iss","iat","exp","auth_time","nonce","sessionIndex","user_id"],"scopes_supported":["email","address","phone","openid","profile","https://uri.paypal.com/services/wallet/sendmoney","https://uri.paypal.com/services/payments/futurepayments","https://uri.paypal.com/services/expresscheckout"],"userinfo_endpoint":"https://api.paypal.com/v1/oauth2/token/userinfo","revocation_endpoint":"https://api.paypal.com/v1/oauth2/revoke","grant_types_supported":["authorization_code","refresh_token"],"registration_endpoint":"https://api.paypal.com/v1/oauth2/applications","authorization_endpoint":"https://www.paypal.com/signin/authorize","subject_types_supported":["pairwise"],"response_modes_supported":["query","form_post"],"response_types_supported":["code","code id_token"],"claims_parameter_supported":false,"request_parameter_supported":false,"request_uri_parameter_supported":false,"code_challenge_methods_supported":["RS256","ES256","S256"],"require_request_uri_registration":false,"id_token_signing_alg_values_supported":["HS256","RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic"]},"domain_aliases":["example.com"],"schema_version":"oidc-V4","token_endpoint":"https://api.paypal.com/v1/oauth2/token","userinfo_endpoint":"https://api.paypal.com/v1/oauth2/token/userinfo","connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://www.paypal.com/signin/authorize","set_user_root_attributes":"on_first_login"},"strategy":"oidc","name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","enabled_clients":[],"realms":["Acceptance-Test-OIDC-TestAccConnectionOIDC"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 180.579958ms + duration: 350.743417ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.1.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_rBkGMxTRAQaTQHcB + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_U8Y22FLGSJvyQfAh method: GET response: proto: HTTP/2.0 @@ -210,33 +206,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_rBkGMxTRAQaTQHcB","options":{"type":"front_channel","scope":"email openid","issuer":"https://www.paypalobjects.com","jwks_uri":"https://api.paypal.com/v1/oauth2/certs","client_id":"1234567","attribute_map":{"attributes":{"name":"${context.tokenset.name}","email":"${context.tokenset.email}","picture":"${context.tokenset.picture}","nickname":"${context.tokenset.nickname}","given_name":"${context.tokenset.given_name}","family_name":"${context.tokenset.family_name}","email_verified":"${context.tokenset.email_verified}"},"mapping_mode":"basic_profile","userinfo_scope":"openid email profile groups"},"client_secret":"1234567","discovery_url":"https://www.paypalobjects.com/.well-known/openid-configuration","domain_aliases":["example.com"],"schema_version":"openid-1.0.0","token_endpoint":"https://api.paypal.com/v1/oauth2/token","userinfo_endpoint":"https://api.paypal.com/v1/oauth2/token/userinfo","connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://www.paypal.com/signin/authorize","set_user_root_attributes":"on_first_login"},"strategy":"oidc","name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","enabled_clients":[],"realms":["Acceptance-Test-OIDC-TestAccConnectionOIDC"]}' + body: '{"id":"con_U8Y22FLGSJvyQfAh","options":{"type":"front_channel","scope":"email openid","issuer":"https://www.paypalobjects.com","jwks_uri":"https://api.paypal.com/v1/oauth2/certs","client_id":"1234567","attribute_map":{"attributes":{"name":"${context.tokenset.name}","email":"${context.tokenset.email}","picture":"${context.tokenset.picture}","nickname":"${context.tokenset.nickname}","given_name":"${context.tokenset.given_name}","family_name":"${context.tokenset.family_name}","email_verified":"${context.tokenset.email_verified}"},"mapping_mode":"use_map","userinfo_scope":"openid email profile groups"},"client_secret":"1234567","discovery_url":"https://www.paypalobjects.com/.well-known/openid-configuration","oidc_metadata":{"issuer":"https://www.paypal.com","jwks_uri":"https://api.paypal.com/v1/oauth2/certs","token_endpoint":"https://api.paypal.com/v1/oauth2/token","claims_supported":["aud","iss","iat","exp","auth_time","nonce","sessionIndex","user_id"],"scopes_supported":["email","address","phone","openid","profile","https://uri.paypal.com/services/wallet/sendmoney","https://uri.paypal.com/services/payments/futurepayments","https://uri.paypal.com/services/expresscheckout"],"userinfo_endpoint":"https://api.paypal.com/v1/oauth2/token/userinfo","revocation_endpoint":"https://api.paypal.com/v1/oauth2/revoke","grant_types_supported":["authorization_code","refresh_token"],"registration_endpoint":"https://api.paypal.com/v1/oauth2/applications","authorization_endpoint":"https://www.paypal.com/signin/authorize","subject_types_supported":["pairwise"],"response_modes_supported":["query","form_post"],"response_types_supported":["code","code id_token"],"claims_parameter_supported":false,"request_parameter_supported":false,"request_uri_parameter_supported":false,"code_challenge_methods_supported":["RS256","ES256","S256"],"require_request_uri_registration":false,"id_token_signing_alg_values_supported":["HS256","RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic"]},"domain_aliases":["example.com"],"schema_version":"oidc-V4","token_endpoint":"https://api.paypal.com/v1/oauth2/token","userinfo_endpoint":"https://api.paypal.com/v1/oauth2/token/userinfo","connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://www.paypal.com/signin/authorize","set_user_root_attributes":"on_first_login"},"strategy":"oidc","name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","enabled_clients":[],"realms":["Acceptance-Test-OIDC-TestAccConnectionOIDC"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.055916ms + duration: 150.145667ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.1.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_rBkGMxTRAQaTQHcB + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_U8Y22FLGSJvyQfAh method: GET response: proto: HTTP/2.0 @@ -246,33 +241,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_rBkGMxTRAQaTQHcB","options":{"type":"front_channel","scope":"email openid","issuer":"https://www.paypalobjects.com","jwks_uri":"https://api.paypal.com/v1/oauth2/certs","client_id":"1234567","attribute_map":{"attributes":{"name":"${context.tokenset.name}","email":"${context.tokenset.email}","picture":"${context.tokenset.picture}","nickname":"${context.tokenset.nickname}","given_name":"${context.tokenset.given_name}","family_name":"${context.tokenset.family_name}","email_verified":"${context.tokenset.email_verified}"},"mapping_mode":"basic_profile","userinfo_scope":"openid email profile groups"},"client_secret":"1234567","discovery_url":"https://www.paypalobjects.com/.well-known/openid-configuration","domain_aliases":["example.com"],"schema_version":"openid-1.0.0","token_endpoint":"https://api.paypal.com/v1/oauth2/token","userinfo_endpoint":"https://api.paypal.com/v1/oauth2/token/userinfo","connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://www.paypal.com/signin/authorize","set_user_root_attributes":"on_first_login"},"strategy":"oidc","name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","enabled_clients":[],"realms":["Acceptance-Test-OIDC-TestAccConnectionOIDC"]}' + body: '{"id":"con_U8Y22FLGSJvyQfAh","options":{"type":"front_channel","scope":"email openid","issuer":"https://www.paypalobjects.com","jwks_uri":"https://api.paypal.com/v1/oauth2/certs","client_id":"1234567","attribute_map":{"attributes":{"name":"${context.tokenset.name}","email":"${context.tokenset.email}","picture":"${context.tokenset.picture}","nickname":"${context.tokenset.nickname}","given_name":"${context.tokenset.given_name}","family_name":"${context.tokenset.family_name}","email_verified":"${context.tokenset.email_verified}"},"mapping_mode":"use_map","userinfo_scope":"openid email profile groups"},"client_secret":"1234567","discovery_url":"https://www.paypalobjects.com/.well-known/openid-configuration","oidc_metadata":{"issuer":"https://www.paypal.com","jwks_uri":"https://api.paypal.com/v1/oauth2/certs","token_endpoint":"https://api.paypal.com/v1/oauth2/token","claims_supported":["aud","iss","iat","exp","auth_time","nonce","sessionIndex","user_id"],"scopes_supported":["email","address","phone","openid","profile","https://uri.paypal.com/services/wallet/sendmoney","https://uri.paypal.com/services/payments/futurepayments","https://uri.paypal.com/services/expresscheckout"],"userinfo_endpoint":"https://api.paypal.com/v1/oauth2/token/userinfo","revocation_endpoint":"https://api.paypal.com/v1/oauth2/revoke","grant_types_supported":["authorization_code","refresh_token"],"registration_endpoint":"https://api.paypal.com/v1/oauth2/applications","authorization_endpoint":"https://www.paypal.com/signin/authorize","subject_types_supported":["pairwise"],"response_modes_supported":["query","form_post"],"response_types_supported":["code","code id_token"],"claims_parameter_supported":false,"request_parameter_supported":false,"request_uri_parameter_supported":false,"code_challenge_methods_supported":["RS256","ES256","S256"],"require_request_uri_registration":false,"id_token_signing_alg_values_supported":["HS256","RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic"]},"domain_aliases":["example.com"],"schema_version":"oidc-V4","token_endpoint":"https://api.paypal.com/v1/oauth2/token","userinfo_endpoint":"https://api.paypal.com/v1/oauth2/token/userinfo","connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://www.paypal.com/signin/authorize","set_user_root_attributes":"on_first_login"},"strategy":"oidc","name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","enabled_clients":[],"realms":["Acceptance-Test-OIDC-TestAccConnectionOIDC"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.006083ms + duration: 164.38675ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.1.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_rBkGMxTRAQaTQHcB + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_U8Y22FLGSJvyQfAh method: GET response: proto: HTTP/2.0 @@ -282,33 +276,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_rBkGMxTRAQaTQHcB","options":{"type":"front_channel","scope":"email openid","issuer":"https://www.paypalobjects.com","jwks_uri":"https://api.paypal.com/v1/oauth2/certs","client_id":"1234567","attribute_map":{"attributes":{"name":"${context.tokenset.name}","email":"${context.tokenset.email}","picture":"${context.tokenset.picture}","nickname":"${context.tokenset.nickname}","given_name":"${context.tokenset.given_name}","family_name":"${context.tokenset.family_name}","email_verified":"${context.tokenset.email_verified}"},"mapping_mode":"basic_profile","userinfo_scope":"openid email profile groups"},"client_secret":"1234567","discovery_url":"https://www.paypalobjects.com/.well-known/openid-configuration","domain_aliases":["example.com"],"schema_version":"openid-1.0.0","token_endpoint":"https://api.paypal.com/v1/oauth2/token","userinfo_endpoint":"https://api.paypal.com/v1/oauth2/token/userinfo","connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://www.paypal.com/signin/authorize","set_user_root_attributes":"on_first_login"},"strategy":"oidc","name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","enabled_clients":[],"realms":["Acceptance-Test-OIDC-TestAccConnectionOIDC"]}' + body: '{"id":"con_U8Y22FLGSJvyQfAh","options":{"type":"front_channel","scope":"email openid","issuer":"https://www.paypalobjects.com","jwks_uri":"https://api.paypal.com/v1/oauth2/certs","client_id":"1234567","attribute_map":{"attributes":{"name":"${context.tokenset.name}","email":"${context.tokenset.email}","picture":"${context.tokenset.picture}","nickname":"${context.tokenset.nickname}","given_name":"${context.tokenset.given_name}","family_name":"${context.tokenset.family_name}","email_verified":"${context.tokenset.email_verified}"},"mapping_mode":"use_map","userinfo_scope":"openid email profile groups"},"client_secret":"1234567","discovery_url":"https://www.paypalobjects.com/.well-known/openid-configuration","oidc_metadata":{"issuer":"https://www.paypal.com","jwks_uri":"https://api.paypal.com/v1/oauth2/certs","token_endpoint":"https://api.paypal.com/v1/oauth2/token","claims_supported":["aud","iss","iat","exp","auth_time","nonce","sessionIndex","user_id"],"scopes_supported":["email","address","phone","openid","profile","https://uri.paypal.com/services/wallet/sendmoney","https://uri.paypal.com/services/payments/futurepayments","https://uri.paypal.com/services/expresscheckout"],"userinfo_endpoint":"https://api.paypal.com/v1/oauth2/token/userinfo","revocation_endpoint":"https://api.paypal.com/v1/oauth2/revoke","grant_types_supported":["authorization_code","refresh_token"],"registration_endpoint":"https://api.paypal.com/v1/oauth2/applications","authorization_endpoint":"https://www.paypal.com/signin/authorize","subject_types_supported":["pairwise"],"response_modes_supported":["query","form_post"],"response_types_supported":["code","code id_token"],"claims_parameter_supported":false,"request_parameter_supported":false,"request_uri_parameter_supported":false,"code_challenge_methods_supported":["RS256","ES256","S256"],"require_request_uri_registration":false,"id_token_signing_alg_values_supported":["HS256","RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic"]},"domain_aliases":["example.com"],"schema_version":"oidc-V4","token_endpoint":"https://api.paypal.com/v1/oauth2/token","userinfo_endpoint":"https://api.paypal.com/v1/oauth2/token/userinfo","connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://www.paypal.com/signin/authorize","set_user_root_attributes":"on_first_login"},"strategy":"oidc","name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","enabled_clients":[],"realms":["Acceptance-Test-OIDC-TestAccConnectionOIDC"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 106.413083ms + duration: 145.757125ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.1.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_rBkGMxTRAQaTQHcB + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_U8Y22FLGSJvyQfAh method: GET response: proto: HTTP/2.0 @@ -318,13 +311,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_rBkGMxTRAQaTQHcB","options":{"type":"front_channel","scope":"email openid","issuer":"https://www.paypalobjects.com","jwks_uri":"https://api.paypal.com/v1/oauth2/certs","client_id":"1234567","attribute_map":{"attributes":{"name":"${context.tokenset.name}","email":"${context.tokenset.email}","picture":"${context.tokenset.picture}","nickname":"${context.tokenset.nickname}","given_name":"${context.tokenset.given_name}","family_name":"${context.tokenset.family_name}","email_verified":"${context.tokenset.email_verified}"},"mapping_mode":"basic_profile","userinfo_scope":"openid email profile groups"},"client_secret":"1234567","discovery_url":"https://www.paypalobjects.com/.well-known/openid-configuration","domain_aliases":["example.com"],"schema_version":"openid-1.0.0","token_endpoint":"https://api.paypal.com/v1/oauth2/token","userinfo_endpoint":"https://api.paypal.com/v1/oauth2/token/userinfo","connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://www.paypal.com/signin/authorize","set_user_root_attributes":"on_first_login"},"strategy":"oidc","name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","enabled_clients":[],"realms":["Acceptance-Test-OIDC-TestAccConnectionOIDC"]}' + body: '{"id":"con_U8Y22FLGSJvyQfAh","options":{"type":"front_channel","scope":"email openid","issuer":"https://www.paypalobjects.com","jwks_uri":"https://api.paypal.com/v1/oauth2/certs","client_id":"1234567","attribute_map":{"attributes":{"name":"${context.tokenset.name}","email":"${context.tokenset.email}","picture":"${context.tokenset.picture}","nickname":"${context.tokenset.nickname}","given_name":"${context.tokenset.given_name}","family_name":"${context.tokenset.family_name}","email_verified":"${context.tokenset.email_verified}"},"mapping_mode":"use_map","userinfo_scope":"openid email profile groups"},"client_secret":"1234567","discovery_url":"https://www.paypalobjects.com/.well-known/openid-configuration","oidc_metadata":{"issuer":"https://www.paypal.com","jwks_uri":"https://api.paypal.com/v1/oauth2/certs","token_endpoint":"https://api.paypal.com/v1/oauth2/token","claims_supported":["aud","iss","iat","exp","auth_time","nonce","sessionIndex","user_id"],"scopes_supported":["email","address","phone","openid","profile","https://uri.paypal.com/services/wallet/sendmoney","https://uri.paypal.com/services/payments/futurepayments","https://uri.paypal.com/services/expresscheckout"],"userinfo_endpoint":"https://api.paypal.com/v1/oauth2/token/userinfo","revocation_endpoint":"https://api.paypal.com/v1/oauth2/revoke","grant_types_supported":["authorization_code","refresh_token"],"registration_endpoint":"https://api.paypal.com/v1/oauth2/applications","authorization_endpoint":"https://www.paypal.com/signin/authorize","subject_types_supported":["pairwise"],"response_modes_supported":["query","form_post"],"response_types_supported":["code","code id_token"],"claims_parameter_supported":false,"request_parameter_supported":false,"request_uri_parameter_supported":false,"code_challenge_methods_supported":["RS256","ES256","S256"],"require_request_uri_registration":false,"id_token_signing_alg_values_supported":["HS256","RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic"]},"domain_aliases":["example.com"],"schema_version":"oidc-V4","token_endpoint":"https://api.paypal.com/v1/oauth2/token","userinfo_endpoint":"https://api.paypal.com/v1/oauth2/token/userinfo","connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://www.paypal.com/signin/authorize","set_user_root_attributes":"on_first_login"},"strategy":"oidc","name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-OIDC-TestAccConnectionOIDC","enabled_clients":[],"realms":["Acceptance-Test-OIDC-TestAccConnectionOIDC"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 100.271708ms + duration: 140.03275ms - id: 9 request: proto: HTTP/1.1 @@ -342,8 +335,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.1.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_rBkGMxTRAQaTQHcB + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_U8Y22FLGSJvyQfAh method: DELETE response: proto: HTTP/2.0 @@ -353,10 +346,10 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2023-09-19T17:37:43.033Z"}' + body: '{"deleted_at":"2024-09-12T21:48:53.369Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 120.548ms + duration: 167.191292ms diff --git a/test/data/recordings/TestAccConnectionOkta.yaml b/test/data/recordings/TestAccConnectionOkta.yaml index ccccb971..d488dadf 100644 --- a/test/data/recordings/TestAccConnectionOkta.yaml +++ b/test/data/recordings/TestAccConnectionOkta.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.1.0 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections method: POST response: @@ -30,33 +30,32 @@ interactions: trailer: {} content_length: -1 uncompressed: false - body: '{"id":"con_YHHWRjHlsLrortw7","options":{"client_id":"123456","client_secret":"123456","domain":"domain.okta.com","domain_aliases":["api.example.com","example.com"],"icon_url":"https://example.com/logo.svg","authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","issuer":"https://domain.okta.com","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","token_endpoint":"https://domain.okta.com/oauth2/v1/token","scope":"email openid profile","set_user_root_attributes":"on_each_login","non_persistent_attrs":["gender","hair_color"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"connection_settings":{"pkce":"disabled"},"attribute_map":{"mapping_mode":"basic_profile"},"schema_version":"openid-1.0.0","oidc_metadata":{"issuer":"https://domain.okta.com","authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","token_endpoint":"https://domain.okta.com/oauth2/v1/token","userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","registration_endpoint":"https://domain.okta.com/oauth2/v1/clients","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","response_types_supported":["code","id_token","code id_token","code token","id_token token","code id_token token"],"response_modes_supported":["query","fragment","form_post","okta_post_message"],"grant_types_supported":["authorization_code","implicit","refresh_token","password","urn:ietf:params:oauth:grant-type:device_code"],"subject_types_supported":["public"],"id_token_signing_alg_values_supported":["RS256"],"scopes_supported":["openid","email","profile","address","phone","offline_access","groups"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"claims_supported":["iss","ver","sub","aud","iat","exp","jti","auth_time","amr","idp","nonce","name","nickname","preferred_username","given_name","middle_name","family_name","email","email_verified","profile","zoneinfo","locale","address","phone_number","picture","website","gender","birthdate","updated_at","at_hash","c_hash"],"code_challenge_methods_supported":["S256"],"introspection_endpoint":"https://domain.okta.com/oauth2/v1/introspect","introspection_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"revocation_endpoint":"https://domain.okta.com/oauth2/v1/revoke","revocation_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"end_session_endpoint":"https://domain.okta.com/oauth2/v1/logout","request_parameter_supported":true,"request_object_signing_alg_values_supported":["HS256","HS384","HS512","RS256","RS384","RS512","ES256","ES384","ES512"],"device_authorization_endpoint":"https://domain.okta.com/oauth2/v1/device/authorize","claims_parameter_supported":false,"request_uri_parameter_supported":true,"require_request_uri_registration":false},"type":"back_channel"},"strategy":"okta","name":"Acceptance-Test-Okta-TestAccConnectionOkta","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Okta-TestAccConnectionOkta","enabled_clients":[],"realms":["Acceptance-Test-Okta-TestAccConnectionOkta"]}' + body: '{"id":"con_awMGzrVUX1KQ0XNM","options":{"client_id":"123456","client_secret":"123456","domain":"domain.okta.com","domain_aliases":["api.example.com","example.com"],"icon_url":"https://example.com/logo.svg","authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","issuer":"https://domain.okta.com","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","token_endpoint":"https://domain.okta.com/oauth2/v1/token","scope":"email openid profile","set_user_root_attributes":"on_each_login","non_persistent_attrs":["gender","hair_color"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"connection_settings":{"pkce":"disabled"},"attribute_map":{"mapping_mode":"basic_profile"},"oidc_metadata":{"issuer":"https://domain.okta.com","authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","token_endpoint":"https://domain.okta.com/oauth2/v1/token","userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","registration_endpoint":"https://domain.okta.com/oauth2/v1/clients","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","response_types_supported":["code","id_token","code id_token","code token","id_token token","code id_token token"],"response_modes_supported":["query","fragment","form_post","okta_post_message"],"grant_types_supported":["authorization_code","implicit","refresh_token","password","urn:ietf:params:oauth:grant-type:device_code"],"subject_types_supported":["public"],"id_token_signing_alg_values_supported":["RS256"],"scopes_supported":["openid","email","profile","address","phone","offline_access","groups"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"claims_supported":["iss","ver","sub","aud","iat","exp","jti","auth_time","amr","idp","nonce","name","nickname","preferred_username","given_name","middle_name","family_name","email","email_verified","profile","zoneinfo","locale","address","phone_number","picture","website","gender","birthdate","updated_at","at_hash","c_hash"],"code_challenge_methods_supported":["S256"],"introspection_endpoint":"https://domain.okta.com/oauth2/v1/introspect","introspection_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"revocation_endpoint":"https://domain.okta.com/oauth2/v1/revoke","revocation_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"end_session_endpoint":"https://domain.okta.com/oauth2/v1/logout","request_parameter_supported":true,"request_object_signing_alg_values_supported":["HS256","HS384","HS512","RS256","RS384","RS512","ES256","ES384","ES512"],"device_authorization_endpoint":"https://domain.okta.com/oauth2/v1/device/authorize","dpop_signing_alg_values_supported":["RS256","RS384","RS512","ES256","ES384","ES512"],"claims_parameter_supported":false,"request_uri_parameter_supported":false,"require_request_uri_registration":false},"schema_version":"oidc-V4","type":"back_channel"},"strategy":"okta","name":"Acceptance-Test-Okta-TestAccConnectionOkta","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Okta-TestAccConnectionOkta","enabled_clients":[],"realms":["Acceptance-Test-Okta-TestAccConnectionOkta"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 719.411792ms + duration: 864.388583ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.1.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YHHWRjHlsLrortw7 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_awMGzrVUX1KQ0XNM method: GET response: proto: HTTP/2.0 @@ -66,33 +65,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_YHHWRjHlsLrortw7","options":{"type":"back_channel","scope":"email openid profile","domain":"domain.okta.com","issuer":"https://domain.okta.com","icon_url":"https://example.com/logo.svg","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","client_id":"123456","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"123456","oidc_metadata":{"issuer":"https://domain.okta.com","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","token_endpoint":"https://domain.okta.com/oauth2/v1/token","claims_supported":["iss","ver","sub","aud","iat","exp","jti","auth_time","amr","idp","nonce","name","nickname","preferred_username","given_name","middle_name","family_name","email","email_verified","profile","zoneinfo","locale","address","phone_number","picture","website","gender","birthdate","updated_at","at_hash","c_hash"],"scopes_supported":["openid","email","profile","address","phone","offline_access","groups"],"userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","revocation_endpoint":"https://domain.okta.com/oauth2/v1/revoke","end_session_endpoint":"https://domain.okta.com/oauth2/v1/logout","grant_types_supported":["authorization_code","implicit","refresh_token","password","urn:ietf:params:oauth:grant-type:device_code"],"registration_endpoint":"https://domain.okta.com/oauth2/v1/clients","authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","introspection_endpoint":"https://domain.okta.com/oauth2/v1/introspect","subject_types_supported":["public"],"response_modes_supported":["query","fragment","form_post","okta_post_message"],"response_types_supported":["code","id_token","code id_token","code token","id_token token","code id_token token"],"claims_parameter_supported":false,"request_parameter_supported":true,"device_authorization_endpoint":"https://domain.okta.com/oauth2/v1/device/authorize","request_uri_parameter_supported":true,"code_challenge_methods_supported":["S256"],"require_request_uri_registration":false,"id_token_signing_alg_values_supported":["RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"revocation_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"request_object_signing_alg_values_supported":["HS256","HS384","HS512","RS256","RS384","RS512","ES256","ES384","ES512"],"introspection_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"]},"domain_aliases":["api.example.com","example.com"],"schema_version":"openid-1.0.0","token_endpoint":"https://domain.okta.com/oauth2/v1/token","upstream_params":{"screen_name":{"alias":"login_hint"}},"userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","connection_settings":{"pkce":"disabled"},"non_persistent_attrs":["gender","hair_color"],"authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","set_user_root_attributes":"on_each_login"},"strategy":"okta","name":"Acceptance-Test-Okta-TestAccConnectionOkta","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Okta-TestAccConnectionOkta","enabled_clients":[],"realms":["Acceptance-Test-Okta-TestAccConnectionOkta"]}' + body: '{"id":"con_awMGzrVUX1KQ0XNM","options":{"type":"back_channel","scope":"email openid profile","domain":"domain.okta.com","issuer":"https://domain.okta.com","icon_url":"https://example.com/logo.svg","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","client_id":"123456","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"123456","oidc_metadata":{"issuer":"https://domain.okta.com","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","token_endpoint":"https://domain.okta.com/oauth2/v1/token","claims_supported":["iss","ver","sub","aud","iat","exp","jti","auth_time","amr","idp","nonce","name","nickname","preferred_username","given_name","middle_name","family_name","email","email_verified","profile","zoneinfo","locale","address","phone_number","picture","website","gender","birthdate","updated_at","at_hash","c_hash"],"scopes_supported":["openid","email","profile","address","phone","offline_access","groups"],"userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","revocation_endpoint":"https://domain.okta.com/oauth2/v1/revoke","end_session_endpoint":"https://domain.okta.com/oauth2/v1/logout","grant_types_supported":["authorization_code","implicit","refresh_token","password","urn:ietf:params:oauth:grant-type:device_code"],"registration_endpoint":"https://domain.okta.com/oauth2/v1/clients","authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","introspection_endpoint":"https://domain.okta.com/oauth2/v1/introspect","subject_types_supported":["public"],"response_modes_supported":["query","fragment","form_post","okta_post_message"],"response_types_supported":["code","id_token","code id_token","code token","id_token token","code id_token token"],"claims_parameter_supported":false,"request_parameter_supported":true,"device_authorization_endpoint":"https://domain.okta.com/oauth2/v1/device/authorize","request_uri_parameter_supported":false,"code_challenge_methods_supported":["S256"],"require_request_uri_registration":false,"dpop_signing_alg_values_supported":["RS256","RS384","RS512","ES256","ES384","ES512"],"id_token_signing_alg_values_supported":["RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"revocation_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"request_object_signing_alg_values_supported":["HS256","HS384","HS512","RS256","RS384","RS512","ES256","ES384","ES512"],"introspection_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"]},"domain_aliases":["api.example.com","example.com"],"schema_version":"oidc-V4","token_endpoint":"https://domain.okta.com/oauth2/v1/token","upstream_params":{"screen_name":{"alias":"login_hint"}},"userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","connection_settings":{"pkce":"disabled"},"non_persistent_attrs":["gender","hair_color"],"authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","set_user_root_attributes":"on_each_login"},"strategy":"okta","name":"Acceptance-Test-Okta-TestAccConnectionOkta","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Okta-TestAccConnectionOkta","enabled_clients":[],"realms":["Acceptance-Test-Okta-TestAccConnectionOkta"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 134.9825ms + duration: 141.933208ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.1.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YHHWRjHlsLrortw7 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_awMGzrVUX1KQ0XNM method: GET response: proto: HTTP/2.0 @@ -102,33 +100,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_YHHWRjHlsLrortw7","options":{"type":"back_channel","scope":"email openid profile","domain":"domain.okta.com","issuer":"https://domain.okta.com","icon_url":"https://example.com/logo.svg","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","client_id":"123456","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"123456","oidc_metadata":{"issuer":"https://domain.okta.com","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","token_endpoint":"https://domain.okta.com/oauth2/v1/token","claims_supported":["iss","ver","sub","aud","iat","exp","jti","auth_time","amr","idp","nonce","name","nickname","preferred_username","given_name","middle_name","family_name","email","email_verified","profile","zoneinfo","locale","address","phone_number","picture","website","gender","birthdate","updated_at","at_hash","c_hash"],"scopes_supported":["openid","email","profile","address","phone","offline_access","groups"],"userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","revocation_endpoint":"https://domain.okta.com/oauth2/v1/revoke","end_session_endpoint":"https://domain.okta.com/oauth2/v1/logout","grant_types_supported":["authorization_code","implicit","refresh_token","password","urn:ietf:params:oauth:grant-type:device_code"],"registration_endpoint":"https://domain.okta.com/oauth2/v1/clients","authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","introspection_endpoint":"https://domain.okta.com/oauth2/v1/introspect","subject_types_supported":["public"],"response_modes_supported":["query","fragment","form_post","okta_post_message"],"response_types_supported":["code","id_token","code id_token","code token","id_token token","code id_token token"],"claims_parameter_supported":false,"request_parameter_supported":true,"device_authorization_endpoint":"https://domain.okta.com/oauth2/v1/device/authorize","request_uri_parameter_supported":true,"code_challenge_methods_supported":["S256"],"require_request_uri_registration":false,"id_token_signing_alg_values_supported":["RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"revocation_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"request_object_signing_alg_values_supported":["HS256","HS384","HS512","RS256","RS384","RS512","ES256","ES384","ES512"],"introspection_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"]},"domain_aliases":["api.example.com","example.com"],"schema_version":"openid-1.0.0","token_endpoint":"https://domain.okta.com/oauth2/v1/token","upstream_params":{"screen_name":{"alias":"login_hint"}},"userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","connection_settings":{"pkce":"disabled"},"non_persistent_attrs":["gender","hair_color"],"authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","set_user_root_attributes":"on_each_login"},"strategy":"okta","name":"Acceptance-Test-Okta-TestAccConnectionOkta","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Okta-TestAccConnectionOkta","enabled_clients":[],"realms":["Acceptance-Test-Okta-TestAccConnectionOkta"]}' + body: '{"id":"con_awMGzrVUX1KQ0XNM","options":{"type":"back_channel","scope":"email openid profile","domain":"domain.okta.com","issuer":"https://domain.okta.com","icon_url":"https://example.com/logo.svg","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","client_id":"123456","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"123456","oidc_metadata":{"issuer":"https://domain.okta.com","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","token_endpoint":"https://domain.okta.com/oauth2/v1/token","claims_supported":["iss","ver","sub","aud","iat","exp","jti","auth_time","amr","idp","nonce","name","nickname","preferred_username","given_name","middle_name","family_name","email","email_verified","profile","zoneinfo","locale","address","phone_number","picture","website","gender","birthdate","updated_at","at_hash","c_hash"],"scopes_supported":["openid","email","profile","address","phone","offline_access","groups"],"userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","revocation_endpoint":"https://domain.okta.com/oauth2/v1/revoke","end_session_endpoint":"https://domain.okta.com/oauth2/v1/logout","grant_types_supported":["authorization_code","implicit","refresh_token","password","urn:ietf:params:oauth:grant-type:device_code"],"registration_endpoint":"https://domain.okta.com/oauth2/v1/clients","authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","introspection_endpoint":"https://domain.okta.com/oauth2/v1/introspect","subject_types_supported":["public"],"response_modes_supported":["query","fragment","form_post","okta_post_message"],"response_types_supported":["code","id_token","code id_token","code token","id_token token","code id_token token"],"claims_parameter_supported":false,"request_parameter_supported":true,"device_authorization_endpoint":"https://domain.okta.com/oauth2/v1/device/authorize","request_uri_parameter_supported":false,"code_challenge_methods_supported":["S256"],"require_request_uri_registration":false,"dpop_signing_alg_values_supported":["RS256","RS384","RS512","ES256","ES384","ES512"],"id_token_signing_alg_values_supported":["RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"revocation_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"request_object_signing_alg_values_supported":["HS256","HS384","HS512","RS256","RS384","RS512","ES256","ES384","ES512"],"introspection_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"]},"domain_aliases":["api.example.com","example.com"],"schema_version":"oidc-V4","token_endpoint":"https://domain.okta.com/oauth2/v1/token","upstream_params":{"screen_name":{"alias":"login_hint"}},"userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","connection_settings":{"pkce":"disabled"},"non_persistent_attrs":["gender","hair_color"],"authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","set_user_root_attributes":"on_each_login"},"strategy":"okta","name":"Acceptance-Test-Okta-TestAccConnectionOkta","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Okta-TestAccConnectionOkta","enabled_clients":[],"realms":["Acceptance-Test-Okta-TestAccConnectionOkta"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.216125ms + duration: 142.774416ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.1.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YHHWRjHlsLrortw7 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_awMGzrVUX1KQ0XNM method: GET response: proto: HTTP/2.0 @@ -138,13 +135,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_YHHWRjHlsLrortw7","options":{"type":"back_channel","scope":"email openid profile","domain":"domain.okta.com","issuer":"https://domain.okta.com","icon_url":"https://example.com/logo.svg","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","client_id":"123456","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"123456","oidc_metadata":{"issuer":"https://domain.okta.com","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","token_endpoint":"https://domain.okta.com/oauth2/v1/token","claims_supported":["iss","ver","sub","aud","iat","exp","jti","auth_time","amr","idp","nonce","name","nickname","preferred_username","given_name","middle_name","family_name","email","email_verified","profile","zoneinfo","locale","address","phone_number","picture","website","gender","birthdate","updated_at","at_hash","c_hash"],"scopes_supported":["openid","email","profile","address","phone","offline_access","groups"],"userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","revocation_endpoint":"https://domain.okta.com/oauth2/v1/revoke","end_session_endpoint":"https://domain.okta.com/oauth2/v1/logout","grant_types_supported":["authorization_code","implicit","refresh_token","password","urn:ietf:params:oauth:grant-type:device_code"],"registration_endpoint":"https://domain.okta.com/oauth2/v1/clients","authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","introspection_endpoint":"https://domain.okta.com/oauth2/v1/introspect","subject_types_supported":["public"],"response_modes_supported":["query","fragment","form_post","okta_post_message"],"response_types_supported":["code","id_token","code id_token","code token","id_token token","code id_token token"],"claims_parameter_supported":false,"request_parameter_supported":true,"device_authorization_endpoint":"https://domain.okta.com/oauth2/v1/device/authorize","request_uri_parameter_supported":true,"code_challenge_methods_supported":["S256"],"require_request_uri_registration":false,"id_token_signing_alg_values_supported":["RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"revocation_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"request_object_signing_alg_values_supported":["HS256","HS384","HS512","RS256","RS384","RS512","ES256","ES384","ES512"],"introspection_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"]},"domain_aliases":["api.example.com","example.com"],"schema_version":"openid-1.0.0","token_endpoint":"https://domain.okta.com/oauth2/v1/token","upstream_params":{"screen_name":{"alias":"login_hint"}},"userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","connection_settings":{"pkce":"disabled"},"non_persistent_attrs":["gender","hair_color"],"authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","set_user_root_attributes":"on_each_login"},"strategy":"okta","name":"Acceptance-Test-Okta-TestAccConnectionOkta","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Okta-TestAccConnectionOkta","enabled_clients":[],"realms":["Acceptance-Test-Okta-TestAccConnectionOkta"]}' + body: '{"id":"con_awMGzrVUX1KQ0XNM","options":{"type":"back_channel","scope":"email openid profile","domain":"domain.okta.com","issuer":"https://domain.okta.com","icon_url":"https://example.com/logo.svg","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","client_id":"123456","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"123456","oidc_metadata":{"issuer":"https://domain.okta.com","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","token_endpoint":"https://domain.okta.com/oauth2/v1/token","claims_supported":["iss","ver","sub","aud","iat","exp","jti","auth_time","amr","idp","nonce","name","nickname","preferred_username","given_name","middle_name","family_name","email","email_verified","profile","zoneinfo","locale","address","phone_number","picture","website","gender","birthdate","updated_at","at_hash","c_hash"],"scopes_supported":["openid","email","profile","address","phone","offline_access","groups"],"userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","revocation_endpoint":"https://domain.okta.com/oauth2/v1/revoke","end_session_endpoint":"https://domain.okta.com/oauth2/v1/logout","grant_types_supported":["authorization_code","implicit","refresh_token","password","urn:ietf:params:oauth:grant-type:device_code"],"registration_endpoint":"https://domain.okta.com/oauth2/v1/clients","authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","introspection_endpoint":"https://domain.okta.com/oauth2/v1/introspect","subject_types_supported":["public"],"response_modes_supported":["query","fragment","form_post","okta_post_message"],"response_types_supported":["code","id_token","code id_token","code token","id_token token","code id_token token"],"claims_parameter_supported":false,"request_parameter_supported":true,"device_authorization_endpoint":"https://domain.okta.com/oauth2/v1/device/authorize","request_uri_parameter_supported":false,"code_challenge_methods_supported":["S256"],"require_request_uri_registration":false,"dpop_signing_alg_values_supported":["RS256","RS384","RS512","ES256","ES384","ES512"],"id_token_signing_alg_values_supported":["RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"revocation_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"request_object_signing_alg_values_supported":["HS256","HS384","HS512","RS256","RS384","RS512","ES256","ES384","ES512"],"introspection_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"]},"domain_aliases":["api.example.com","example.com"],"schema_version":"oidc-V4","token_endpoint":"https://domain.okta.com/oauth2/v1/token","upstream_params":{"screen_name":{"alias":"login_hint"}},"userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","connection_settings":{"pkce":"disabled"},"non_persistent_attrs":["gender","hair_color"],"authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","set_user_root_attributes":"on_each_login"},"strategy":"okta","name":"Acceptance-Test-Okta-TestAccConnectionOkta","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Okta-TestAccConnectionOkta","enabled_clients":[],"realms":["Acceptance-Test-Okta-TestAccConnectionOkta"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.61425ms + duration: 144.619ms - id: 4 request: proto: HTTP/1.1 @@ -163,8 +160,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.1.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YHHWRjHlsLrortw7 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_awMGzrVUX1KQ0XNM method: PATCH response: proto: HTTP/2.0 @@ -174,33 +171,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_YHHWRjHlsLrortw7","options":{"type":"back_channel","scope":"openid profile","domain":"domain.okta.com","issuer":"https://domain.okta.com","icon_url":"https://example.com/v2/logo.svg","jwks_uri":"https://domain.okta.com/oauth2/v2/keys","client_id":"123456","attribute_map":{"attributes":{"name":"${context.tokenset.name}","email":"${context.tokenset.email}","picture":"${context.tokenset.picture}","nickname":"${context.tokenset.nickname}","given_name":"${context.tokenset.given_name}","family_name":"${context.tokenset.family_name}","email_verified":"${context.tokenset.email_verified}"},"mapping_mode":"basic_profile","userinfo_scope":"openid email profile groups"},"client_secret":"123456","oidc_metadata":{"issuer":"https://domain.okta.com","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","token_endpoint":"https://domain.okta.com/oauth2/v1/token","claims_supported":["iss","ver","sub","aud","iat","exp","jti","auth_time","amr","idp","nonce","name","nickname","preferred_username","given_name","middle_name","family_name","email","email_verified","profile","zoneinfo","locale","address","phone_number","picture","website","gender","birthdate","updated_at","at_hash","c_hash"],"scopes_supported":["openid","email","profile","address","phone","offline_access","groups"],"userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","revocation_endpoint":"https://domain.okta.com/oauth2/v1/revoke","end_session_endpoint":"https://domain.okta.com/oauth2/v1/logout","grant_types_supported":["authorization_code","implicit","refresh_token","password","urn:ietf:params:oauth:grant-type:device_code"],"registration_endpoint":"https://domain.okta.com/oauth2/v1/clients","authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","introspection_endpoint":"https://domain.okta.com/oauth2/v1/introspect","subject_types_supported":["public"],"response_modes_supported":["query","fragment","form_post","okta_post_message"],"response_types_supported":["code","id_token","code id_token","code token","id_token token","code id_token token"],"claims_parameter_supported":false,"request_parameter_supported":true,"device_authorization_endpoint":"https://domain.okta.com/oauth2/v1/device/authorize","request_uri_parameter_supported":true,"code_challenge_methods_supported":["S256"],"require_request_uri_registration":false,"id_token_signing_alg_values_supported":["RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"revocation_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"request_object_signing_alg_values_supported":["HS256","HS384","HS512","RS256","RS384","RS512","ES256","ES384","ES512"],"introspection_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"]},"domain_aliases":["example.com"],"schema_version":"openid-1.0.0","token_endpoint":"https://domain.okta.com/oauth2/v2/token","userinfo_endpoint":"https://domain.okta.com/oauth2/v2/userinfo","connection_settings":{"pkce":"auto"},"non_persistent_attrs":["gender"],"authorization_endpoint":"https://domain.okta.com/oauth2/v2/authorize","set_user_root_attributes":"on_first_login"},"strategy":"okta","name":"Acceptance-Test-Okta-TestAccConnectionOkta","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-Okta-TestAccConnectionOkta","enabled_clients":[],"realms":["Acceptance-Test-Okta-TestAccConnectionOkta"]}' + body: '{"id":"con_awMGzrVUX1KQ0XNM","options":{"type":"back_channel","scope":"openid profile","domain":"domain.okta.com","issuer":"https://domain.okta.com","icon_url":"https://example.com/v2/logo.svg","jwks_uri":"https://domain.okta.com/oauth2/v2/keys","client_id":"123456","attribute_map":{"attributes":{"name":"${context.tokenset.name}","email":"${context.tokenset.email}","picture":"${context.tokenset.picture}","nickname":"${context.tokenset.nickname}","given_name":"${context.tokenset.given_name}","family_name":"${context.tokenset.family_name}","email_verified":"${context.tokenset.email_verified}"},"mapping_mode":"basic_profile","userinfo_scope":"openid email profile groups"},"client_secret":"123456","oidc_metadata":{"issuer":"https://domain.okta.com","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","token_endpoint":"https://domain.okta.com/oauth2/v1/token","claims_supported":["iss","ver","sub","aud","iat","exp","jti","auth_time","amr","idp","nonce","name","nickname","preferred_username","given_name","middle_name","family_name","email","email_verified","profile","zoneinfo","locale","address","phone_number","picture","website","gender","birthdate","updated_at","at_hash","c_hash"],"scopes_supported":["openid","email","profile","address","phone","offline_access","groups"],"userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","revocation_endpoint":"https://domain.okta.com/oauth2/v1/revoke","end_session_endpoint":"https://domain.okta.com/oauth2/v1/logout","grant_types_supported":["authorization_code","implicit","refresh_token","password","urn:ietf:params:oauth:grant-type:device_code"],"registration_endpoint":"https://domain.okta.com/oauth2/v1/clients","authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","introspection_endpoint":"https://domain.okta.com/oauth2/v1/introspect","subject_types_supported":["public"],"response_modes_supported":["query","fragment","form_post","okta_post_message"],"response_types_supported":["code","id_token","code id_token","code token","id_token token","code id_token token"],"claims_parameter_supported":false,"request_parameter_supported":true,"device_authorization_endpoint":"https://domain.okta.com/oauth2/v1/device/authorize","request_uri_parameter_supported":false,"code_challenge_methods_supported":["S256"],"require_request_uri_registration":false,"dpop_signing_alg_values_supported":["RS256","RS384","RS512","ES256","ES384","ES512"],"id_token_signing_alg_values_supported":["RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"revocation_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"request_object_signing_alg_values_supported":["HS256","HS384","HS512","RS256","RS384","RS512","ES256","ES384","ES512"],"introspection_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"]},"domain_aliases":["example.com"],"schema_version":"oidc-V4","token_endpoint":"https://domain.okta.com/oauth2/v2/token","userinfo_endpoint":"https://domain.okta.com/oauth2/v2/userinfo","connection_settings":{"pkce":"auto"},"non_persistent_attrs":["gender"],"authorization_endpoint":"https://domain.okta.com/oauth2/v2/authorize","set_user_root_attributes":"on_first_login"},"strategy":"okta","name":"Acceptance-Test-Okta-TestAccConnectionOkta","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-Okta-TestAccConnectionOkta","enabled_clients":[],"realms":["Acceptance-Test-Okta-TestAccConnectionOkta"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 760.282125ms + duration: 1.041712833s - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.1.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YHHWRjHlsLrortw7 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_awMGzrVUX1KQ0XNM method: GET response: proto: HTTP/2.0 @@ -210,33 +206,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_YHHWRjHlsLrortw7","options":{"type":"back_channel","scope":"openid profile","domain":"domain.okta.com","issuer":"https://domain.okta.com","icon_url":"https://example.com/v2/logo.svg","jwks_uri":"https://domain.okta.com/oauth2/v2/keys","client_id":"123456","attribute_map":{"attributes":{"name":"${context.tokenset.name}","email":"${context.tokenset.email}","picture":"${context.tokenset.picture}","nickname":"${context.tokenset.nickname}","given_name":"${context.tokenset.given_name}","family_name":"${context.tokenset.family_name}","email_verified":"${context.tokenset.email_verified}"},"mapping_mode":"basic_profile","userinfo_scope":"openid email profile groups"},"client_secret":"123456","oidc_metadata":{"issuer":"https://domain.okta.com","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","token_endpoint":"https://domain.okta.com/oauth2/v1/token","claims_supported":["iss","ver","sub","aud","iat","exp","jti","auth_time","amr","idp","nonce","name","nickname","preferred_username","given_name","middle_name","family_name","email","email_verified","profile","zoneinfo","locale","address","phone_number","picture","website","gender","birthdate","updated_at","at_hash","c_hash"],"scopes_supported":["openid","email","profile","address","phone","offline_access","groups"],"userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","revocation_endpoint":"https://domain.okta.com/oauth2/v1/revoke","end_session_endpoint":"https://domain.okta.com/oauth2/v1/logout","grant_types_supported":["authorization_code","implicit","refresh_token","password","urn:ietf:params:oauth:grant-type:device_code"],"registration_endpoint":"https://domain.okta.com/oauth2/v1/clients","authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","introspection_endpoint":"https://domain.okta.com/oauth2/v1/introspect","subject_types_supported":["public"],"response_modes_supported":["query","fragment","form_post","okta_post_message"],"response_types_supported":["code","id_token","code id_token","code token","id_token token","code id_token token"],"claims_parameter_supported":false,"request_parameter_supported":true,"device_authorization_endpoint":"https://domain.okta.com/oauth2/v1/device/authorize","request_uri_parameter_supported":true,"code_challenge_methods_supported":["S256"],"require_request_uri_registration":false,"id_token_signing_alg_values_supported":["RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"revocation_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"request_object_signing_alg_values_supported":["HS256","HS384","HS512","RS256","RS384","RS512","ES256","ES384","ES512"],"introspection_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"]},"domain_aliases":["example.com"],"schema_version":"openid-1.0.0","token_endpoint":"https://domain.okta.com/oauth2/v2/token","userinfo_endpoint":"https://domain.okta.com/oauth2/v2/userinfo","connection_settings":{"pkce":"auto"},"non_persistent_attrs":["gender"],"authorization_endpoint":"https://domain.okta.com/oauth2/v2/authorize","set_user_root_attributes":"on_first_login"},"strategy":"okta","name":"Acceptance-Test-Okta-TestAccConnectionOkta","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-Okta-TestAccConnectionOkta","enabled_clients":[],"realms":["Acceptance-Test-Okta-TestAccConnectionOkta"]}' + body: '{"id":"con_awMGzrVUX1KQ0XNM","options":{"type":"back_channel","scope":"openid profile","domain":"domain.okta.com","issuer":"https://domain.okta.com","icon_url":"https://example.com/v2/logo.svg","jwks_uri":"https://domain.okta.com/oauth2/v2/keys","client_id":"123456","attribute_map":{"attributes":{"name":"${context.tokenset.name}","email":"${context.tokenset.email}","picture":"${context.tokenset.picture}","nickname":"${context.tokenset.nickname}","given_name":"${context.tokenset.given_name}","family_name":"${context.tokenset.family_name}","email_verified":"${context.tokenset.email_verified}"},"mapping_mode":"basic_profile","userinfo_scope":"openid email profile groups"},"client_secret":"123456","oidc_metadata":{"issuer":"https://domain.okta.com","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","token_endpoint":"https://domain.okta.com/oauth2/v1/token","claims_supported":["iss","ver","sub","aud","iat","exp","jti","auth_time","amr","idp","nonce","name","nickname","preferred_username","given_name","middle_name","family_name","email","email_verified","profile","zoneinfo","locale","address","phone_number","picture","website","gender","birthdate","updated_at","at_hash","c_hash"],"scopes_supported":["openid","email","profile","address","phone","offline_access","groups"],"userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","revocation_endpoint":"https://domain.okta.com/oauth2/v1/revoke","end_session_endpoint":"https://domain.okta.com/oauth2/v1/logout","grant_types_supported":["authorization_code","implicit","refresh_token","password","urn:ietf:params:oauth:grant-type:device_code"],"registration_endpoint":"https://domain.okta.com/oauth2/v1/clients","authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","introspection_endpoint":"https://domain.okta.com/oauth2/v1/introspect","subject_types_supported":["public"],"response_modes_supported":["query","fragment","form_post","okta_post_message"],"response_types_supported":["code","id_token","code id_token","code token","id_token token","code id_token token"],"claims_parameter_supported":false,"request_parameter_supported":true,"device_authorization_endpoint":"https://domain.okta.com/oauth2/v1/device/authorize","request_uri_parameter_supported":false,"code_challenge_methods_supported":["S256"],"require_request_uri_registration":false,"dpop_signing_alg_values_supported":["RS256","RS384","RS512","ES256","ES384","ES512"],"id_token_signing_alg_values_supported":["RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"revocation_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"request_object_signing_alg_values_supported":["HS256","HS384","HS512","RS256","RS384","RS512","ES256","ES384","ES512"],"introspection_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"]},"domain_aliases":["example.com"],"schema_version":"oidc-V4","token_endpoint":"https://domain.okta.com/oauth2/v2/token","userinfo_endpoint":"https://domain.okta.com/oauth2/v2/userinfo","connection_settings":{"pkce":"auto"},"non_persistent_attrs":["gender"],"authorization_endpoint":"https://domain.okta.com/oauth2/v2/authorize","set_user_root_attributes":"on_first_login"},"strategy":"okta","name":"Acceptance-Test-Okta-TestAccConnectionOkta","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-Okta-TestAccConnectionOkta","enabled_clients":[],"realms":["Acceptance-Test-Okta-TestAccConnectionOkta"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.743541ms + duration: 150.074166ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.1.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YHHWRjHlsLrortw7 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_awMGzrVUX1KQ0XNM method: GET response: proto: HTTP/2.0 @@ -246,33 +241,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_YHHWRjHlsLrortw7","options":{"type":"back_channel","scope":"openid profile","domain":"domain.okta.com","issuer":"https://domain.okta.com","icon_url":"https://example.com/v2/logo.svg","jwks_uri":"https://domain.okta.com/oauth2/v2/keys","client_id":"123456","attribute_map":{"attributes":{"name":"${context.tokenset.name}","email":"${context.tokenset.email}","picture":"${context.tokenset.picture}","nickname":"${context.tokenset.nickname}","given_name":"${context.tokenset.given_name}","family_name":"${context.tokenset.family_name}","email_verified":"${context.tokenset.email_verified}"},"mapping_mode":"basic_profile","userinfo_scope":"openid email profile groups"},"client_secret":"123456","oidc_metadata":{"issuer":"https://domain.okta.com","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","token_endpoint":"https://domain.okta.com/oauth2/v1/token","claims_supported":["iss","ver","sub","aud","iat","exp","jti","auth_time","amr","idp","nonce","name","nickname","preferred_username","given_name","middle_name","family_name","email","email_verified","profile","zoneinfo","locale","address","phone_number","picture","website","gender","birthdate","updated_at","at_hash","c_hash"],"scopes_supported":["openid","email","profile","address","phone","offline_access","groups"],"userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","revocation_endpoint":"https://domain.okta.com/oauth2/v1/revoke","end_session_endpoint":"https://domain.okta.com/oauth2/v1/logout","grant_types_supported":["authorization_code","implicit","refresh_token","password","urn:ietf:params:oauth:grant-type:device_code"],"registration_endpoint":"https://domain.okta.com/oauth2/v1/clients","authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","introspection_endpoint":"https://domain.okta.com/oauth2/v1/introspect","subject_types_supported":["public"],"response_modes_supported":["query","fragment","form_post","okta_post_message"],"response_types_supported":["code","id_token","code id_token","code token","id_token token","code id_token token"],"claims_parameter_supported":false,"request_parameter_supported":true,"device_authorization_endpoint":"https://domain.okta.com/oauth2/v1/device/authorize","request_uri_parameter_supported":true,"code_challenge_methods_supported":["S256"],"require_request_uri_registration":false,"id_token_signing_alg_values_supported":["RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"revocation_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"request_object_signing_alg_values_supported":["HS256","HS384","HS512","RS256","RS384","RS512","ES256","ES384","ES512"],"introspection_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"]},"domain_aliases":["example.com"],"schema_version":"openid-1.0.0","token_endpoint":"https://domain.okta.com/oauth2/v2/token","userinfo_endpoint":"https://domain.okta.com/oauth2/v2/userinfo","connection_settings":{"pkce":"auto"},"non_persistent_attrs":["gender"],"authorization_endpoint":"https://domain.okta.com/oauth2/v2/authorize","set_user_root_attributes":"on_first_login"},"strategy":"okta","name":"Acceptance-Test-Okta-TestAccConnectionOkta","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-Okta-TestAccConnectionOkta","enabled_clients":[],"realms":["Acceptance-Test-Okta-TestAccConnectionOkta"]}' + body: '{"id":"con_awMGzrVUX1KQ0XNM","options":{"type":"back_channel","scope":"openid profile","domain":"domain.okta.com","issuer":"https://domain.okta.com","icon_url":"https://example.com/v2/logo.svg","jwks_uri":"https://domain.okta.com/oauth2/v2/keys","client_id":"123456","attribute_map":{"attributes":{"name":"${context.tokenset.name}","email":"${context.tokenset.email}","picture":"${context.tokenset.picture}","nickname":"${context.tokenset.nickname}","given_name":"${context.tokenset.given_name}","family_name":"${context.tokenset.family_name}","email_verified":"${context.tokenset.email_verified}"},"mapping_mode":"basic_profile","userinfo_scope":"openid email profile groups"},"client_secret":"123456","oidc_metadata":{"issuer":"https://domain.okta.com","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","token_endpoint":"https://domain.okta.com/oauth2/v1/token","claims_supported":["iss","ver","sub","aud","iat","exp","jti","auth_time","amr","idp","nonce","name","nickname","preferred_username","given_name","middle_name","family_name","email","email_verified","profile","zoneinfo","locale","address","phone_number","picture","website","gender","birthdate","updated_at","at_hash","c_hash"],"scopes_supported":["openid","email","profile","address","phone","offline_access","groups"],"userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","revocation_endpoint":"https://domain.okta.com/oauth2/v1/revoke","end_session_endpoint":"https://domain.okta.com/oauth2/v1/logout","grant_types_supported":["authorization_code","implicit","refresh_token","password","urn:ietf:params:oauth:grant-type:device_code"],"registration_endpoint":"https://domain.okta.com/oauth2/v1/clients","authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","introspection_endpoint":"https://domain.okta.com/oauth2/v1/introspect","subject_types_supported":["public"],"response_modes_supported":["query","fragment","form_post","okta_post_message"],"response_types_supported":["code","id_token","code id_token","code token","id_token token","code id_token token"],"claims_parameter_supported":false,"request_parameter_supported":true,"device_authorization_endpoint":"https://domain.okta.com/oauth2/v1/device/authorize","request_uri_parameter_supported":false,"code_challenge_methods_supported":["S256"],"require_request_uri_registration":false,"dpop_signing_alg_values_supported":["RS256","RS384","RS512","ES256","ES384","ES512"],"id_token_signing_alg_values_supported":["RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"revocation_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"request_object_signing_alg_values_supported":["HS256","HS384","HS512","RS256","RS384","RS512","ES256","ES384","ES512"],"introspection_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"]},"domain_aliases":["example.com"],"schema_version":"oidc-V4","token_endpoint":"https://domain.okta.com/oauth2/v2/token","userinfo_endpoint":"https://domain.okta.com/oauth2/v2/userinfo","connection_settings":{"pkce":"auto"},"non_persistent_attrs":["gender"],"authorization_endpoint":"https://domain.okta.com/oauth2/v2/authorize","set_user_root_attributes":"on_first_login"},"strategy":"okta","name":"Acceptance-Test-Okta-TestAccConnectionOkta","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-Okta-TestAccConnectionOkta","enabled_clients":[],"realms":["Acceptance-Test-Okta-TestAccConnectionOkta"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 199.516917ms + duration: 165.153417ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.1.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YHHWRjHlsLrortw7 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_awMGzrVUX1KQ0XNM method: GET response: proto: HTTP/2.0 @@ -282,33 +276,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_YHHWRjHlsLrortw7","options":{"type":"back_channel","scope":"openid profile","domain":"domain.okta.com","issuer":"https://domain.okta.com","icon_url":"https://example.com/v2/logo.svg","jwks_uri":"https://domain.okta.com/oauth2/v2/keys","client_id":"123456","attribute_map":{"attributes":{"name":"${context.tokenset.name}","email":"${context.tokenset.email}","picture":"${context.tokenset.picture}","nickname":"${context.tokenset.nickname}","given_name":"${context.tokenset.given_name}","family_name":"${context.tokenset.family_name}","email_verified":"${context.tokenset.email_verified}"},"mapping_mode":"basic_profile","userinfo_scope":"openid email profile groups"},"client_secret":"123456","oidc_metadata":{"issuer":"https://domain.okta.com","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","token_endpoint":"https://domain.okta.com/oauth2/v1/token","claims_supported":["iss","ver","sub","aud","iat","exp","jti","auth_time","amr","idp","nonce","name","nickname","preferred_username","given_name","middle_name","family_name","email","email_verified","profile","zoneinfo","locale","address","phone_number","picture","website","gender","birthdate","updated_at","at_hash","c_hash"],"scopes_supported":["openid","email","profile","address","phone","offline_access","groups"],"userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","revocation_endpoint":"https://domain.okta.com/oauth2/v1/revoke","end_session_endpoint":"https://domain.okta.com/oauth2/v1/logout","grant_types_supported":["authorization_code","implicit","refresh_token","password","urn:ietf:params:oauth:grant-type:device_code"],"registration_endpoint":"https://domain.okta.com/oauth2/v1/clients","authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","introspection_endpoint":"https://domain.okta.com/oauth2/v1/introspect","subject_types_supported":["public"],"response_modes_supported":["query","fragment","form_post","okta_post_message"],"response_types_supported":["code","id_token","code id_token","code token","id_token token","code id_token token"],"claims_parameter_supported":false,"request_parameter_supported":true,"device_authorization_endpoint":"https://domain.okta.com/oauth2/v1/device/authorize","request_uri_parameter_supported":true,"code_challenge_methods_supported":["S256"],"require_request_uri_registration":false,"id_token_signing_alg_values_supported":["RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"revocation_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"request_object_signing_alg_values_supported":["HS256","HS384","HS512","RS256","RS384","RS512","ES256","ES384","ES512"],"introspection_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"]},"domain_aliases":["example.com"],"schema_version":"openid-1.0.0","token_endpoint":"https://domain.okta.com/oauth2/v2/token","userinfo_endpoint":"https://domain.okta.com/oauth2/v2/userinfo","connection_settings":{"pkce":"auto"},"non_persistent_attrs":["gender"],"authorization_endpoint":"https://domain.okta.com/oauth2/v2/authorize","set_user_root_attributes":"on_first_login"},"strategy":"okta","name":"Acceptance-Test-Okta-TestAccConnectionOkta","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-Okta-TestAccConnectionOkta","enabled_clients":[],"realms":["Acceptance-Test-Okta-TestAccConnectionOkta"]}' + body: '{"id":"con_awMGzrVUX1KQ0XNM","options":{"type":"back_channel","scope":"openid profile","domain":"domain.okta.com","issuer":"https://domain.okta.com","icon_url":"https://example.com/v2/logo.svg","jwks_uri":"https://domain.okta.com/oauth2/v2/keys","client_id":"123456","attribute_map":{"attributes":{"name":"${context.tokenset.name}","email":"${context.tokenset.email}","picture":"${context.tokenset.picture}","nickname":"${context.tokenset.nickname}","given_name":"${context.tokenset.given_name}","family_name":"${context.tokenset.family_name}","email_verified":"${context.tokenset.email_verified}"},"mapping_mode":"basic_profile","userinfo_scope":"openid email profile groups"},"client_secret":"123456","oidc_metadata":{"issuer":"https://domain.okta.com","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","token_endpoint":"https://domain.okta.com/oauth2/v1/token","claims_supported":["iss","ver","sub","aud","iat","exp","jti","auth_time","amr","idp","nonce","name","nickname","preferred_username","given_name","middle_name","family_name","email","email_verified","profile","zoneinfo","locale","address","phone_number","picture","website","gender","birthdate","updated_at","at_hash","c_hash"],"scopes_supported":["openid","email","profile","address","phone","offline_access","groups"],"userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","revocation_endpoint":"https://domain.okta.com/oauth2/v1/revoke","end_session_endpoint":"https://domain.okta.com/oauth2/v1/logout","grant_types_supported":["authorization_code","implicit","refresh_token","password","urn:ietf:params:oauth:grant-type:device_code"],"registration_endpoint":"https://domain.okta.com/oauth2/v1/clients","authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","introspection_endpoint":"https://domain.okta.com/oauth2/v1/introspect","subject_types_supported":["public"],"response_modes_supported":["query","fragment","form_post","okta_post_message"],"response_types_supported":["code","id_token","code id_token","code token","id_token token","code id_token token"],"claims_parameter_supported":false,"request_parameter_supported":true,"device_authorization_endpoint":"https://domain.okta.com/oauth2/v1/device/authorize","request_uri_parameter_supported":false,"code_challenge_methods_supported":["S256"],"require_request_uri_registration":false,"dpop_signing_alg_values_supported":["RS256","RS384","RS512","ES256","ES384","ES512"],"id_token_signing_alg_values_supported":["RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"revocation_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"request_object_signing_alg_values_supported":["HS256","HS384","HS512","RS256","RS384","RS512","ES256","ES384","ES512"],"introspection_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"]},"domain_aliases":["example.com"],"schema_version":"oidc-V4","token_endpoint":"https://domain.okta.com/oauth2/v2/token","userinfo_endpoint":"https://domain.okta.com/oauth2/v2/userinfo","connection_settings":{"pkce":"auto"},"non_persistent_attrs":["gender"],"authorization_endpoint":"https://domain.okta.com/oauth2/v2/authorize","set_user_root_attributes":"on_first_login"},"strategy":"okta","name":"Acceptance-Test-Okta-TestAccConnectionOkta","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-Okta-TestAccConnectionOkta","enabled_clients":[],"realms":["Acceptance-Test-Okta-TestAccConnectionOkta"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 142.409875ms + duration: 155.781291ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.1.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YHHWRjHlsLrortw7 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_awMGzrVUX1KQ0XNM method: GET response: proto: HTTP/2.0 @@ -318,13 +311,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_YHHWRjHlsLrortw7","options":{"type":"back_channel","scope":"openid profile","domain":"domain.okta.com","issuer":"https://domain.okta.com","icon_url":"https://example.com/v2/logo.svg","jwks_uri":"https://domain.okta.com/oauth2/v2/keys","client_id":"123456","attribute_map":{"attributes":{"name":"${context.tokenset.name}","email":"${context.tokenset.email}","picture":"${context.tokenset.picture}","nickname":"${context.tokenset.nickname}","given_name":"${context.tokenset.given_name}","family_name":"${context.tokenset.family_name}","email_verified":"${context.tokenset.email_verified}"},"mapping_mode":"basic_profile","userinfo_scope":"openid email profile groups"},"client_secret":"123456","oidc_metadata":{"issuer":"https://domain.okta.com","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","token_endpoint":"https://domain.okta.com/oauth2/v1/token","claims_supported":["iss","ver","sub","aud","iat","exp","jti","auth_time","amr","idp","nonce","name","nickname","preferred_username","given_name","middle_name","family_name","email","email_verified","profile","zoneinfo","locale","address","phone_number","picture","website","gender","birthdate","updated_at","at_hash","c_hash"],"scopes_supported":["openid","email","profile","address","phone","offline_access","groups"],"userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","revocation_endpoint":"https://domain.okta.com/oauth2/v1/revoke","end_session_endpoint":"https://domain.okta.com/oauth2/v1/logout","grant_types_supported":["authorization_code","implicit","refresh_token","password","urn:ietf:params:oauth:grant-type:device_code"],"registration_endpoint":"https://domain.okta.com/oauth2/v1/clients","authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","introspection_endpoint":"https://domain.okta.com/oauth2/v1/introspect","subject_types_supported":["public"],"response_modes_supported":["query","fragment","form_post","okta_post_message"],"response_types_supported":["code","id_token","code id_token","code token","id_token token","code id_token token"],"claims_parameter_supported":false,"request_parameter_supported":true,"device_authorization_endpoint":"https://domain.okta.com/oauth2/v1/device/authorize","request_uri_parameter_supported":true,"code_challenge_methods_supported":["S256"],"require_request_uri_registration":false,"id_token_signing_alg_values_supported":["RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"revocation_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"request_object_signing_alg_values_supported":["HS256","HS384","HS512","RS256","RS384","RS512","ES256","ES384","ES512"],"introspection_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"]},"domain_aliases":["example.com"],"schema_version":"openid-1.0.0","token_endpoint":"https://domain.okta.com/oauth2/v2/token","userinfo_endpoint":"https://domain.okta.com/oauth2/v2/userinfo","connection_settings":{"pkce":"auto"},"non_persistent_attrs":["gender"],"authorization_endpoint":"https://domain.okta.com/oauth2/v2/authorize","set_user_root_attributes":"on_first_login"},"strategy":"okta","name":"Acceptance-Test-Okta-TestAccConnectionOkta","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-Okta-TestAccConnectionOkta","enabled_clients":[],"realms":["Acceptance-Test-Okta-TestAccConnectionOkta"]}' + body: '{"id":"con_awMGzrVUX1KQ0XNM","options":{"type":"back_channel","scope":"openid profile","domain":"domain.okta.com","issuer":"https://domain.okta.com","icon_url":"https://example.com/v2/logo.svg","jwks_uri":"https://domain.okta.com/oauth2/v2/keys","client_id":"123456","attribute_map":{"attributes":{"name":"${context.tokenset.name}","email":"${context.tokenset.email}","picture":"${context.tokenset.picture}","nickname":"${context.tokenset.nickname}","given_name":"${context.tokenset.given_name}","family_name":"${context.tokenset.family_name}","email_verified":"${context.tokenset.email_verified}"},"mapping_mode":"basic_profile","userinfo_scope":"openid email profile groups"},"client_secret":"123456","oidc_metadata":{"issuer":"https://domain.okta.com","jwks_uri":"https://domain.okta.com/oauth2/v1/keys","token_endpoint":"https://domain.okta.com/oauth2/v1/token","claims_supported":["iss","ver","sub","aud","iat","exp","jti","auth_time","amr","idp","nonce","name","nickname","preferred_username","given_name","middle_name","family_name","email","email_verified","profile","zoneinfo","locale","address","phone_number","picture","website","gender","birthdate","updated_at","at_hash","c_hash"],"scopes_supported":["openid","email","profile","address","phone","offline_access","groups"],"userinfo_endpoint":"https://domain.okta.com/oauth2/v1/userinfo","revocation_endpoint":"https://domain.okta.com/oauth2/v1/revoke","end_session_endpoint":"https://domain.okta.com/oauth2/v1/logout","grant_types_supported":["authorization_code","implicit","refresh_token","password","urn:ietf:params:oauth:grant-type:device_code"],"registration_endpoint":"https://domain.okta.com/oauth2/v1/clients","authorization_endpoint":"https://domain.okta.com/oauth2/v1/authorize","introspection_endpoint":"https://domain.okta.com/oauth2/v1/introspect","subject_types_supported":["public"],"response_modes_supported":["query","fragment","form_post","okta_post_message"],"response_types_supported":["code","id_token","code id_token","code token","id_token token","code id_token token"],"claims_parameter_supported":false,"request_parameter_supported":true,"device_authorization_endpoint":"https://domain.okta.com/oauth2/v1/device/authorize","request_uri_parameter_supported":false,"code_challenge_methods_supported":["S256"],"require_request_uri_registration":false,"dpop_signing_alg_values_supported":["RS256","RS384","RS512","ES256","ES384","ES512"],"id_token_signing_alg_values_supported":["RS256"],"token_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"revocation_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"],"request_object_signing_alg_values_supported":["HS256","HS384","HS512","RS256","RS384","RS512","ES256","ES384","ES512"],"introspection_endpoint_auth_methods_supported":["client_secret_basic","client_secret_post","client_secret_jwt","private_key_jwt","none"]},"domain_aliases":["example.com"],"schema_version":"oidc-V4","token_endpoint":"https://domain.okta.com/oauth2/v2/token","userinfo_endpoint":"https://domain.okta.com/oauth2/v2/userinfo","connection_settings":{"pkce":"auto"},"non_persistent_attrs":["gender"],"authorization_endpoint":"https://domain.okta.com/oauth2/v2/authorize","set_user_root_attributes":"on_first_login"},"strategy":"okta","name":"Acceptance-Test-Okta-TestAccConnectionOkta","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-Okta-TestAccConnectionOkta","enabled_clients":[],"realms":["Acceptance-Test-Okta-TestAccConnectionOkta"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 136.851083ms + duration: 154.675292ms - id: 9 request: proto: HTTP/1.1 @@ -342,8 +335,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.1.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YHHWRjHlsLrortw7 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_awMGzrVUX1KQ0XNM method: DELETE response: proto: HTTP/2.0 @@ -353,10 +346,10 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2023-09-19T17:38:02.774Z"}' + body: '{"deleted_at":"2024-09-12T21:27:06.686Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 117.958875ms + duration: 152.200792ms diff --git a/test/data/recordings/TestAccConnectionSAML.yaml b/test/data/recordings/TestAccConnectionSAML.yaml index 03122162..d5b93b8c 100644 --- a/test/data/recordings/TestAccConnectionSAML.yaml +++ b/test/data/recordings/TestAccConnectionSAML.yaml @@ -6,20 +6,20 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 4521 + content_length: 4542 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"name":"Acceptance-Test-SAML-TestAccConnectionSAML","display_name":"Acceptance-Test-SAML-TestAccConnectionSAML","strategy":"samlp","show_as_button":false,"options":{"idpinitiated":{"client_id":"client_id","client_protocol":"samlp","client_authorizequery":"type=code\u0026timeout=30"},"signing_key":{"key":"-----BEGIN PRIVATE KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n","cert":"-----BEGIN PUBLIC KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n"},"decryptionKey":{"key":"-----BEGIN PRIVATE KEY-----\n...{your private key here}...\n-----END PRIVATE KEY-----","cert":"-----BEGIN CERTIFICATE-----\n...{your public key cert here}...\n-----END CERTIFICATE-----"},"protocolBinding":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST","tenant_domain":"example.com","domain_aliases":["example.com","example.coz"],"disableSignout":false,"signatureAlgorithm":"rsa-sha256","digestAlgorithm":"sha256","metadataXml":"\t\t\u003c?xml version=\"1.0\"?\u003e\n\u003cmd:EntityDescriptor xmlns:md=\"urn:oasis:names:tc:SAML:2.0:metadata\" entityID=\"https://example.com\"\u003e\n \u003cmd:IDPSSODescriptor protocolSupportEnumeration=\"urn:oasis:names:tc:SAML:2.0:protocol\"\u003e\n \u003cmd:SingleLogoutService Binding=\"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect\" Location=\"https://saml-from-metadata-xml.provider/sign_out\"/\u003e\n \u003cmd:SingleSignOnService Binding=\"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect\" Location=\"https://saml-from-metadata-xml.provider/sign_in\"/\u003e\n \u003cmd:KeyDescriptor use=\"signing\"\u003e\n \u003cds:KeyInfo xmlns:ds=\"http://www.w3.org/2000/09/xmldsig#\"\u003e\n \u003cds:X509Data\u003e\n \u003cds:X509Certificate\u003e\n MIIDtTCCAp2gAwIBAgIJAMKR/NsyfcazMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV\n BAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBX\n aWRnaXRzIFB0eSBMdGQwHhcNMTIxMTEyMjM0MzQxWhcNMTYxMjIxMjM0MzQxWjBF\n MQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50\n ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\n CgKCAQEAvtH4wKLYlIXZlfYQFJtXZVC3fD8XMarzwvb/fHUyJ6NvNStN+H7GHp3/\n QhZbSaRyqK5hu5xXtFLgnI0QG8oE1NlXbczjH45LeHWhPIdc2uHSpzXic78kOugM\n Y1vng4J10PF6+T2FNaiv0iXeIQq9xbwwPYpflViQyJnzGCIZ7VGan6GbRKzyTKcB\n 58yx24pJq+CviLXEY52TIW1l5imcjGvLtlCp1za9qBZa4XGoVqHi1kRXkdDSHty6\n lZWj3KxoRvTbiaBCH+75U7rifS6fR9lqjWE57bCGoz7+BBu9YmPKtI1KkyHFqWpx\n aJc/AKf9xgg+UumeqVcirUmAsHJrMwIDAQABo4GnMIGkMB0GA1UdDgQWBBTs83nk\n LtoXFlmBUts3EIxcVvkvcjB1BgNVHSMEbjBsgBTs83nkLtoXFlmBUts3EIxcVvkv\n cqFJpEcwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgTClNvbWUtU3RhdGUxITAfBgNV\n BAoTGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZIIJAMKR/NsyfcazMAwGA1UdEwQF\n MAMBAf8wDQYJKoZIhvcNAQEFBQADggEBABw7w/5k4d5dVDgd/OOOmXdaaCIKvt7d\n 3ntlv1SSvAoKT8d8lt97Dm5RrmefBI13I2yivZg5bfTge4+vAV6VdLFdWeFp1b/F\n OZkYUv6A8o5HW0OWQYVX26zIqBcG2Qrm3reiSl5BLvpj1WSpCsYvs5kaO4vFpMak\n /ICgdZD+rxwxf8Vb/6fntKywWSLgwKH3mJ+Z0kRlpq1g1oieiOm1/gpZ35s0Yuor\n XZba9ptfLCYSggg/qc3d3d0tbHplKYkwFm7f5ORGHDSD5SJm+gI7RPE+4bO8q79R\n PAfbG1UGuJ0b/oigagciHhJp851SQRYf3JuNSc17BnK2L5IEtzjqr+Q=\n \u003c/ds:X509Certificate\u003e\n \u003c/ds:X509Data\u003e\n \u003c/ds:KeyInfo\u003e\n \u003c/md:KeyDescriptor\u003e\n \u003c/md:IDPSSODescriptor\u003e\n\u003c/md:EntityDescriptor\u003e\n","fieldsMap":{"email":["emailaddress","nameidentifier"],"family_name":"surname","name":["name","nameidentifier"]},"requestTemplate":"\u003csamlp:AuthnRequest xmlns:samlp=\"urn:oasis:names:tc:SAML:2.0:protocol\"\n@@AssertServiceURLAndDestination@@\n ID=\"@@ID@@\"\n IssueInstant=\"@@IssueInstant@@\"\n ProtocolBinding=\"@@ProtocolBinding@@\" Version=\"2.0\"\u003e\n \u003csaml:Issuer xmlns:saml=\"urn:oasis:names:tc:SAML:2.0:assertion\"\u003e@@Issuer@@\u003c/saml:Issuer\u003e\n\u003c/samlp:AuthnRequest\u003e","user_id_attribute":"https://saml.provider/imi/ns/identity-200810","icon_url":"https://example.com/logo.svg","upstream_params":{"screen_name":{"alias":"login_hint"}}}} + {"name":"Acceptance-Test-SAML-TestAccConnectionSAML","display_name":"Acceptance-Test-SAML-TestAccConnectionSAML","strategy":"samlp","show_as_button":false,"options":{"strategy_version":2,"idpinitiated":{"client_id":"client_id","client_protocol":"samlp","client_authorizequery":"type=code\u0026timeout=30"},"signing_key":{"key":"-----BEGIN PRIVATE KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n","cert":"-----BEGIN PUBLIC KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n"},"decryptionKey":{"key":"-----BEGIN PRIVATE KEY-----\n...{your private key here}...\n-----END PRIVATE KEY-----","cert":"-----BEGIN CERTIFICATE-----\n...{your public key cert here}...\n-----END CERTIFICATE-----"},"protocolBinding":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST","tenant_domain":"example.com","domain_aliases":["example.com","example.coz"],"disableSignout":false,"signatureAlgorithm":"rsa-sha256","digestAlgorithm":"sha256","metadataXml":"\t\t\u003c?xml version=\"1.0\"?\u003e\n\u003cmd:EntityDescriptor xmlns:md=\"urn:oasis:names:tc:SAML:2.0:metadata\" entityID=\"https://example.com\"\u003e\n \u003cmd:IDPSSODescriptor protocolSupportEnumeration=\"urn:oasis:names:tc:SAML:2.0:protocol\"\u003e\n \u003cmd:SingleLogoutService Binding=\"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect\" Location=\"https://saml-from-metadata-xml.provider/sign_out\"/\u003e\n \u003cmd:SingleSignOnService Binding=\"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect\" Location=\"https://saml-from-metadata-xml.provider/sign_in\"/\u003e\n \u003cmd:KeyDescriptor use=\"signing\"\u003e\n \u003cds:KeyInfo xmlns:ds=\"http://www.w3.org/2000/09/xmldsig#\"\u003e\n \u003cds:X509Data\u003e\n \u003cds:X509Certificate\u003e\n MIIDtTCCAp2gAwIBAgIJAMKR/NsyfcazMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV\n BAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBX\n aWRnaXRzIFB0eSBMdGQwHhcNMTIxMTEyMjM0MzQxWhcNMTYxMjIxMjM0MzQxWjBF\n MQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50\n ZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\n CgKCAQEAvtH4wKLYlIXZlfYQFJtXZVC3fD8XMarzwvb/fHUyJ6NvNStN+H7GHp3/\n QhZbSaRyqK5hu5xXtFLgnI0QG8oE1NlXbczjH45LeHWhPIdc2uHSpzXic78kOugM\n Y1vng4J10PF6+T2FNaiv0iXeIQq9xbwwPYpflViQyJnzGCIZ7VGan6GbRKzyTKcB\n 58yx24pJq+CviLXEY52TIW1l5imcjGvLtlCp1za9qBZa4XGoVqHi1kRXkdDSHty6\n lZWj3KxoRvTbiaBCH+75U7rifS6fR9lqjWE57bCGoz7+BBu9YmPKtI1KkyHFqWpx\n aJc/AKf9xgg+UumeqVcirUmAsHJrMwIDAQABo4GnMIGkMB0GA1UdDgQWBBTs83nk\n LtoXFlmBUts3EIxcVvkvcjB1BgNVHSMEbjBsgBTs83nkLtoXFlmBUts3EIxcVvkv\n cqFJpEcwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgTClNvbWUtU3RhdGUxITAfBgNV\n BAoTGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZIIJAMKR/NsyfcazMAwGA1UdEwQF\n MAMBAf8wDQYJKoZIhvcNAQEFBQADggEBABw7w/5k4d5dVDgd/OOOmXdaaCIKvt7d\n 3ntlv1SSvAoKT8d8lt97Dm5RrmefBI13I2yivZg5bfTge4+vAV6VdLFdWeFp1b/F\n OZkYUv6A8o5HW0OWQYVX26zIqBcG2Qrm3reiSl5BLvpj1WSpCsYvs5kaO4vFpMak\n /ICgdZD+rxwxf8Vb/6fntKywWSLgwKH3mJ+Z0kRlpq1g1oieiOm1/gpZ35s0Yuor\n XZba9ptfLCYSggg/qc3d3d0tbHplKYkwFm7f5ORGHDSD5SJm+gI7RPE+4bO8q79R\n PAfbG1UGuJ0b/oigagciHhJp851SQRYf3JuNSc17BnK2L5IEtzjqr+Q=\n \u003c/ds:X509Certificate\u003e\n \u003c/ds:X509Data\u003e\n \u003c/ds:KeyInfo\u003e\n \u003c/md:KeyDescriptor\u003e\n \u003c/md:IDPSSODescriptor\u003e\n\u003c/md:EntityDescriptor\u003e\n","fieldsMap":{"email":["emailaddress","nameidentifier"],"family_name":"surname","name":["name","nameidentifier"]},"requestTemplate":"\u003csamlp:AuthnRequest xmlns:samlp=\"urn:oasis:names:tc:SAML:2.0:protocol\"\n@@AssertServiceURLAndDestination@@\n ID=\"@@ID@@\"\n IssueInstant=\"@@IssueInstant@@\"\n ProtocolBinding=\"@@ProtocolBinding@@\" Version=\"2.0\"\u003e\n \u003csaml:Issuer xmlns:saml=\"urn:oasis:names:tc:SAML:2.0:assertion\"\u003e@@Issuer@@\u003c/saml:Issuer\u003e\n\u003c/samlp:AuthnRequest\u003e","user_id_attribute":"https://saml.provider/imi/ns/identity-200810","icon_url":"https://example.com/logo.svg","upstream_params":{"screen_name":{"alias":"login_hint"}}}} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.10.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections method: POST response: @@ -30,33 +30,32 @@ interactions: trailer: {} content_length: -1 uncompressed: false - body: '{"id":"con_GFRkNPx9npSLye37","options":{"idpinitiated":{"client_id":"client_id","client_protocol":"samlp","client_authorizequery":"type=code&timeout=30","enabled":true},"signing_key":{"key":"-----BEGIN PRIVATE KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n","cert":"-----BEGIN PUBLIC KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n"},"decryptionKey":{"key":"-----BEGIN PRIVATE KEY-----\n...{your private key here}...\n-----END PRIVATE KEY-----","cert":"-----BEGIN CERTIFICATE-----\n...{your public key cert here}...\n-----END CERTIFICATE-----"},"protocolBinding":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST","tenant_domain":"example.com","domain_aliases":["example.com","example.coz"],"disableSignout":false,"signatureAlgorithm":"rsa-sha256","digestAlgorithm":"sha256","fieldsMap":{"email":["emailaddress","nameidentifier"],"family_name":"surname","name":["name","nameidentifier"]},"requestTemplate":"\n @@Issuer@@\n","user_id_attribute":"https://saml.provider/imi/ns/identity-200810","icon_url":"https://example.com/logo.svg","upstream_params":{"screen_name":{"alias":"login_hint"}},"signingCert":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUR0VENDQXAyZ0F3SUJBZ0lKQU1LUi9Oc3lmY2F6TUEwR0NTcUdTSWIzRFFFQkJRVUFNRVV4Q3pBSkJnTlYKQkFZVEFrRlZNUk13RVFZRFZRUUlFd3BUYjIxbExWTjBZWFJsTVNFd0h3WURWUVFLRXhoSmJuUmxjbTVsZENCWAphV1JuYVhSeklGQjBlU0JNZEdRd0hoY05NVEl4TVRFeU1qTTBNelF4V2hjTk1UWXhNakl4TWpNME16UXhXakJGCk1Rc3dDUVlEVlFRR0V3SkJWVEVUTUJFR0ExVUVDQk1LVTI5dFpTMVRkR0YwWlRFaE1COEdBMVVFQ2hNWVNXNTAKWlhKdVpYUWdWMmxrWjJsMGN5QlFkSGtnVEhSa01JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQgpDZ0tDQVFFQXZ0SDR3S0xZbElYWmxmWVFGSnRYWlZDM2ZEOFhNYXJ6d3ZiL2ZIVXlKNk52TlN0TitIN0dIcDMvClFoWmJTYVJ5cUs1aHU1eFh0RkxnbkkwUUc4b0UxTmxYYmN6akg0NUxlSFdoUElkYzJ1SFNwelhpYzc4a091Z00KWTF2bmc0SjEwUEY2K1QyRk5haXYwaVhlSVFxOXhid3dQWXBmbFZpUXlKbnpHQ0laN1ZHYW42R2JSS3p5VEtjQgo1OHl4MjRwSnErQ3ZpTFhFWTUyVElXMWw1aW1jakd2THRsQ3AxemE5cUJaYTRYR29WcUhpMWtSWGtkRFNIdHk2CmxaV2ozS3hvUnZUYmlhQkNIKzc1VTdyaWZTNmZSOWxxaldFNTdiQ0dvejcrQkJ1OVltUEt0STFLa3lIRnFXcHgKYUpjL0FLZjl4Z2crVXVtZXFWY2lyVW1Bc0hKck13SURBUUFCbzRHbk1JR2tNQjBHQTFVZERnUVdCQlRzODNuawpMdG9YRmxtQlV0czNFSXhjVnZrdmNqQjFCZ05WSFNNRWJqQnNnQlRzODNua0x0b1hGbG1CVXRzM0VJeGNWdmt2CmNxRkpwRWN3UlRFTE1Ba0dBMVVFQmhNQ1FWVXhFekFSQmdOVkJBZ1RDbE52YldVdFUzUmhkR1V4SVRBZkJnTlYKQkFvVEdFbHVkR1Z5Ym1WMElGZHBaR2RwZEhNZ1VIUjVJRXgwWklJSkFNS1IvTnN5ZmNhek1Bd0dBMVVkRXdRRgpNQU1CQWY4d0RRWUpLb1pJaHZjTkFRRUZCUUFEZ2dFQkFCdzd3LzVrNGQ1ZFZEZ2QvT09PbVhkYWFDSUt2dDdkCjNudGx2MVNTdkFvS1Q4ZDhsdDk3RG01UnJtZWZCSTEzSTJ5aXZaZzViZlRnZTQrdkFWNlZkTEZkV2VGcDFiL0YKT1prWVV2NkE4bzVIVzBPV1FZVlgyNnpJcUJjRzJRcm0zcmVpU2w1Qkx2cGoxV1NwQ3NZdnM1a2FPNHZGcE1hawovSUNnZFpEK3J4d3hmOFZiLzZmbnRLeXdXU0xnd0tIM21KK1owa1JscHExZzFvaWVpT20xL2dwWjM1czBZdW9yClhaYmE5cHRmTENZU2dnZy9xYzNkM2QwdGJIcGxLWWt3Rm03ZjVPUkdIRFNENVNKbStnSTdSUEUrNGJPOHE3OVIKUEFmYkcxVUd1SjBiL29pZ2FnY2lIaEpwODUxU1FSWWYzSnVOU2MxN0JuSzJMNUlFdHpqcXIrUT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","signInEndpoint":"https://saml-from-metadata-xml.provider/sign_in","signOutEndpoint":"https://saml-from-metadata-xml.provider/sign_out","bindingMethod":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect","expires":"2016-12-21T23:43:41.000Z","subject":{"countryName":"AU","stateOrProvinceName":"Some-State","organizationName":"Internet Widgits Pty Ltd"},"thumbprints":["499fdf1c2218a99c8595aac2fd95ce36f0a6d59d"],"cert":"-----BEGIN CERTIFICATE-----\nMIIDtTCCAp2gAwIBAgIJAMKR/NsyfcazMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV\nBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBX\naWRnaXRzIFB0eSBMdGQwHhcNMTIxMTEyMjM0MzQxWhcNMTYxMjIxMjM0MzQxWjBF\nMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50\nZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEAvtH4wKLYlIXZlfYQFJtXZVC3fD8XMarzwvb/fHUyJ6NvNStN+H7GHp3/\nQhZbSaRyqK5hu5xXtFLgnI0QG8oE1NlXbczjH45LeHWhPIdc2uHSpzXic78kOugM\nY1vng4J10PF6+T2FNaiv0iXeIQq9xbwwPYpflViQyJnzGCIZ7VGan6GbRKzyTKcB\n58yx24pJq+CviLXEY52TIW1l5imcjGvLtlCp1za9qBZa4XGoVqHi1kRXkdDSHty6\nlZWj3KxoRvTbiaBCH+75U7rifS6fR9lqjWE57bCGoz7+BBu9YmPKtI1KkyHFqWpx\naJc/AKf9xgg+UumeqVcirUmAsHJrMwIDAQABo4GnMIGkMB0GA1UdDgQWBBTs83nk\nLtoXFlmBUts3EIxcVvkvcjB1BgNVHSMEbjBsgBTs83nkLtoXFlmBUts3EIxcVvkv\ncqFJpEcwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgTClNvbWUtU3RhdGUxITAfBgNV\nBAoTGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZIIJAMKR/NsyfcazMAwGA1UdEwQF\nMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBABw7w/5k4d5dVDgd/OOOmXdaaCIKvt7d\n3ntlv1SSvAoKT8d8lt97Dm5RrmefBI13I2yivZg5bfTge4+vAV6VdLFdWeFp1b/F\nOZkYUv6A8o5HW0OWQYVX26zIqBcG2Qrm3reiSl5BLvpj1WSpCsYvs5kaO4vFpMak\n/ICgdZD+rxwxf8Vb/6fntKywWSLgwKH3mJ+Z0kRlpq1g1oieiOm1/gpZ35s0Yuor\nXZba9ptfLCYSggg/qc3d3d0tbHplKYkwFm7f5ORGHDSD5SJm+gI7RPE+4bO8q79R\nPAfbG1UGuJ0b/oigagciHhJp851SQRYf3JuNSc17BnK2L5IEtzjqr+Q=\n-----END CERTIFICATE-----\n"},"strategy":"samlp","name":"Acceptance-Test-SAML-TestAccConnectionSAML","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/samlp/qay8JLZX","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SAML-TestAccConnectionSAML","enabled_clients":[],"realms":["Acceptance-Test-SAML-TestAccConnectionSAML"]}' + body: '{"id":"con_AooOEYitZrAAaqEa","options":{"strategy_version":2,"idpinitiated":{"client_id":"client_id","client_protocol":"samlp","client_authorizequery":"type=code&timeout=30","enabled":true},"signing_key":{"key":"-----BEGIN PRIVATE KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n","cert":"-----BEGIN PUBLIC KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n"},"decryptionKey":{"key":"-----BEGIN PRIVATE KEY-----\n...{your private key here}...\n-----END PRIVATE KEY-----","cert":"-----BEGIN CERTIFICATE-----\n...{your public key cert here}...\n-----END CERTIFICATE-----"},"protocolBinding":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST","tenant_domain":"example.com","domain_aliases":["example.com","example.coz"],"disableSignout":false,"signatureAlgorithm":"rsa-sha256","digestAlgorithm":"sha256","fieldsMap":{"email":["emailaddress","nameidentifier"],"family_name":"surname","name":["name","nameidentifier"]},"requestTemplate":"\n @@Issuer@@\n","user_id_attribute":"https://saml.provider/imi/ns/identity-200810","icon_url":"https://example.com/logo.svg","upstream_params":{"screen_name":{"alias":"login_hint"}},"signingCert":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUR0VENDQXAyZ0F3SUJBZ0lKQU1LUi9Oc3lmY2F6TUEwR0NTcUdTSWIzRFFFQkJRVUFNRVV4Q3pBSkJnTlYKQkFZVEFrRlZNUk13RVFZRFZRUUlFd3BUYjIxbExWTjBZWFJsTVNFd0h3WURWUVFLRXhoSmJuUmxjbTVsZENCWAphV1JuYVhSeklGQjBlU0JNZEdRd0hoY05NVEl4TVRFeU1qTTBNelF4V2hjTk1UWXhNakl4TWpNME16UXhXakJGCk1Rc3dDUVlEVlFRR0V3SkJWVEVUTUJFR0ExVUVDQk1LVTI5dFpTMVRkR0YwWlRFaE1COEdBMVVFQ2hNWVNXNTAKWlhKdVpYUWdWMmxrWjJsMGN5QlFkSGtnVEhSa01JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQgpDZ0tDQVFFQXZ0SDR3S0xZbElYWmxmWVFGSnRYWlZDM2ZEOFhNYXJ6d3ZiL2ZIVXlKNk52TlN0TitIN0dIcDMvClFoWmJTYVJ5cUs1aHU1eFh0RkxnbkkwUUc4b0UxTmxYYmN6akg0NUxlSFdoUElkYzJ1SFNwelhpYzc4a091Z00KWTF2bmc0SjEwUEY2K1QyRk5haXYwaVhlSVFxOXhid3dQWXBmbFZpUXlKbnpHQ0laN1ZHYW42R2JSS3p5VEtjQgo1OHl4MjRwSnErQ3ZpTFhFWTUyVElXMWw1aW1jakd2THRsQ3AxemE5cUJaYTRYR29WcUhpMWtSWGtkRFNIdHk2CmxaV2ozS3hvUnZUYmlhQkNIKzc1VTdyaWZTNmZSOWxxaldFNTdiQ0dvejcrQkJ1OVltUEt0STFLa3lIRnFXcHgKYUpjL0FLZjl4Z2crVXVtZXFWY2lyVW1Bc0hKck13SURBUUFCbzRHbk1JR2tNQjBHQTFVZERnUVdCQlRzODNuawpMdG9YRmxtQlV0czNFSXhjVnZrdmNqQjFCZ05WSFNNRWJqQnNnQlRzODNua0x0b1hGbG1CVXRzM0VJeGNWdmt2CmNxRkpwRWN3UlRFTE1Ba0dBMVVFQmhNQ1FWVXhFekFSQmdOVkJBZ1RDbE52YldVdFUzUmhkR1V4SVRBZkJnTlYKQkFvVEdFbHVkR1Z5Ym1WMElGZHBaR2RwZEhNZ1VIUjVJRXgwWklJSkFNS1IvTnN5ZmNhek1Bd0dBMVVkRXdRRgpNQU1CQWY4d0RRWUpLb1pJaHZjTkFRRUZCUUFEZ2dFQkFCdzd3LzVrNGQ1ZFZEZ2QvT09PbVhkYWFDSUt2dDdkCjNudGx2MVNTdkFvS1Q4ZDhsdDk3RG01UnJtZWZCSTEzSTJ5aXZaZzViZlRnZTQrdkFWNlZkTEZkV2VGcDFiL0YKT1prWVV2NkE4bzVIVzBPV1FZVlgyNnpJcUJjRzJRcm0zcmVpU2w1Qkx2cGoxV1NwQ3NZdnM1a2FPNHZGcE1hawovSUNnZFpEK3J4d3hmOFZiLzZmbnRLeXdXU0xnd0tIM21KK1owa1JscHExZzFvaWVpT20xL2dwWjM1czBZdW9yClhaYmE5cHRmTENZU2dnZy9xYzNkM2QwdGJIcGxLWWt3Rm03ZjVPUkdIRFNENVNKbStnSTdSUEUrNGJPOHE3OVIKUEFmYkcxVUd1SjBiL29pZ2FnY2lIaEpwODUxU1FSWWYzSnVOU2MxN0JuSzJMNUlFdHpqcXIrUT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","signInEndpoint":"https://saml-from-metadata-xml.provider/sign_in","signOutEndpoint":"https://saml-from-metadata-xml.provider/sign_out","bindingMethod":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect","expires":"2016-12-21T23:43:41.000Z","subject":{"countryName":"AU","stateOrProvinceName":"Some-State","organizationName":"Internet Widgits Pty Ltd"},"thumbprints":["499fdf1c2218a99c8595aac2fd95ce36f0a6d59d"],"cert":"-----BEGIN CERTIFICATE-----\nMIIDtTCCAp2gAwIBAgIJAMKR/NsyfcazMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV\nBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBX\naWRnaXRzIFB0eSBMdGQwHhcNMTIxMTEyMjM0MzQxWhcNMTYxMjIxMjM0MzQxWjBF\nMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50\nZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEAvtH4wKLYlIXZlfYQFJtXZVC3fD8XMarzwvb/fHUyJ6NvNStN+H7GHp3/\nQhZbSaRyqK5hu5xXtFLgnI0QG8oE1NlXbczjH45LeHWhPIdc2uHSpzXic78kOugM\nY1vng4J10PF6+T2FNaiv0iXeIQq9xbwwPYpflViQyJnzGCIZ7VGan6GbRKzyTKcB\n58yx24pJq+CviLXEY52TIW1l5imcjGvLtlCp1za9qBZa4XGoVqHi1kRXkdDSHty6\nlZWj3KxoRvTbiaBCH+75U7rifS6fR9lqjWE57bCGoz7+BBu9YmPKtI1KkyHFqWpx\naJc/AKf9xgg+UumeqVcirUmAsHJrMwIDAQABo4GnMIGkMB0GA1UdDgQWBBTs83nk\nLtoXFlmBUts3EIxcVvkvcjB1BgNVHSMEbjBsgBTs83nkLtoXFlmBUts3EIxcVvkv\ncqFJpEcwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgTClNvbWUtU3RhdGUxITAfBgNV\nBAoTGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZIIJAMKR/NsyfcazMAwGA1UdEwQF\nMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBABw7w/5k4d5dVDgd/OOOmXdaaCIKvt7d\n3ntlv1SSvAoKT8d8lt97Dm5RrmefBI13I2yivZg5bfTge4+vAV6VdLFdWeFp1b/F\nOZkYUv6A8o5HW0OWQYVX26zIqBcG2Qrm3reiSl5BLvpj1WSpCsYvs5kaO4vFpMak\n/ICgdZD+rxwxf8Vb/6fntKywWSLgwKH3mJ+Z0kRlpq1g1oieiOm1/gpZ35s0Yuor\nXZba9ptfLCYSggg/qc3d3d0tbHplKYkwFm7f5ORGHDSD5SJm+gI7RPE+4bO8q79R\nPAfbG1UGuJ0b/oigagciHhJp851SQRYf3JuNSc17BnK2L5IEtzjqr+Q=\n-----END CERTIFICATE-----\n"},"strategy":"samlp","name":"Acceptance-Test-SAML-TestAccConnectionSAML","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/samlp/VWBSra6g","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SAML-TestAccConnectionSAML","enabled_clients":[],"realms":["Acceptance-Test-SAML-TestAccConnectionSAML"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 153.796916ms + duration: 261.7875ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_GFRkNPx9npSLye37 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_AooOEYitZrAAaqEa method: GET response: proto: HTTP/2.0 @@ -66,33 +65,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_GFRkNPx9npSLye37","options":{"cert":"-----BEGIN CERTIFICATE-----\nMIIDtTCCAp2gAwIBAgIJAMKR/NsyfcazMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV\nBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBX\naWRnaXRzIFB0eSBMdGQwHhcNMTIxMTEyMjM0MzQxWhcNMTYxMjIxMjM0MzQxWjBF\nMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50\nZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEAvtH4wKLYlIXZlfYQFJtXZVC3fD8XMarzwvb/fHUyJ6NvNStN+H7GHp3/\nQhZbSaRyqK5hu5xXtFLgnI0QG8oE1NlXbczjH45LeHWhPIdc2uHSpzXic78kOugM\nY1vng4J10PF6+T2FNaiv0iXeIQq9xbwwPYpflViQyJnzGCIZ7VGan6GbRKzyTKcB\n58yx24pJq+CviLXEY52TIW1l5imcjGvLtlCp1za9qBZa4XGoVqHi1kRXkdDSHty6\nlZWj3KxoRvTbiaBCH+75U7rifS6fR9lqjWE57bCGoz7+BBu9YmPKtI1KkyHFqWpx\naJc/AKf9xgg+UumeqVcirUmAsHJrMwIDAQABo4GnMIGkMB0GA1UdDgQWBBTs83nk\nLtoXFlmBUts3EIxcVvkvcjB1BgNVHSMEbjBsgBTs83nkLtoXFlmBUts3EIxcVvkv\ncqFJpEcwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgTClNvbWUtU3RhdGUxITAfBgNV\nBAoTGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZIIJAMKR/NsyfcazMAwGA1UdEwQF\nMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBABw7w/5k4d5dVDgd/OOOmXdaaCIKvt7d\n3ntlv1SSvAoKT8d8lt97Dm5RrmefBI13I2yivZg5bfTge4+vAV6VdLFdWeFp1b/F\nOZkYUv6A8o5HW0OWQYVX26zIqBcG2Qrm3reiSl5BLvpj1WSpCsYvs5kaO4vFpMak\n/ICgdZD+rxwxf8Vb/6fntKywWSLgwKH3mJ+Z0kRlpq1g1oieiOm1/gpZ35s0Yuor\nXZba9ptfLCYSggg/qc3d3d0tbHplKYkwFm7f5ORGHDSD5SJm+gI7RPE+4bO8q79R\nPAfbG1UGuJ0b/oigagciHhJp851SQRYf3JuNSc17BnK2L5IEtzjqr+Q=\n-----END CERTIFICATE-----\n","expires":"2016-12-21T23:43:41.000Z","subject":{"countryName":"AU","organizationName":"Internet Widgits Pty Ltd","stateOrProvinceName":"Some-State"},"icon_url":"https://example.com/logo.svg","fieldsMap":{"name":["name","nameidentifier"],"email":["emailaddress","nameidentifier"],"family_name":"surname"},"signingCert":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUR0VENDQXAyZ0F3SUJBZ0lKQU1LUi9Oc3lmY2F6TUEwR0NTcUdTSWIzRFFFQkJRVUFNRVV4Q3pBSkJnTlYKQkFZVEFrRlZNUk13RVFZRFZRUUlFd3BUYjIxbExWTjBZWFJsTVNFd0h3WURWUVFLRXhoSmJuUmxjbTVsZENCWAphV1JuYVhSeklGQjBlU0JNZEdRd0hoY05NVEl4TVRFeU1qTTBNelF4V2hjTk1UWXhNakl4TWpNME16UXhXakJGCk1Rc3dDUVlEVlFRR0V3SkJWVEVUTUJFR0ExVUVDQk1LVTI5dFpTMVRkR0YwWlRFaE1COEdBMVVFQ2hNWVNXNTAKWlhKdVpYUWdWMmxrWjJsMGN5QlFkSGtnVEhSa01JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQgpDZ0tDQVFFQXZ0SDR3S0xZbElYWmxmWVFGSnRYWlZDM2ZEOFhNYXJ6d3ZiL2ZIVXlKNk52TlN0TitIN0dIcDMvClFoWmJTYVJ5cUs1aHU1eFh0RkxnbkkwUUc4b0UxTmxYYmN6akg0NUxlSFdoUElkYzJ1SFNwelhpYzc4a091Z00KWTF2bmc0SjEwUEY2K1QyRk5haXYwaVhlSVFxOXhid3dQWXBmbFZpUXlKbnpHQ0laN1ZHYW42R2JSS3p5VEtjQgo1OHl4MjRwSnErQ3ZpTFhFWTUyVElXMWw1aW1jakd2THRsQ3AxemE5cUJaYTRYR29WcUhpMWtSWGtkRFNIdHk2CmxaV2ozS3hvUnZUYmlhQkNIKzc1VTdyaWZTNmZSOWxxaldFNTdiQ0dvejcrQkJ1OVltUEt0STFLa3lIRnFXcHgKYUpjL0FLZjl4Z2crVXVtZXFWY2lyVW1Bc0hKck13SURBUUFCbzRHbk1JR2tNQjBHQTFVZERnUVdCQlRzODNuawpMdG9YRmxtQlV0czNFSXhjVnZrdmNqQjFCZ05WSFNNRWJqQnNnQlRzODNua0x0b1hGbG1CVXRzM0VJeGNWdmt2CmNxRkpwRWN3UlRFTE1Ba0dBMVVFQmhNQ1FWVXhFekFSQmdOVkJBZ1RDbE52YldVdFUzUmhkR1V4SVRBZkJnTlYKQkFvVEdFbHVkR1Z5Ym1WMElGZHBaR2RwZEhNZ1VIUjVJRXgwWklJSkFNS1IvTnN5ZmNhek1Bd0dBMVVkRXdRRgpNQU1CQWY4d0RRWUpLb1pJaHZjTkFRRUZCUUFEZ2dFQkFCdzd3LzVrNGQ1ZFZEZ2QvT09PbVhkYWFDSUt2dDdkCjNudGx2MVNTdkFvS1Q4ZDhsdDk3RG01UnJtZWZCSTEzSTJ5aXZaZzViZlRnZTQrdkFWNlZkTEZkV2VGcDFiL0YKT1prWVV2NkE4bzVIVzBPV1FZVlgyNnpJcUJjRzJRcm0zcmVpU2w1Qkx2cGoxV1NwQ3NZdnM1a2FPNHZGcE1hawovSUNnZFpEK3J4d3hmOFZiLzZmbnRLeXdXU0xnd0tIM21KK1owa1JscHExZzFvaWVpT20xL2dwWjM1czBZdW9yClhaYmE5cHRmTENZU2dnZy9xYzNkM2QwdGJIcGxLWWt3Rm03ZjVPUkdIRFNENVNKbStnSTdSUEUrNGJPOHE3OVIKUEFmYkcxVUd1SjBiL29pZ2FnY2lIaEpwODUxU1FSWWYzSnVOU2MxN0JuSzJMNUlFdHpqcXIrUT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","signing_key":{"key":"-----BEGIN PRIVATE KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n","cert":"-----BEGIN PUBLIC KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n"},"thumbprints":["499fdf1c2218a99c8595aac2fd95ce36f0a6d59d"],"idpinitiated":{"enabled":true,"client_id":"client_id","client_protocol":"samlp","client_authorizequery":"type=code&timeout=30"},"bindingMethod":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect","decryptionKey":{"key":"-----BEGIN PRIVATE KEY-----\n...{your private key here}...\n-----END PRIVATE KEY-----","cert":"-----BEGIN CERTIFICATE-----\n...{your public key cert here}...\n-----END CERTIFICATE-----"},"tenant_domain":"example.com","disableSignout":false,"domain_aliases":["example.com","example.coz"],"signInEndpoint":"https://saml-from-metadata-xml.provider/sign_in","digestAlgorithm":"sha256","protocolBinding":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST","requestTemplate":"\n @@Issuer@@\n","signOutEndpoint":"https://saml-from-metadata-xml.provider/sign_out","upstream_params":{"screen_name":{"alias":"login_hint"}},"user_id_attribute":"https://saml.provider/imi/ns/identity-200810","signatureAlgorithm":"rsa-sha256"},"strategy":"samlp","name":"Acceptance-Test-SAML-TestAccConnectionSAML","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/samlp/qay8JLZX","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SAML-TestAccConnectionSAML","enabled_clients":[],"realms":["Acceptance-Test-SAML-TestAccConnectionSAML"]}' + body: '{"id":"con_AooOEYitZrAAaqEa","options":{"cert":"-----BEGIN CERTIFICATE-----\nMIIDtTCCAp2gAwIBAgIJAMKR/NsyfcazMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV\nBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBX\naWRnaXRzIFB0eSBMdGQwHhcNMTIxMTEyMjM0MzQxWhcNMTYxMjIxMjM0MzQxWjBF\nMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50\nZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEAvtH4wKLYlIXZlfYQFJtXZVC3fD8XMarzwvb/fHUyJ6NvNStN+H7GHp3/\nQhZbSaRyqK5hu5xXtFLgnI0QG8oE1NlXbczjH45LeHWhPIdc2uHSpzXic78kOugM\nY1vng4J10PF6+T2FNaiv0iXeIQq9xbwwPYpflViQyJnzGCIZ7VGan6GbRKzyTKcB\n58yx24pJq+CviLXEY52TIW1l5imcjGvLtlCp1za9qBZa4XGoVqHi1kRXkdDSHty6\nlZWj3KxoRvTbiaBCH+75U7rifS6fR9lqjWE57bCGoz7+BBu9YmPKtI1KkyHFqWpx\naJc/AKf9xgg+UumeqVcirUmAsHJrMwIDAQABo4GnMIGkMB0GA1UdDgQWBBTs83nk\nLtoXFlmBUts3EIxcVvkvcjB1BgNVHSMEbjBsgBTs83nkLtoXFlmBUts3EIxcVvkv\ncqFJpEcwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgTClNvbWUtU3RhdGUxITAfBgNV\nBAoTGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZIIJAMKR/NsyfcazMAwGA1UdEwQF\nMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBABw7w/5k4d5dVDgd/OOOmXdaaCIKvt7d\n3ntlv1SSvAoKT8d8lt97Dm5RrmefBI13I2yivZg5bfTge4+vAV6VdLFdWeFp1b/F\nOZkYUv6A8o5HW0OWQYVX26zIqBcG2Qrm3reiSl5BLvpj1WSpCsYvs5kaO4vFpMak\n/ICgdZD+rxwxf8Vb/6fntKywWSLgwKH3mJ+Z0kRlpq1g1oieiOm1/gpZ35s0Yuor\nXZba9ptfLCYSggg/qc3d3d0tbHplKYkwFm7f5ORGHDSD5SJm+gI7RPE+4bO8q79R\nPAfbG1UGuJ0b/oigagciHhJp851SQRYf3JuNSc17BnK2L5IEtzjqr+Q=\n-----END CERTIFICATE-----\n","expires":"2016-12-21T23:43:41.000Z","subject":{"countryName":"AU","organizationName":"Internet Widgits Pty Ltd","stateOrProvinceName":"Some-State"},"icon_url":"https://example.com/logo.svg","fieldsMap":{"name":["name","nameidentifier"],"email":["emailaddress","nameidentifier"],"family_name":"surname"},"signingCert":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUR0VENDQXAyZ0F3SUJBZ0lKQU1LUi9Oc3lmY2F6TUEwR0NTcUdTSWIzRFFFQkJRVUFNRVV4Q3pBSkJnTlYKQkFZVEFrRlZNUk13RVFZRFZRUUlFd3BUYjIxbExWTjBZWFJsTVNFd0h3WURWUVFLRXhoSmJuUmxjbTVsZENCWAphV1JuYVhSeklGQjBlU0JNZEdRd0hoY05NVEl4TVRFeU1qTTBNelF4V2hjTk1UWXhNakl4TWpNME16UXhXakJGCk1Rc3dDUVlEVlFRR0V3SkJWVEVUTUJFR0ExVUVDQk1LVTI5dFpTMVRkR0YwWlRFaE1COEdBMVVFQ2hNWVNXNTAKWlhKdVpYUWdWMmxrWjJsMGN5QlFkSGtnVEhSa01JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQgpDZ0tDQVFFQXZ0SDR3S0xZbElYWmxmWVFGSnRYWlZDM2ZEOFhNYXJ6d3ZiL2ZIVXlKNk52TlN0TitIN0dIcDMvClFoWmJTYVJ5cUs1aHU1eFh0RkxnbkkwUUc4b0UxTmxYYmN6akg0NUxlSFdoUElkYzJ1SFNwelhpYzc4a091Z00KWTF2bmc0SjEwUEY2K1QyRk5haXYwaVhlSVFxOXhid3dQWXBmbFZpUXlKbnpHQ0laN1ZHYW42R2JSS3p5VEtjQgo1OHl4MjRwSnErQ3ZpTFhFWTUyVElXMWw1aW1jakd2THRsQ3AxemE5cUJaYTRYR29WcUhpMWtSWGtkRFNIdHk2CmxaV2ozS3hvUnZUYmlhQkNIKzc1VTdyaWZTNmZSOWxxaldFNTdiQ0dvejcrQkJ1OVltUEt0STFLa3lIRnFXcHgKYUpjL0FLZjl4Z2crVXVtZXFWY2lyVW1Bc0hKck13SURBUUFCbzRHbk1JR2tNQjBHQTFVZERnUVdCQlRzODNuawpMdG9YRmxtQlV0czNFSXhjVnZrdmNqQjFCZ05WSFNNRWJqQnNnQlRzODNua0x0b1hGbG1CVXRzM0VJeGNWdmt2CmNxRkpwRWN3UlRFTE1Ba0dBMVVFQmhNQ1FWVXhFekFSQmdOVkJBZ1RDbE52YldVdFUzUmhkR1V4SVRBZkJnTlYKQkFvVEdFbHVkR1Z5Ym1WMElGZHBaR2RwZEhNZ1VIUjVJRXgwWklJSkFNS1IvTnN5ZmNhek1Bd0dBMVVkRXdRRgpNQU1CQWY4d0RRWUpLb1pJaHZjTkFRRUZCUUFEZ2dFQkFCdzd3LzVrNGQ1ZFZEZ2QvT09PbVhkYWFDSUt2dDdkCjNudGx2MVNTdkFvS1Q4ZDhsdDk3RG01UnJtZWZCSTEzSTJ5aXZaZzViZlRnZTQrdkFWNlZkTEZkV2VGcDFiL0YKT1prWVV2NkE4bzVIVzBPV1FZVlgyNnpJcUJjRzJRcm0zcmVpU2w1Qkx2cGoxV1NwQ3NZdnM1a2FPNHZGcE1hawovSUNnZFpEK3J4d3hmOFZiLzZmbnRLeXdXU0xnd0tIM21KK1owa1JscHExZzFvaWVpT20xL2dwWjM1czBZdW9yClhaYmE5cHRmTENZU2dnZy9xYzNkM2QwdGJIcGxLWWt3Rm03ZjVPUkdIRFNENVNKbStnSTdSUEUrNGJPOHE3OVIKUEFmYkcxVUd1SjBiL29pZ2FnY2lIaEpwODUxU1FSWWYzSnVOU2MxN0JuSzJMNUlFdHpqcXIrUT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","signing_key":{"key":"-----BEGIN PRIVATE KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n","cert":"-----BEGIN PUBLIC KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n"},"thumbprints":["499fdf1c2218a99c8595aac2fd95ce36f0a6d59d"],"idpinitiated":{"enabled":true,"client_id":"client_id","client_protocol":"samlp","client_authorizequery":"type=code&timeout=30"},"bindingMethod":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect","decryptionKey":{"key":"-----BEGIN PRIVATE KEY-----\n...{your private key here}...\n-----END PRIVATE KEY-----","cert":"-----BEGIN CERTIFICATE-----\n...{your public key cert here}...\n-----END CERTIFICATE-----"},"tenant_domain":"example.com","disableSignout":false,"domain_aliases":["example.com","example.coz"],"signInEndpoint":"https://saml-from-metadata-xml.provider/sign_in","digestAlgorithm":"sha256","protocolBinding":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST","requestTemplate":"\n @@Issuer@@\n","signOutEndpoint":"https://saml-from-metadata-xml.provider/sign_out","upstream_params":{"screen_name":{"alias":"login_hint"}},"strategy_version":2,"user_id_attribute":"https://saml.provider/imi/ns/identity-200810","signatureAlgorithm":"rsa-sha256"},"strategy":"samlp","name":"Acceptance-Test-SAML-TestAccConnectionSAML","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/samlp/VWBSra6g","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SAML-TestAccConnectionSAML","enabled_clients":[],"realms":["Acceptance-Test-SAML-TestAccConnectionSAML"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.59225ms + duration: 145.826125ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_GFRkNPx9npSLye37 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_AooOEYitZrAAaqEa method: GET response: proto: HTTP/2.0 @@ -102,33 +100,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_GFRkNPx9npSLye37","options":{"cert":"-----BEGIN CERTIFICATE-----\nMIIDtTCCAp2gAwIBAgIJAMKR/NsyfcazMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV\nBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBX\naWRnaXRzIFB0eSBMdGQwHhcNMTIxMTEyMjM0MzQxWhcNMTYxMjIxMjM0MzQxWjBF\nMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50\nZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEAvtH4wKLYlIXZlfYQFJtXZVC3fD8XMarzwvb/fHUyJ6NvNStN+H7GHp3/\nQhZbSaRyqK5hu5xXtFLgnI0QG8oE1NlXbczjH45LeHWhPIdc2uHSpzXic78kOugM\nY1vng4J10PF6+T2FNaiv0iXeIQq9xbwwPYpflViQyJnzGCIZ7VGan6GbRKzyTKcB\n58yx24pJq+CviLXEY52TIW1l5imcjGvLtlCp1za9qBZa4XGoVqHi1kRXkdDSHty6\nlZWj3KxoRvTbiaBCH+75U7rifS6fR9lqjWE57bCGoz7+BBu9YmPKtI1KkyHFqWpx\naJc/AKf9xgg+UumeqVcirUmAsHJrMwIDAQABo4GnMIGkMB0GA1UdDgQWBBTs83nk\nLtoXFlmBUts3EIxcVvkvcjB1BgNVHSMEbjBsgBTs83nkLtoXFlmBUts3EIxcVvkv\ncqFJpEcwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgTClNvbWUtU3RhdGUxITAfBgNV\nBAoTGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZIIJAMKR/NsyfcazMAwGA1UdEwQF\nMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBABw7w/5k4d5dVDgd/OOOmXdaaCIKvt7d\n3ntlv1SSvAoKT8d8lt97Dm5RrmefBI13I2yivZg5bfTge4+vAV6VdLFdWeFp1b/F\nOZkYUv6A8o5HW0OWQYVX26zIqBcG2Qrm3reiSl5BLvpj1WSpCsYvs5kaO4vFpMak\n/ICgdZD+rxwxf8Vb/6fntKywWSLgwKH3mJ+Z0kRlpq1g1oieiOm1/gpZ35s0Yuor\nXZba9ptfLCYSggg/qc3d3d0tbHplKYkwFm7f5ORGHDSD5SJm+gI7RPE+4bO8q79R\nPAfbG1UGuJ0b/oigagciHhJp851SQRYf3JuNSc17BnK2L5IEtzjqr+Q=\n-----END CERTIFICATE-----\n","expires":"2016-12-21T23:43:41.000Z","subject":{"countryName":"AU","organizationName":"Internet Widgits Pty Ltd","stateOrProvinceName":"Some-State"},"icon_url":"https://example.com/logo.svg","fieldsMap":{"name":["name","nameidentifier"],"email":["emailaddress","nameidentifier"],"family_name":"surname"},"signingCert":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUR0VENDQXAyZ0F3SUJBZ0lKQU1LUi9Oc3lmY2F6TUEwR0NTcUdTSWIzRFFFQkJRVUFNRVV4Q3pBSkJnTlYKQkFZVEFrRlZNUk13RVFZRFZRUUlFd3BUYjIxbExWTjBZWFJsTVNFd0h3WURWUVFLRXhoSmJuUmxjbTVsZENCWAphV1JuYVhSeklGQjBlU0JNZEdRd0hoY05NVEl4TVRFeU1qTTBNelF4V2hjTk1UWXhNakl4TWpNME16UXhXakJGCk1Rc3dDUVlEVlFRR0V3SkJWVEVUTUJFR0ExVUVDQk1LVTI5dFpTMVRkR0YwWlRFaE1COEdBMVVFQ2hNWVNXNTAKWlhKdVpYUWdWMmxrWjJsMGN5QlFkSGtnVEhSa01JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQgpDZ0tDQVFFQXZ0SDR3S0xZbElYWmxmWVFGSnRYWlZDM2ZEOFhNYXJ6d3ZiL2ZIVXlKNk52TlN0TitIN0dIcDMvClFoWmJTYVJ5cUs1aHU1eFh0RkxnbkkwUUc4b0UxTmxYYmN6akg0NUxlSFdoUElkYzJ1SFNwelhpYzc4a091Z00KWTF2bmc0SjEwUEY2K1QyRk5haXYwaVhlSVFxOXhid3dQWXBmbFZpUXlKbnpHQ0laN1ZHYW42R2JSS3p5VEtjQgo1OHl4MjRwSnErQ3ZpTFhFWTUyVElXMWw1aW1jakd2THRsQ3AxemE5cUJaYTRYR29WcUhpMWtSWGtkRFNIdHk2CmxaV2ozS3hvUnZUYmlhQkNIKzc1VTdyaWZTNmZSOWxxaldFNTdiQ0dvejcrQkJ1OVltUEt0STFLa3lIRnFXcHgKYUpjL0FLZjl4Z2crVXVtZXFWY2lyVW1Bc0hKck13SURBUUFCbzRHbk1JR2tNQjBHQTFVZERnUVdCQlRzODNuawpMdG9YRmxtQlV0czNFSXhjVnZrdmNqQjFCZ05WSFNNRWJqQnNnQlRzODNua0x0b1hGbG1CVXRzM0VJeGNWdmt2CmNxRkpwRWN3UlRFTE1Ba0dBMVVFQmhNQ1FWVXhFekFSQmdOVkJBZ1RDbE52YldVdFUzUmhkR1V4SVRBZkJnTlYKQkFvVEdFbHVkR1Z5Ym1WMElGZHBaR2RwZEhNZ1VIUjVJRXgwWklJSkFNS1IvTnN5ZmNhek1Bd0dBMVVkRXdRRgpNQU1CQWY4d0RRWUpLb1pJaHZjTkFRRUZCUUFEZ2dFQkFCdzd3LzVrNGQ1ZFZEZ2QvT09PbVhkYWFDSUt2dDdkCjNudGx2MVNTdkFvS1Q4ZDhsdDk3RG01UnJtZWZCSTEzSTJ5aXZaZzViZlRnZTQrdkFWNlZkTEZkV2VGcDFiL0YKT1prWVV2NkE4bzVIVzBPV1FZVlgyNnpJcUJjRzJRcm0zcmVpU2w1Qkx2cGoxV1NwQ3NZdnM1a2FPNHZGcE1hawovSUNnZFpEK3J4d3hmOFZiLzZmbnRLeXdXU0xnd0tIM21KK1owa1JscHExZzFvaWVpT20xL2dwWjM1czBZdW9yClhaYmE5cHRmTENZU2dnZy9xYzNkM2QwdGJIcGxLWWt3Rm03ZjVPUkdIRFNENVNKbStnSTdSUEUrNGJPOHE3OVIKUEFmYkcxVUd1SjBiL29pZ2FnY2lIaEpwODUxU1FSWWYzSnVOU2MxN0JuSzJMNUlFdHpqcXIrUT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","signing_key":{"key":"-----BEGIN PRIVATE KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n","cert":"-----BEGIN PUBLIC KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n"},"thumbprints":["499fdf1c2218a99c8595aac2fd95ce36f0a6d59d"],"idpinitiated":{"enabled":true,"client_id":"client_id","client_protocol":"samlp","client_authorizequery":"type=code&timeout=30"},"bindingMethod":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect","decryptionKey":{"key":"-----BEGIN PRIVATE KEY-----\n...{your private key here}...\n-----END PRIVATE KEY-----","cert":"-----BEGIN CERTIFICATE-----\n...{your public key cert here}...\n-----END CERTIFICATE-----"},"tenant_domain":"example.com","disableSignout":false,"domain_aliases":["example.com","example.coz"],"signInEndpoint":"https://saml-from-metadata-xml.provider/sign_in","digestAlgorithm":"sha256","protocolBinding":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST","requestTemplate":"\n @@Issuer@@\n","signOutEndpoint":"https://saml-from-metadata-xml.provider/sign_out","upstream_params":{"screen_name":{"alias":"login_hint"}},"user_id_attribute":"https://saml.provider/imi/ns/identity-200810","signatureAlgorithm":"rsa-sha256"},"strategy":"samlp","name":"Acceptance-Test-SAML-TestAccConnectionSAML","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/samlp/qay8JLZX","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SAML-TestAccConnectionSAML","enabled_clients":[],"realms":["Acceptance-Test-SAML-TestAccConnectionSAML"]}' + body: '{"id":"con_AooOEYitZrAAaqEa","options":{"cert":"-----BEGIN CERTIFICATE-----\nMIIDtTCCAp2gAwIBAgIJAMKR/NsyfcazMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV\nBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBX\naWRnaXRzIFB0eSBMdGQwHhcNMTIxMTEyMjM0MzQxWhcNMTYxMjIxMjM0MzQxWjBF\nMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50\nZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEAvtH4wKLYlIXZlfYQFJtXZVC3fD8XMarzwvb/fHUyJ6NvNStN+H7GHp3/\nQhZbSaRyqK5hu5xXtFLgnI0QG8oE1NlXbczjH45LeHWhPIdc2uHSpzXic78kOugM\nY1vng4J10PF6+T2FNaiv0iXeIQq9xbwwPYpflViQyJnzGCIZ7VGan6GbRKzyTKcB\n58yx24pJq+CviLXEY52TIW1l5imcjGvLtlCp1za9qBZa4XGoVqHi1kRXkdDSHty6\nlZWj3KxoRvTbiaBCH+75U7rifS6fR9lqjWE57bCGoz7+BBu9YmPKtI1KkyHFqWpx\naJc/AKf9xgg+UumeqVcirUmAsHJrMwIDAQABo4GnMIGkMB0GA1UdDgQWBBTs83nk\nLtoXFlmBUts3EIxcVvkvcjB1BgNVHSMEbjBsgBTs83nkLtoXFlmBUts3EIxcVvkv\ncqFJpEcwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgTClNvbWUtU3RhdGUxITAfBgNV\nBAoTGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZIIJAMKR/NsyfcazMAwGA1UdEwQF\nMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBABw7w/5k4d5dVDgd/OOOmXdaaCIKvt7d\n3ntlv1SSvAoKT8d8lt97Dm5RrmefBI13I2yivZg5bfTge4+vAV6VdLFdWeFp1b/F\nOZkYUv6A8o5HW0OWQYVX26zIqBcG2Qrm3reiSl5BLvpj1WSpCsYvs5kaO4vFpMak\n/ICgdZD+rxwxf8Vb/6fntKywWSLgwKH3mJ+Z0kRlpq1g1oieiOm1/gpZ35s0Yuor\nXZba9ptfLCYSggg/qc3d3d0tbHplKYkwFm7f5ORGHDSD5SJm+gI7RPE+4bO8q79R\nPAfbG1UGuJ0b/oigagciHhJp851SQRYf3JuNSc17BnK2L5IEtzjqr+Q=\n-----END CERTIFICATE-----\n","expires":"2016-12-21T23:43:41.000Z","subject":{"countryName":"AU","organizationName":"Internet Widgits Pty Ltd","stateOrProvinceName":"Some-State"},"icon_url":"https://example.com/logo.svg","fieldsMap":{"name":["name","nameidentifier"],"email":["emailaddress","nameidentifier"],"family_name":"surname"},"signingCert":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUR0VENDQXAyZ0F3SUJBZ0lKQU1LUi9Oc3lmY2F6TUEwR0NTcUdTSWIzRFFFQkJRVUFNRVV4Q3pBSkJnTlYKQkFZVEFrRlZNUk13RVFZRFZRUUlFd3BUYjIxbExWTjBZWFJsTVNFd0h3WURWUVFLRXhoSmJuUmxjbTVsZENCWAphV1JuYVhSeklGQjBlU0JNZEdRd0hoY05NVEl4TVRFeU1qTTBNelF4V2hjTk1UWXhNakl4TWpNME16UXhXakJGCk1Rc3dDUVlEVlFRR0V3SkJWVEVUTUJFR0ExVUVDQk1LVTI5dFpTMVRkR0YwWlRFaE1COEdBMVVFQ2hNWVNXNTAKWlhKdVpYUWdWMmxrWjJsMGN5QlFkSGtnVEhSa01JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQgpDZ0tDQVFFQXZ0SDR3S0xZbElYWmxmWVFGSnRYWlZDM2ZEOFhNYXJ6d3ZiL2ZIVXlKNk52TlN0TitIN0dIcDMvClFoWmJTYVJ5cUs1aHU1eFh0RkxnbkkwUUc4b0UxTmxYYmN6akg0NUxlSFdoUElkYzJ1SFNwelhpYzc4a091Z00KWTF2bmc0SjEwUEY2K1QyRk5haXYwaVhlSVFxOXhid3dQWXBmbFZpUXlKbnpHQ0laN1ZHYW42R2JSS3p5VEtjQgo1OHl4MjRwSnErQ3ZpTFhFWTUyVElXMWw1aW1jakd2THRsQ3AxemE5cUJaYTRYR29WcUhpMWtSWGtkRFNIdHk2CmxaV2ozS3hvUnZUYmlhQkNIKzc1VTdyaWZTNmZSOWxxaldFNTdiQ0dvejcrQkJ1OVltUEt0STFLa3lIRnFXcHgKYUpjL0FLZjl4Z2crVXVtZXFWY2lyVW1Bc0hKck13SURBUUFCbzRHbk1JR2tNQjBHQTFVZERnUVdCQlRzODNuawpMdG9YRmxtQlV0czNFSXhjVnZrdmNqQjFCZ05WSFNNRWJqQnNnQlRzODNua0x0b1hGbG1CVXRzM0VJeGNWdmt2CmNxRkpwRWN3UlRFTE1Ba0dBMVVFQmhNQ1FWVXhFekFSQmdOVkJBZ1RDbE52YldVdFUzUmhkR1V4SVRBZkJnTlYKQkFvVEdFbHVkR1Z5Ym1WMElGZHBaR2RwZEhNZ1VIUjVJRXgwWklJSkFNS1IvTnN5ZmNhek1Bd0dBMVVkRXdRRgpNQU1CQWY4d0RRWUpLb1pJaHZjTkFRRUZCUUFEZ2dFQkFCdzd3LzVrNGQ1ZFZEZ2QvT09PbVhkYWFDSUt2dDdkCjNudGx2MVNTdkFvS1Q4ZDhsdDk3RG01UnJtZWZCSTEzSTJ5aXZaZzViZlRnZTQrdkFWNlZkTEZkV2VGcDFiL0YKT1prWVV2NkE4bzVIVzBPV1FZVlgyNnpJcUJjRzJRcm0zcmVpU2w1Qkx2cGoxV1NwQ3NZdnM1a2FPNHZGcE1hawovSUNnZFpEK3J4d3hmOFZiLzZmbnRLeXdXU0xnd0tIM21KK1owa1JscHExZzFvaWVpT20xL2dwWjM1czBZdW9yClhaYmE5cHRmTENZU2dnZy9xYzNkM2QwdGJIcGxLWWt3Rm03ZjVPUkdIRFNENVNKbStnSTdSUEUrNGJPOHE3OVIKUEFmYkcxVUd1SjBiL29pZ2FnY2lIaEpwODUxU1FSWWYzSnVOU2MxN0JuSzJMNUlFdHpqcXIrUT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","signing_key":{"key":"-----BEGIN PRIVATE KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n","cert":"-----BEGIN PUBLIC KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n"},"thumbprints":["499fdf1c2218a99c8595aac2fd95ce36f0a6d59d"],"idpinitiated":{"enabled":true,"client_id":"client_id","client_protocol":"samlp","client_authorizequery":"type=code&timeout=30"},"bindingMethod":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect","decryptionKey":{"key":"-----BEGIN PRIVATE KEY-----\n...{your private key here}...\n-----END PRIVATE KEY-----","cert":"-----BEGIN CERTIFICATE-----\n...{your public key cert here}...\n-----END CERTIFICATE-----"},"tenant_domain":"example.com","disableSignout":false,"domain_aliases":["example.com","example.coz"],"signInEndpoint":"https://saml-from-metadata-xml.provider/sign_in","digestAlgorithm":"sha256","protocolBinding":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST","requestTemplate":"\n @@Issuer@@\n","signOutEndpoint":"https://saml-from-metadata-xml.provider/sign_out","upstream_params":{"screen_name":{"alias":"login_hint"}},"strategy_version":2,"user_id_attribute":"https://saml.provider/imi/ns/identity-200810","signatureAlgorithm":"rsa-sha256"},"strategy":"samlp","name":"Acceptance-Test-SAML-TestAccConnectionSAML","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/samlp/VWBSra6g","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SAML-TestAccConnectionSAML","enabled_clients":[],"realms":["Acceptance-Test-SAML-TestAccConnectionSAML"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.371333ms + duration: 153.198709ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_GFRkNPx9npSLye37 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_AooOEYitZrAAaqEa method: GET response: proto: HTTP/2.0 @@ -138,33 +135,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_GFRkNPx9npSLye37","options":{"cert":"-----BEGIN CERTIFICATE-----\nMIIDtTCCAp2gAwIBAgIJAMKR/NsyfcazMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV\nBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBX\naWRnaXRzIFB0eSBMdGQwHhcNMTIxMTEyMjM0MzQxWhcNMTYxMjIxMjM0MzQxWjBF\nMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50\nZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEAvtH4wKLYlIXZlfYQFJtXZVC3fD8XMarzwvb/fHUyJ6NvNStN+H7GHp3/\nQhZbSaRyqK5hu5xXtFLgnI0QG8oE1NlXbczjH45LeHWhPIdc2uHSpzXic78kOugM\nY1vng4J10PF6+T2FNaiv0iXeIQq9xbwwPYpflViQyJnzGCIZ7VGan6GbRKzyTKcB\n58yx24pJq+CviLXEY52TIW1l5imcjGvLtlCp1za9qBZa4XGoVqHi1kRXkdDSHty6\nlZWj3KxoRvTbiaBCH+75U7rifS6fR9lqjWE57bCGoz7+BBu9YmPKtI1KkyHFqWpx\naJc/AKf9xgg+UumeqVcirUmAsHJrMwIDAQABo4GnMIGkMB0GA1UdDgQWBBTs83nk\nLtoXFlmBUts3EIxcVvkvcjB1BgNVHSMEbjBsgBTs83nkLtoXFlmBUts3EIxcVvkv\ncqFJpEcwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgTClNvbWUtU3RhdGUxITAfBgNV\nBAoTGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZIIJAMKR/NsyfcazMAwGA1UdEwQF\nMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBABw7w/5k4d5dVDgd/OOOmXdaaCIKvt7d\n3ntlv1SSvAoKT8d8lt97Dm5RrmefBI13I2yivZg5bfTge4+vAV6VdLFdWeFp1b/F\nOZkYUv6A8o5HW0OWQYVX26zIqBcG2Qrm3reiSl5BLvpj1WSpCsYvs5kaO4vFpMak\n/ICgdZD+rxwxf8Vb/6fntKywWSLgwKH3mJ+Z0kRlpq1g1oieiOm1/gpZ35s0Yuor\nXZba9ptfLCYSggg/qc3d3d0tbHplKYkwFm7f5ORGHDSD5SJm+gI7RPE+4bO8q79R\nPAfbG1UGuJ0b/oigagciHhJp851SQRYf3JuNSc17BnK2L5IEtzjqr+Q=\n-----END CERTIFICATE-----\n","expires":"2016-12-21T23:43:41.000Z","subject":{"countryName":"AU","organizationName":"Internet Widgits Pty Ltd","stateOrProvinceName":"Some-State"},"icon_url":"https://example.com/logo.svg","fieldsMap":{"name":["name","nameidentifier"],"email":["emailaddress","nameidentifier"],"family_name":"surname"},"signingCert":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUR0VENDQXAyZ0F3SUJBZ0lKQU1LUi9Oc3lmY2F6TUEwR0NTcUdTSWIzRFFFQkJRVUFNRVV4Q3pBSkJnTlYKQkFZVEFrRlZNUk13RVFZRFZRUUlFd3BUYjIxbExWTjBZWFJsTVNFd0h3WURWUVFLRXhoSmJuUmxjbTVsZENCWAphV1JuYVhSeklGQjBlU0JNZEdRd0hoY05NVEl4TVRFeU1qTTBNelF4V2hjTk1UWXhNakl4TWpNME16UXhXakJGCk1Rc3dDUVlEVlFRR0V3SkJWVEVUTUJFR0ExVUVDQk1LVTI5dFpTMVRkR0YwWlRFaE1COEdBMVVFQ2hNWVNXNTAKWlhKdVpYUWdWMmxrWjJsMGN5QlFkSGtnVEhSa01JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQgpDZ0tDQVFFQXZ0SDR3S0xZbElYWmxmWVFGSnRYWlZDM2ZEOFhNYXJ6d3ZiL2ZIVXlKNk52TlN0TitIN0dIcDMvClFoWmJTYVJ5cUs1aHU1eFh0RkxnbkkwUUc4b0UxTmxYYmN6akg0NUxlSFdoUElkYzJ1SFNwelhpYzc4a091Z00KWTF2bmc0SjEwUEY2K1QyRk5haXYwaVhlSVFxOXhid3dQWXBmbFZpUXlKbnpHQ0laN1ZHYW42R2JSS3p5VEtjQgo1OHl4MjRwSnErQ3ZpTFhFWTUyVElXMWw1aW1jakd2THRsQ3AxemE5cUJaYTRYR29WcUhpMWtSWGtkRFNIdHk2CmxaV2ozS3hvUnZUYmlhQkNIKzc1VTdyaWZTNmZSOWxxaldFNTdiQ0dvejcrQkJ1OVltUEt0STFLa3lIRnFXcHgKYUpjL0FLZjl4Z2crVXVtZXFWY2lyVW1Bc0hKck13SURBUUFCbzRHbk1JR2tNQjBHQTFVZERnUVdCQlRzODNuawpMdG9YRmxtQlV0czNFSXhjVnZrdmNqQjFCZ05WSFNNRWJqQnNnQlRzODNua0x0b1hGbG1CVXRzM0VJeGNWdmt2CmNxRkpwRWN3UlRFTE1Ba0dBMVVFQmhNQ1FWVXhFekFSQmdOVkJBZ1RDbE52YldVdFUzUmhkR1V4SVRBZkJnTlYKQkFvVEdFbHVkR1Z5Ym1WMElGZHBaR2RwZEhNZ1VIUjVJRXgwWklJSkFNS1IvTnN5ZmNhek1Bd0dBMVVkRXdRRgpNQU1CQWY4d0RRWUpLb1pJaHZjTkFRRUZCUUFEZ2dFQkFCdzd3LzVrNGQ1ZFZEZ2QvT09PbVhkYWFDSUt2dDdkCjNudGx2MVNTdkFvS1Q4ZDhsdDk3RG01UnJtZWZCSTEzSTJ5aXZaZzViZlRnZTQrdkFWNlZkTEZkV2VGcDFiL0YKT1prWVV2NkE4bzVIVzBPV1FZVlgyNnpJcUJjRzJRcm0zcmVpU2w1Qkx2cGoxV1NwQ3NZdnM1a2FPNHZGcE1hawovSUNnZFpEK3J4d3hmOFZiLzZmbnRLeXdXU0xnd0tIM21KK1owa1JscHExZzFvaWVpT20xL2dwWjM1czBZdW9yClhaYmE5cHRmTENZU2dnZy9xYzNkM2QwdGJIcGxLWWt3Rm03ZjVPUkdIRFNENVNKbStnSTdSUEUrNGJPOHE3OVIKUEFmYkcxVUd1SjBiL29pZ2FnY2lIaEpwODUxU1FSWWYzSnVOU2MxN0JuSzJMNUlFdHpqcXIrUT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","signing_key":{"key":"-----BEGIN PRIVATE KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n","cert":"-----BEGIN PUBLIC KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n"},"thumbprints":["499fdf1c2218a99c8595aac2fd95ce36f0a6d59d"],"idpinitiated":{"enabled":true,"client_id":"client_id","client_protocol":"samlp","client_authorizequery":"type=code&timeout=30"},"bindingMethod":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect","decryptionKey":{"key":"-----BEGIN PRIVATE KEY-----\n...{your private key here}...\n-----END PRIVATE KEY-----","cert":"-----BEGIN CERTIFICATE-----\n...{your public key cert here}...\n-----END CERTIFICATE-----"},"tenant_domain":"example.com","disableSignout":false,"domain_aliases":["example.com","example.coz"],"signInEndpoint":"https://saml-from-metadata-xml.provider/sign_in","digestAlgorithm":"sha256","protocolBinding":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST","requestTemplate":"\n @@Issuer@@\n","signOutEndpoint":"https://saml-from-metadata-xml.provider/sign_out","upstream_params":{"screen_name":{"alias":"login_hint"}},"user_id_attribute":"https://saml.provider/imi/ns/identity-200810","signatureAlgorithm":"rsa-sha256"},"strategy":"samlp","name":"Acceptance-Test-SAML-TestAccConnectionSAML","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/samlp/qay8JLZX","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SAML-TestAccConnectionSAML","enabled_clients":[],"realms":["Acceptance-Test-SAML-TestAccConnectionSAML"]}' + body: '{"id":"con_AooOEYitZrAAaqEa","options":{"cert":"-----BEGIN CERTIFICATE-----\nMIIDtTCCAp2gAwIBAgIJAMKR/NsyfcazMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV\nBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBX\naWRnaXRzIFB0eSBMdGQwHhcNMTIxMTEyMjM0MzQxWhcNMTYxMjIxMjM0MzQxWjBF\nMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50\nZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEAvtH4wKLYlIXZlfYQFJtXZVC3fD8XMarzwvb/fHUyJ6NvNStN+H7GHp3/\nQhZbSaRyqK5hu5xXtFLgnI0QG8oE1NlXbczjH45LeHWhPIdc2uHSpzXic78kOugM\nY1vng4J10PF6+T2FNaiv0iXeIQq9xbwwPYpflViQyJnzGCIZ7VGan6GbRKzyTKcB\n58yx24pJq+CviLXEY52TIW1l5imcjGvLtlCp1za9qBZa4XGoVqHi1kRXkdDSHty6\nlZWj3KxoRvTbiaBCH+75U7rifS6fR9lqjWE57bCGoz7+BBu9YmPKtI1KkyHFqWpx\naJc/AKf9xgg+UumeqVcirUmAsHJrMwIDAQABo4GnMIGkMB0GA1UdDgQWBBTs83nk\nLtoXFlmBUts3EIxcVvkvcjB1BgNVHSMEbjBsgBTs83nkLtoXFlmBUts3EIxcVvkv\ncqFJpEcwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgTClNvbWUtU3RhdGUxITAfBgNV\nBAoTGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZIIJAMKR/NsyfcazMAwGA1UdEwQF\nMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBABw7w/5k4d5dVDgd/OOOmXdaaCIKvt7d\n3ntlv1SSvAoKT8d8lt97Dm5RrmefBI13I2yivZg5bfTge4+vAV6VdLFdWeFp1b/F\nOZkYUv6A8o5HW0OWQYVX26zIqBcG2Qrm3reiSl5BLvpj1WSpCsYvs5kaO4vFpMak\n/ICgdZD+rxwxf8Vb/6fntKywWSLgwKH3mJ+Z0kRlpq1g1oieiOm1/gpZ35s0Yuor\nXZba9ptfLCYSggg/qc3d3d0tbHplKYkwFm7f5ORGHDSD5SJm+gI7RPE+4bO8q79R\nPAfbG1UGuJ0b/oigagciHhJp851SQRYf3JuNSc17BnK2L5IEtzjqr+Q=\n-----END CERTIFICATE-----\n","expires":"2016-12-21T23:43:41.000Z","subject":{"countryName":"AU","organizationName":"Internet Widgits Pty Ltd","stateOrProvinceName":"Some-State"},"icon_url":"https://example.com/logo.svg","fieldsMap":{"name":["name","nameidentifier"],"email":["emailaddress","nameidentifier"],"family_name":"surname"},"signingCert":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUR0VENDQXAyZ0F3SUJBZ0lKQU1LUi9Oc3lmY2F6TUEwR0NTcUdTSWIzRFFFQkJRVUFNRVV4Q3pBSkJnTlYKQkFZVEFrRlZNUk13RVFZRFZRUUlFd3BUYjIxbExWTjBZWFJsTVNFd0h3WURWUVFLRXhoSmJuUmxjbTVsZENCWAphV1JuYVhSeklGQjBlU0JNZEdRd0hoY05NVEl4TVRFeU1qTTBNelF4V2hjTk1UWXhNakl4TWpNME16UXhXakJGCk1Rc3dDUVlEVlFRR0V3SkJWVEVUTUJFR0ExVUVDQk1LVTI5dFpTMVRkR0YwWlRFaE1COEdBMVVFQ2hNWVNXNTAKWlhKdVpYUWdWMmxrWjJsMGN5QlFkSGtnVEhSa01JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQgpDZ0tDQVFFQXZ0SDR3S0xZbElYWmxmWVFGSnRYWlZDM2ZEOFhNYXJ6d3ZiL2ZIVXlKNk52TlN0TitIN0dIcDMvClFoWmJTYVJ5cUs1aHU1eFh0RkxnbkkwUUc4b0UxTmxYYmN6akg0NUxlSFdoUElkYzJ1SFNwelhpYzc4a091Z00KWTF2bmc0SjEwUEY2K1QyRk5haXYwaVhlSVFxOXhid3dQWXBmbFZpUXlKbnpHQ0laN1ZHYW42R2JSS3p5VEtjQgo1OHl4MjRwSnErQ3ZpTFhFWTUyVElXMWw1aW1jakd2THRsQ3AxemE5cUJaYTRYR29WcUhpMWtSWGtkRFNIdHk2CmxaV2ozS3hvUnZUYmlhQkNIKzc1VTdyaWZTNmZSOWxxaldFNTdiQ0dvejcrQkJ1OVltUEt0STFLa3lIRnFXcHgKYUpjL0FLZjl4Z2crVXVtZXFWY2lyVW1Bc0hKck13SURBUUFCbzRHbk1JR2tNQjBHQTFVZERnUVdCQlRzODNuawpMdG9YRmxtQlV0czNFSXhjVnZrdmNqQjFCZ05WSFNNRWJqQnNnQlRzODNua0x0b1hGbG1CVXRzM0VJeGNWdmt2CmNxRkpwRWN3UlRFTE1Ba0dBMVVFQmhNQ1FWVXhFekFSQmdOVkJBZ1RDbE52YldVdFUzUmhkR1V4SVRBZkJnTlYKQkFvVEdFbHVkR1Z5Ym1WMElGZHBaR2RwZEhNZ1VIUjVJRXgwWklJSkFNS1IvTnN5ZmNhek1Bd0dBMVVkRXdRRgpNQU1CQWY4d0RRWUpLb1pJaHZjTkFRRUZCUUFEZ2dFQkFCdzd3LzVrNGQ1ZFZEZ2QvT09PbVhkYWFDSUt2dDdkCjNudGx2MVNTdkFvS1Q4ZDhsdDk3RG01UnJtZWZCSTEzSTJ5aXZaZzViZlRnZTQrdkFWNlZkTEZkV2VGcDFiL0YKT1prWVV2NkE4bzVIVzBPV1FZVlgyNnpJcUJjRzJRcm0zcmVpU2w1Qkx2cGoxV1NwQ3NZdnM1a2FPNHZGcE1hawovSUNnZFpEK3J4d3hmOFZiLzZmbnRLeXdXU0xnd0tIM21KK1owa1JscHExZzFvaWVpT20xL2dwWjM1czBZdW9yClhaYmE5cHRmTENZU2dnZy9xYzNkM2QwdGJIcGxLWWt3Rm03ZjVPUkdIRFNENVNKbStnSTdSUEUrNGJPOHE3OVIKUEFmYkcxVUd1SjBiL29pZ2FnY2lIaEpwODUxU1FSWWYzSnVOU2MxN0JuSzJMNUlFdHpqcXIrUT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","signing_key":{"key":"-----BEGIN PRIVATE KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n","cert":"-----BEGIN PUBLIC KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n"},"thumbprints":["499fdf1c2218a99c8595aac2fd95ce36f0a6d59d"],"idpinitiated":{"enabled":true,"client_id":"client_id","client_protocol":"samlp","client_authorizequery":"type=code&timeout=30"},"bindingMethod":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect","decryptionKey":{"key":"-----BEGIN PRIVATE KEY-----\n...{your private key here}...\n-----END PRIVATE KEY-----","cert":"-----BEGIN CERTIFICATE-----\n...{your public key cert here}...\n-----END CERTIFICATE-----"},"tenant_domain":"example.com","disableSignout":false,"domain_aliases":["example.com","example.coz"],"signInEndpoint":"https://saml-from-metadata-xml.provider/sign_in","digestAlgorithm":"sha256","protocolBinding":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST","requestTemplate":"\n @@Issuer@@\n","signOutEndpoint":"https://saml-from-metadata-xml.provider/sign_out","upstream_params":{"screen_name":{"alias":"login_hint"}},"strategy_version":2,"user_id_attribute":"https://saml.provider/imi/ns/identity-200810","signatureAlgorithm":"rsa-sha256"},"strategy":"samlp","name":"Acceptance-Test-SAML-TestAccConnectionSAML","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/samlp/VWBSra6g","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SAML-TestAccConnectionSAML","enabled_clients":[],"realms":["Acceptance-Test-SAML-TestAccConnectionSAML"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.598833ms + duration: 153.376333ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_GFRkNPx9npSLye37 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_AooOEYitZrAAaqEa method: GET response: proto: HTTP/2.0 @@ -174,13 +170,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_GFRkNPx9npSLye37","options":{"cert":"-----BEGIN CERTIFICATE-----\nMIIDtTCCAp2gAwIBAgIJAMKR/NsyfcazMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV\nBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBX\naWRnaXRzIFB0eSBMdGQwHhcNMTIxMTEyMjM0MzQxWhcNMTYxMjIxMjM0MzQxWjBF\nMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50\nZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEAvtH4wKLYlIXZlfYQFJtXZVC3fD8XMarzwvb/fHUyJ6NvNStN+H7GHp3/\nQhZbSaRyqK5hu5xXtFLgnI0QG8oE1NlXbczjH45LeHWhPIdc2uHSpzXic78kOugM\nY1vng4J10PF6+T2FNaiv0iXeIQq9xbwwPYpflViQyJnzGCIZ7VGan6GbRKzyTKcB\n58yx24pJq+CviLXEY52TIW1l5imcjGvLtlCp1za9qBZa4XGoVqHi1kRXkdDSHty6\nlZWj3KxoRvTbiaBCH+75U7rifS6fR9lqjWE57bCGoz7+BBu9YmPKtI1KkyHFqWpx\naJc/AKf9xgg+UumeqVcirUmAsHJrMwIDAQABo4GnMIGkMB0GA1UdDgQWBBTs83nk\nLtoXFlmBUts3EIxcVvkvcjB1BgNVHSMEbjBsgBTs83nkLtoXFlmBUts3EIxcVvkv\ncqFJpEcwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgTClNvbWUtU3RhdGUxITAfBgNV\nBAoTGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZIIJAMKR/NsyfcazMAwGA1UdEwQF\nMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBABw7w/5k4d5dVDgd/OOOmXdaaCIKvt7d\n3ntlv1SSvAoKT8d8lt97Dm5RrmefBI13I2yivZg5bfTge4+vAV6VdLFdWeFp1b/F\nOZkYUv6A8o5HW0OWQYVX26zIqBcG2Qrm3reiSl5BLvpj1WSpCsYvs5kaO4vFpMak\n/ICgdZD+rxwxf8Vb/6fntKywWSLgwKH3mJ+Z0kRlpq1g1oieiOm1/gpZ35s0Yuor\nXZba9ptfLCYSggg/qc3d3d0tbHplKYkwFm7f5ORGHDSD5SJm+gI7RPE+4bO8q79R\nPAfbG1UGuJ0b/oigagciHhJp851SQRYf3JuNSc17BnK2L5IEtzjqr+Q=\n-----END CERTIFICATE-----\n","expires":"2016-12-21T23:43:41.000Z","subject":{"countryName":"AU","organizationName":"Internet Widgits Pty Ltd","stateOrProvinceName":"Some-State"},"icon_url":"https://example.com/logo.svg","fieldsMap":{"name":["name","nameidentifier"],"email":["emailaddress","nameidentifier"],"family_name":"surname"},"signingCert":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUR0VENDQXAyZ0F3SUJBZ0lKQU1LUi9Oc3lmY2F6TUEwR0NTcUdTSWIzRFFFQkJRVUFNRVV4Q3pBSkJnTlYKQkFZVEFrRlZNUk13RVFZRFZRUUlFd3BUYjIxbExWTjBZWFJsTVNFd0h3WURWUVFLRXhoSmJuUmxjbTVsZENCWAphV1JuYVhSeklGQjBlU0JNZEdRd0hoY05NVEl4TVRFeU1qTTBNelF4V2hjTk1UWXhNakl4TWpNME16UXhXakJGCk1Rc3dDUVlEVlFRR0V3SkJWVEVUTUJFR0ExVUVDQk1LVTI5dFpTMVRkR0YwWlRFaE1COEdBMVVFQ2hNWVNXNTAKWlhKdVpYUWdWMmxrWjJsMGN5QlFkSGtnVEhSa01JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQgpDZ0tDQVFFQXZ0SDR3S0xZbElYWmxmWVFGSnRYWlZDM2ZEOFhNYXJ6d3ZiL2ZIVXlKNk52TlN0TitIN0dIcDMvClFoWmJTYVJ5cUs1aHU1eFh0RkxnbkkwUUc4b0UxTmxYYmN6akg0NUxlSFdoUElkYzJ1SFNwelhpYzc4a091Z00KWTF2bmc0SjEwUEY2K1QyRk5haXYwaVhlSVFxOXhid3dQWXBmbFZpUXlKbnpHQ0laN1ZHYW42R2JSS3p5VEtjQgo1OHl4MjRwSnErQ3ZpTFhFWTUyVElXMWw1aW1jakd2THRsQ3AxemE5cUJaYTRYR29WcUhpMWtSWGtkRFNIdHk2CmxaV2ozS3hvUnZUYmlhQkNIKzc1VTdyaWZTNmZSOWxxaldFNTdiQ0dvejcrQkJ1OVltUEt0STFLa3lIRnFXcHgKYUpjL0FLZjl4Z2crVXVtZXFWY2lyVW1Bc0hKck13SURBUUFCbzRHbk1JR2tNQjBHQTFVZERnUVdCQlRzODNuawpMdG9YRmxtQlV0czNFSXhjVnZrdmNqQjFCZ05WSFNNRWJqQnNnQlRzODNua0x0b1hGbG1CVXRzM0VJeGNWdmt2CmNxRkpwRWN3UlRFTE1Ba0dBMVVFQmhNQ1FWVXhFekFSQmdOVkJBZ1RDbE52YldVdFUzUmhkR1V4SVRBZkJnTlYKQkFvVEdFbHVkR1Z5Ym1WMElGZHBaR2RwZEhNZ1VIUjVJRXgwWklJSkFNS1IvTnN5ZmNhek1Bd0dBMVVkRXdRRgpNQU1CQWY4d0RRWUpLb1pJaHZjTkFRRUZCUUFEZ2dFQkFCdzd3LzVrNGQ1ZFZEZ2QvT09PbVhkYWFDSUt2dDdkCjNudGx2MVNTdkFvS1Q4ZDhsdDk3RG01UnJtZWZCSTEzSTJ5aXZaZzViZlRnZTQrdkFWNlZkTEZkV2VGcDFiL0YKT1prWVV2NkE4bzVIVzBPV1FZVlgyNnpJcUJjRzJRcm0zcmVpU2w1Qkx2cGoxV1NwQ3NZdnM1a2FPNHZGcE1hawovSUNnZFpEK3J4d3hmOFZiLzZmbnRLeXdXU0xnd0tIM21KK1owa1JscHExZzFvaWVpT20xL2dwWjM1czBZdW9yClhaYmE5cHRmTENZU2dnZy9xYzNkM2QwdGJIcGxLWWt3Rm03ZjVPUkdIRFNENVNKbStnSTdSUEUrNGJPOHE3OVIKUEFmYkcxVUd1SjBiL29pZ2FnY2lIaEpwODUxU1FSWWYzSnVOU2MxN0JuSzJMNUlFdHpqcXIrUT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","signing_key":{"key":"-----BEGIN PRIVATE KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n","cert":"-----BEGIN PUBLIC KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n"},"thumbprints":["499fdf1c2218a99c8595aac2fd95ce36f0a6d59d"],"idpinitiated":{"enabled":true,"client_id":"client_id","client_protocol":"samlp","client_authorizequery":"type=code&timeout=30"},"bindingMethod":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect","decryptionKey":{"key":"-----BEGIN PRIVATE KEY-----\n...{your private key here}...\n-----END PRIVATE KEY-----","cert":"-----BEGIN CERTIFICATE-----\n...{your public key cert here}...\n-----END CERTIFICATE-----"},"tenant_domain":"example.com","disableSignout":false,"domain_aliases":["example.com","example.coz"],"signInEndpoint":"https://saml-from-metadata-xml.provider/sign_in","digestAlgorithm":"sha256","protocolBinding":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST","requestTemplate":"\n @@Issuer@@\n","signOutEndpoint":"https://saml-from-metadata-xml.provider/sign_out","upstream_params":{"screen_name":{"alias":"login_hint"}},"user_id_attribute":"https://saml.provider/imi/ns/identity-200810","signatureAlgorithm":"rsa-sha256"},"strategy":"samlp","name":"Acceptance-Test-SAML-TestAccConnectionSAML","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/samlp/qay8JLZX","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SAML-TestAccConnectionSAML","enabled_clients":[],"realms":["Acceptance-Test-SAML-TestAccConnectionSAML"]}' + body: '{"id":"con_AooOEYitZrAAaqEa","options":{"cert":"-----BEGIN CERTIFICATE-----\nMIIDtTCCAp2gAwIBAgIJAMKR/NsyfcazMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV\nBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBX\naWRnaXRzIFB0eSBMdGQwHhcNMTIxMTEyMjM0MzQxWhcNMTYxMjIxMjM0MzQxWjBF\nMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50\nZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEAvtH4wKLYlIXZlfYQFJtXZVC3fD8XMarzwvb/fHUyJ6NvNStN+H7GHp3/\nQhZbSaRyqK5hu5xXtFLgnI0QG8oE1NlXbczjH45LeHWhPIdc2uHSpzXic78kOugM\nY1vng4J10PF6+T2FNaiv0iXeIQq9xbwwPYpflViQyJnzGCIZ7VGan6GbRKzyTKcB\n58yx24pJq+CviLXEY52TIW1l5imcjGvLtlCp1za9qBZa4XGoVqHi1kRXkdDSHty6\nlZWj3KxoRvTbiaBCH+75U7rifS6fR9lqjWE57bCGoz7+BBu9YmPKtI1KkyHFqWpx\naJc/AKf9xgg+UumeqVcirUmAsHJrMwIDAQABo4GnMIGkMB0GA1UdDgQWBBTs83nk\nLtoXFlmBUts3EIxcVvkvcjB1BgNVHSMEbjBsgBTs83nkLtoXFlmBUts3EIxcVvkv\ncqFJpEcwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgTClNvbWUtU3RhdGUxITAfBgNV\nBAoTGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZIIJAMKR/NsyfcazMAwGA1UdEwQF\nMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBABw7w/5k4d5dVDgd/OOOmXdaaCIKvt7d\n3ntlv1SSvAoKT8d8lt97Dm5RrmefBI13I2yivZg5bfTge4+vAV6VdLFdWeFp1b/F\nOZkYUv6A8o5HW0OWQYVX26zIqBcG2Qrm3reiSl5BLvpj1WSpCsYvs5kaO4vFpMak\n/ICgdZD+rxwxf8Vb/6fntKywWSLgwKH3mJ+Z0kRlpq1g1oieiOm1/gpZ35s0Yuor\nXZba9ptfLCYSggg/qc3d3d0tbHplKYkwFm7f5ORGHDSD5SJm+gI7RPE+4bO8q79R\nPAfbG1UGuJ0b/oigagciHhJp851SQRYf3JuNSc17BnK2L5IEtzjqr+Q=\n-----END CERTIFICATE-----\n","expires":"2016-12-21T23:43:41.000Z","subject":{"countryName":"AU","organizationName":"Internet Widgits Pty Ltd","stateOrProvinceName":"Some-State"},"icon_url":"https://example.com/logo.svg","fieldsMap":{"name":["name","nameidentifier"],"email":["emailaddress","nameidentifier"],"family_name":"surname"},"signingCert":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUR0VENDQXAyZ0F3SUJBZ0lKQU1LUi9Oc3lmY2F6TUEwR0NTcUdTSWIzRFFFQkJRVUFNRVV4Q3pBSkJnTlYKQkFZVEFrRlZNUk13RVFZRFZRUUlFd3BUYjIxbExWTjBZWFJsTVNFd0h3WURWUVFLRXhoSmJuUmxjbTVsZENCWAphV1JuYVhSeklGQjBlU0JNZEdRd0hoY05NVEl4TVRFeU1qTTBNelF4V2hjTk1UWXhNakl4TWpNME16UXhXakJGCk1Rc3dDUVlEVlFRR0V3SkJWVEVUTUJFR0ExVUVDQk1LVTI5dFpTMVRkR0YwWlRFaE1COEdBMVVFQ2hNWVNXNTAKWlhKdVpYUWdWMmxrWjJsMGN5QlFkSGtnVEhSa01JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQgpDZ0tDQVFFQXZ0SDR3S0xZbElYWmxmWVFGSnRYWlZDM2ZEOFhNYXJ6d3ZiL2ZIVXlKNk52TlN0TitIN0dIcDMvClFoWmJTYVJ5cUs1aHU1eFh0RkxnbkkwUUc4b0UxTmxYYmN6akg0NUxlSFdoUElkYzJ1SFNwelhpYzc4a091Z00KWTF2bmc0SjEwUEY2K1QyRk5haXYwaVhlSVFxOXhid3dQWXBmbFZpUXlKbnpHQ0laN1ZHYW42R2JSS3p5VEtjQgo1OHl4MjRwSnErQ3ZpTFhFWTUyVElXMWw1aW1jakd2THRsQ3AxemE5cUJaYTRYR29WcUhpMWtSWGtkRFNIdHk2CmxaV2ozS3hvUnZUYmlhQkNIKzc1VTdyaWZTNmZSOWxxaldFNTdiQ0dvejcrQkJ1OVltUEt0STFLa3lIRnFXcHgKYUpjL0FLZjl4Z2crVXVtZXFWY2lyVW1Bc0hKck13SURBUUFCbzRHbk1JR2tNQjBHQTFVZERnUVdCQlRzODNuawpMdG9YRmxtQlV0czNFSXhjVnZrdmNqQjFCZ05WSFNNRWJqQnNnQlRzODNua0x0b1hGbG1CVXRzM0VJeGNWdmt2CmNxRkpwRWN3UlRFTE1Ba0dBMVVFQmhNQ1FWVXhFekFSQmdOVkJBZ1RDbE52YldVdFUzUmhkR1V4SVRBZkJnTlYKQkFvVEdFbHVkR1Z5Ym1WMElGZHBaR2RwZEhNZ1VIUjVJRXgwWklJSkFNS1IvTnN5ZmNhek1Bd0dBMVVkRXdRRgpNQU1CQWY4d0RRWUpLb1pJaHZjTkFRRUZCUUFEZ2dFQkFCdzd3LzVrNGQ1ZFZEZ2QvT09PbVhkYWFDSUt2dDdkCjNudGx2MVNTdkFvS1Q4ZDhsdDk3RG01UnJtZWZCSTEzSTJ5aXZaZzViZlRnZTQrdkFWNlZkTEZkV2VGcDFiL0YKT1prWVV2NkE4bzVIVzBPV1FZVlgyNnpJcUJjRzJRcm0zcmVpU2w1Qkx2cGoxV1NwQ3NZdnM1a2FPNHZGcE1hawovSUNnZFpEK3J4d3hmOFZiLzZmbnRLeXdXU0xnd0tIM21KK1owa1JscHExZzFvaWVpT20xL2dwWjM1czBZdW9yClhaYmE5cHRmTENZU2dnZy9xYzNkM2QwdGJIcGxLWWt3Rm03ZjVPUkdIRFNENVNKbStnSTdSUEUrNGJPOHE3OVIKUEFmYkcxVUd1SjBiL29pZ2FnY2lIaEpwODUxU1FSWWYzSnVOU2MxN0JuSzJMNUlFdHpqcXIrUT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","signing_key":{"key":"-----BEGIN PRIVATE KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n","cert":"-----BEGIN PUBLIC KEY-----\nMIGf...bpP/t3\n+JGNGIRMj1hF1rnb6QIDAQAB\n-----END PUBLIC KEY-----\n"},"thumbprints":["499fdf1c2218a99c8595aac2fd95ce36f0a6d59d"],"idpinitiated":{"enabled":true,"client_id":"client_id","client_protocol":"samlp","client_authorizequery":"type=code&timeout=30"},"bindingMethod":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect","decryptionKey":{"key":"-----BEGIN PRIVATE KEY-----\n...{your private key here}...\n-----END PRIVATE KEY-----","cert":"-----BEGIN CERTIFICATE-----\n...{your public key cert here}...\n-----END CERTIFICATE-----"},"tenant_domain":"example.com","disableSignout":false,"domain_aliases":["example.com","example.coz"],"signInEndpoint":"https://saml-from-metadata-xml.provider/sign_in","digestAlgorithm":"sha256","protocolBinding":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST","requestTemplate":"\n @@Issuer@@\n","signOutEndpoint":"https://saml-from-metadata-xml.provider/sign_out","upstream_params":{"screen_name":{"alias":"login_hint"}},"strategy_version":2,"user_id_attribute":"https://saml.provider/imi/ns/identity-200810","signatureAlgorithm":"rsa-sha256"},"strategy":"samlp","name":"Acceptance-Test-SAML-TestAccConnectionSAML","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/samlp/VWBSra6g","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SAML-TestAccConnectionSAML","enabled_clients":[],"realms":["Acceptance-Test-SAML-TestAccConnectionSAML"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 139.880583ms + duration: 150.83225ms - id: 5 request: proto: HTTP/1.1 @@ -199,8 +195,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_GFRkNPx9npSLye37 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_AooOEYitZrAAaqEa method: PATCH response: proto: HTTP/2.0 @@ -210,33 +206,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_GFRkNPx9npSLye37","options":{"cert":"-----BEGIN CERTIFICATE-----\nMIIDtTCCAp2gAwIBAgIJAMKR/NsyfcazMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV\nBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBX\naWRnaXRzIFB0eSBMdGQwHhcNMTIxMTEyMjM0MzQxWhcNMTYxMjIxMjM0MzQxWjBF\nMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50\nZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEAvtH4wKLYlIXZlfYQFJtXZVC3fD8XMarzwvb/fHUyJ6NvNStN+H7GHp3/\nQhZbSaRyqK5hu5xXtFLgnI0QG8oE1NlXbczjH45LeHWhPIdc2uHSpzXic78kOugM\nY1vng4J10PF6+T2FNaiv0iXeIQq9xbwwPYpflViQyJnzGCIZ7VGan6GbRKzyTKcB\n58yx24pJq+CviLXEY52TIW1l5imcjGvLtlCp1za9qBZa4XGoVqHi1kRXkdDSHty6\nlZWj3KxoRvTbiaBCH+75U7rifS6fR9lqjWE57bCGoz7+BBu9YmPKtI1KkyHFqWpx\naJc/AKf9xgg+UumeqVcirUmAsHJrMwIDAQABo4GnMIGkMB0GA1UdDgQWBBTs83nk\nLtoXFlmBUts3EIxcVvkvcjB1BgNVHSMEbjBsgBTs83nkLtoXFlmBUts3EIxcVvkv\ncqFJpEcwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgTClNvbWUtU3RhdGUxITAfBgNV\nBAoTGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZIIJAMKR/NsyfcazMAwGA1UdEwQF\nMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBABw7w/5k4d5dVDgd/OOOmXdaaCIKvt7d\n3ntlv1SSvAoKT8d8lt97Dm5RrmefBI13I2yivZg5bfTge4+vAV6VdLFdWeFp1b/F\nOZkYUv6A8o5HW0OWQYVX26zIqBcG2Qrm3reiSl5BLvpj1WSpCsYvs5kaO4vFpMak\n/ICgdZD+rxwxf8Vb/6fntKywWSLgwKH3mJ+Z0kRlpq1g1oieiOm1/gpZ35s0Yuor\nXZba9ptfLCYSggg/qc3d3d0tbHplKYkwFm7f5ORGHDSD5SJm+gI7RPE+4bO8q79R\nPAfbG1UGuJ0b/oigagciHhJp851SQRYf3JuNSc17BnK2L5IEtzjqr+Q=\n-----END CERTIFICATE-----\n","expires":"2016-12-21T23:43:41.000Z","subject":{"countryName":"AU","organizationName":"Internet Widgits Pty Ltd","stateOrProvinceName":"Some-State"},"entityId":"example","fieldsMap":{"name":["name"],"email":["emailaddress","nameidentifier"],"family_name":"appelido"},"metadataUrl":"https://github.com/raw/auth0/terraform-provider-auth0/132b28c30dfafbe018db0efe3ce2c98c452d4f9c/test/data/saml_metadata.xml","signingCert":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUR0VENDQXAyZ0F3SUJBZ0lKQU1LUi9Oc3lmY2F6TUEwR0NTcUdTSWIzRFFFQkJRVUFNRVV4Q3pBSkJnTlYKQkFZVEFrRlZNUk13RVFZRFZRUUlFd3BUYjIxbExWTjBZWFJsTVNFd0h3WURWUVFLRXhoSmJuUmxjbTVsZENCWAphV1JuYVhSeklGQjBlU0JNZEdRd0hoY05NVEl4TVRFeU1qTTBNelF4V2hjTk1UWXhNakl4TWpNME16UXhXakJGCk1Rc3dDUVlEVlFRR0V3SkJWVEVUTUJFR0ExVUVDQk1LVTI5dFpTMVRkR0YwWlRFaE1COEdBMVVFQ2hNWVNXNTAKWlhKdVpYUWdWMmxrWjJsMGN5QlFkSGtnVEhSa01JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQgpDZ0tDQVFFQXZ0SDR3S0xZbElYWmxmWVFGSnRYWlZDM2ZEOFhNYXJ6d3ZiL2ZIVXlKNk52TlN0TitIN0dIcDMvClFoWmJTYVJ5cUs1aHU1eFh0RkxnbkkwUUc4b0UxTmxYYmN6akg0NUxlSFdoUElkYzJ1SFNwelhpYzc4a091Z00KWTF2bmc0SjEwUEY2K1QyRk5haXYwaVhlSVFxOXhid3dQWXBmbFZpUXlKbnpHQ0laN1ZHYW42R2JSS3p5VEtjQgo1OHl4MjRwSnErQ3ZpTFhFWTUyVElXMWw1aW1jakd2THRsQ3AxemE5cUJaYTRYR29WcUhpMWtSWGtkRFNIdHk2CmxaV2ozS3hvUnZUYmlhQkNIKzc1VTdyaWZTNmZSOWxxaldFNTdiQ0dvejcrQkJ1OVltUEt0STFLa3lIRnFXcHgKYUpjL0FLZjl4Z2crVXVtZXFWY2lyVW1Bc0hKck13SURBUUFCbzRHbk1JR2tNQjBHQTFVZERnUVdCQlRzODNuawpMdG9YRmxtQlV0czNFSXhjVnZrdmNqQjFCZ05WSFNNRWJqQnNnQlRzODNua0x0b1hGbG1CVXRzM0VJeGNWdmt2CmNxRkpwRWN3UlRFTE1Ba0dBMVVFQmhNQ1FWVXhFekFSQmdOVkJBZ1RDbE52YldVdFUzUmhkR1V4SVRBZkJnTlYKQkFvVEdFbHVkR1Z5Ym1WMElGZHBaR2RwZEhNZ1VIUjVJRXgwWklJSkFNS1IvTnN5ZmNhek1Bd0dBMVVkRXdRRgpNQU1CQWY4d0RRWUpLb1pJaHZjTkFRRUZCUUFEZ2dFQkFCdzd3LzVrNGQ1ZFZEZ2QvT09PbVhkYWFDSUt2dDdkCjNudGx2MVNTdkFvS1Q4ZDhsdDk3RG01UnJtZWZCSTEzSTJ5aXZaZzViZlRnZTQrdkFWNlZkTEZkV2VGcDFiL0YKT1prWVV2NkE4bzVIVzBPV1FZVlgyNnpJcUJjRzJRcm0zcmVpU2w1Qkx2cGoxV1NwQ3NZdnM1a2FPNHZGcE1hawovSUNnZFpEK3J4d3hmOFZiLzZmbnRLeXdXU0xnd0tIM21KK1owa1JscHExZzFvaWVpT20xL2dwWjM1czBZdW9yClhaYmE5cHRmTENZU2dnZy9xYzNkM2QwdGJIcGxLWWt3Rm03ZjVPUkdIRFNENVNKbStnSTdSUEUrNGJPOHE3OVIKUEFmYkcxVUd1SjBiL29pZ2FnY2lIaEpwODUxU1FSWWYzSnVOU2MxN0JuSzJMNUlFdHpqcXIrUT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","thumbprints":["499fdf1c2218a99c8595aac2fd95ce36f0a6d59d"],"idpinitiated":{"enabled":true,"client_id":"client_id","client_protocol":"samlp","client_authorizequery":"type=code&timeout=60"},"bindingMethod":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect","decryptionKey":{"key":"-----BEGIN PRIVATE KEY-----\n...{your updated private key here}...\n-----END PRIVATE KEY-----","cert":"-----BEGIN CERTIFICATE-----\n...{your updated public key cert here}...\n-----END CERTIFICATE-----"},"tenant_domain":"example.com","disableSignout":true,"domain_aliases":["example.com","example.coz"],"signInEndpoint":"https://saml-from-metadata-xml.provider/sign_in","digestAlgorithm":"sha256","protocolBinding":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST","signOutEndpoint":"https://saml-from-metadata-xml.provider/sign_out","signatureAlgorithm":"rsa-sha256","set_user_root_attributes":"on_first_login"},"strategy":"samlp","name":"Acceptance-Test-SAML-TestAccConnectionSAML","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/samlp/qay8JLZX","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-SAML-TestAccConnectionSAML","enabled_clients":[],"realms":["Acceptance-Test-SAML-TestAccConnectionSAML"]}' + body: '{"id":"con_AooOEYitZrAAaqEa","options":{"cert":"-----BEGIN CERTIFICATE-----\nMIIDtTCCAp2gAwIBAgIJAMKR/NsyfcazMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV\nBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBX\naWRnaXRzIFB0eSBMdGQwHhcNMTIxMTEyMjM0MzQxWhcNMTYxMjIxMjM0MzQxWjBF\nMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50\nZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEAvtH4wKLYlIXZlfYQFJtXZVC3fD8XMarzwvb/fHUyJ6NvNStN+H7GHp3/\nQhZbSaRyqK5hu5xXtFLgnI0QG8oE1NlXbczjH45LeHWhPIdc2uHSpzXic78kOugM\nY1vng4J10PF6+T2FNaiv0iXeIQq9xbwwPYpflViQyJnzGCIZ7VGan6GbRKzyTKcB\n58yx24pJq+CviLXEY52TIW1l5imcjGvLtlCp1za9qBZa4XGoVqHi1kRXkdDSHty6\nlZWj3KxoRvTbiaBCH+75U7rifS6fR9lqjWE57bCGoz7+BBu9YmPKtI1KkyHFqWpx\naJc/AKf9xgg+UumeqVcirUmAsHJrMwIDAQABo4GnMIGkMB0GA1UdDgQWBBTs83nk\nLtoXFlmBUts3EIxcVvkvcjB1BgNVHSMEbjBsgBTs83nkLtoXFlmBUts3EIxcVvkv\ncqFJpEcwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgTClNvbWUtU3RhdGUxITAfBgNV\nBAoTGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZIIJAMKR/NsyfcazMAwGA1UdEwQF\nMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBABw7w/5k4d5dVDgd/OOOmXdaaCIKvt7d\n3ntlv1SSvAoKT8d8lt97Dm5RrmefBI13I2yivZg5bfTge4+vAV6VdLFdWeFp1b/F\nOZkYUv6A8o5HW0OWQYVX26zIqBcG2Qrm3reiSl5BLvpj1WSpCsYvs5kaO4vFpMak\n/ICgdZD+rxwxf8Vb/6fntKywWSLgwKH3mJ+Z0kRlpq1g1oieiOm1/gpZ35s0Yuor\nXZba9ptfLCYSggg/qc3d3d0tbHplKYkwFm7f5ORGHDSD5SJm+gI7RPE+4bO8q79R\nPAfbG1UGuJ0b/oigagciHhJp851SQRYf3JuNSc17BnK2L5IEtzjqr+Q=\n-----END CERTIFICATE-----\n","expires":"2016-12-21T23:43:41.000Z","subject":{"countryName":"AU","organizationName":"Internet Widgits Pty Ltd","stateOrProvinceName":"Some-State"},"entityId":"example","fieldsMap":{"name":["name"],"email":["emailaddress","nameidentifier"],"family_name":"appelido"},"metadataUrl":"https://github.com/raw/auth0/terraform-provider-auth0/132b28c30dfafbe018db0efe3ce2c98c452d4f9c/test/data/saml_metadata.xml","signingCert":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUR0VENDQXAyZ0F3SUJBZ0lKQU1LUi9Oc3lmY2F6TUEwR0NTcUdTSWIzRFFFQkJRVUFNRVV4Q3pBSkJnTlYKQkFZVEFrRlZNUk13RVFZRFZRUUlFd3BUYjIxbExWTjBZWFJsTVNFd0h3WURWUVFLRXhoSmJuUmxjbTVsZENCWAphV1JuYVhSeklGQjBlU0JNZEdRd0hoY05NVEl4TVRFeU1qTTBNelF4V2hjTk1UWXhNakl4TWpNME16UXhXakJGCk1Rc3dDUVlEVlFRR0V3SkJWVEVUTUJFR0ExVUVDQk1LVTI5dFpTMVRkR0YwWlRFaE1COEdBMVVFQ2hNWVNXNTAKWlhKdVpYUWdWMmxrWjJsMGN5QlFkSGtnVEhSa01JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQgpDZ0tDQVFFQXZ0SDR3S0xZbElYWmxmWVFGSnRYWlZDM2ZEOFhNYXJ6d3ZiL2ZIVXlKNk52TlN0TitIN0dIcDMvClFoWmJTYVJ5cUs1aHU1eFh0RkxnbkkwUUc4b0UxTmxYYmN6akg0NUxlSFdoUElkYzJ1SFNwelhpYzc4a091Z00KWTF2bmc0SjEwUEY2K1QyRk5haXYwaVhlSVFxOXhid3dQWXBmbFZpUXlKbnpHQ0laN1ZHYW42R2JSS3p5VEtjQgo1OHl4MjRwSnErQ3ZpTFhFWTUyVElXMWw1aW1jakd2THRsQ3AxemE5cUJaYTRYR29WcUhpMWtSWGtkRFNIdHk2CmxaV2ozS3hvUnZUYmlhQkNIKzc1VTdyaWZTNmZSOWxxaldFNTdiQ0dvejcrQkJ1OVltUEt0STFLa3lIRnFXcHgKYUpjL0FLZjl4Z2crVXVtZXFWY2lyVW1Bc0hKck13SURBUUFCbzRHbk1JR2tNQjBHQTFVZERnUVdCQlRzODNuawpMdG9YRmxtQlV0czNFSXhjVnZrdmNqQjFCZ05WSFNNRWJqQnNnQlRzODNua0x0b1hGbG1CVXRzM0VJeGNWdmt2CmNxRkpwRWN3UlRFTE1Ba0dBMVVFQmhNQ1FWVXhFekFSQmdOVkJBZ1RDbE52YldVdFUzUmhkR1V4SVRBZkJnTlYKQkFvVEdFbHVkR1Z5Ym1WMElGZHBaR2RwZEhNZ1VIUjVJRXgwWklJSkFNS1IvTnN5ZmNhek1Bd0dBMVVkRXdRRgpNQU1CQWY4d0RRWUpLb1pJaHZjTkFRRUZCUUFEZ2dFQkFCdzd3LzVrNGQ1ZFZEZ2QvT09PbVhkYWFDSUt2dDdkCjNudGx2MVNTdkFvS1Q4ZDhsdDk3RG01UnJtZWZCSTEzSTJ5aXZaZzViZlRnZTQrdkFWNlZkTEZkV2VGcDFiL0YKT1prWVV2NkE4bzVIVzBPV1FZVlgyNnpJcUJjRzJRcm0zcmVpU2w1Qkx2cGoxV1NwQ3NZdnM1a2FPNHZGcE1hawovSUNnZFpEK3J4d3hmOFZiLzZmbnRLeXdXU0xnd0tIM21KK1owa1JscHExZzFvaWVpT20xL2dwWjM1czBZdW9yClhaYmE5cHRmTENZU2dnZy9xYzNkM2QwdGJIcGxLWWt3Rm03ZjVPUkdIRFNENVNKbStnSTdSUEUrNGJPOHE3OVIKUEFmYkcxVUd1SjBiL29pZ2FnY2lIaEpwODUxU1FSWWYzSnVOU2MxN0JuSzJMNUlFdHpqcXIrUT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","thumbprints":["499fdf1c2218a99c8595aac2fd95ce36f0a6d59d"],"idpinitiated":{"enabled":true,"client_id":"client_id","client_protocol":"samlp","client_authorizequery":"type=code&timeout=60"},"bindingMethod":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect","decryptionKey":{"key":"-----BEGIN PRIVATE KEY-----\n...{your updated private key here}...\n-----END PRIVATE KEY-----","cert":"-----BEGIN CERTIFICATE-----\n...{your updated public key cert here}...\n-----END CERTIFICATE-----"},"tenant_domain":"example.com","disableSignout":true,"domain_aliases":["example.com","example.coz"],"signInEndpoint":"https://saml-from-metadata-xml.provider/sign_in","digestAlgorithm":"sha256","protocolBinding":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST","signOutEndpoint":"https://saml-from-metadata-xml.provider/sign_out","signatureAlgorithm":"rsa-sha256","set_user_root_attributes":"on_first_login"},"strategy":"samlp","name":"Acceptance-Test-SAML-TestAccConnectionSAML","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/samlp/VWBSra6g","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-SAML-TestAccConnectionSAML","enabled_clients":[],"realms":["Acceptance-Test-SAML-TestAccConnectionSAML"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.069039084s + duration: 452.692167ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_GFRkNPx9npSLye37 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_AooOEYitZrAAaqEa method: GET response: proto: HTTP/2.0 @@ -246,33 +241,32 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_GFRkNPx9npSLye37","options":{"cert":"-----BEGIN CERTIFICATE-----\nMIIDtTCCAp2gAwIBAgIJAMKR/NsyfcazMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV\nBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBX\naWRnaXRzIFB0eSBMdGQwHhcNMTIxMTEyMjM0MzQxWhcNMTYxMjIxMjM0MzQxWjBF\nMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50\nZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEAvtH4wKLYlIXZlfYQFJtXZVC3fD8XMarzwvb/fHUyJ6NvNStN+H7GHp3/\nQhZbSaRyqK5hu5xXtFLgnI0QG8oE1NlXbczjH45LeHWhPIdc2uHSpzXic78kOugM\nY1vng4J10PF6+T2FNaiv0iXeIQq9xbwwPYpflViQyJnzGCIZ7VGan6GbRKzyTKcB\n58yx24pJq+CviLXEY52TIW1l5imcjGvLtlCp1za9qBZa4XGoVqHi1kRXkdDSHty6\nlZWj3KxoRvTbiaBCH+75U7rifS6fR9lqjWE57bCGoz7+BBu9YmPKtI1KkyHFqWpx\naJc/AKf9xgg+UumeqVcirUmAsHJrMwIDAQABo4GnMIGkMB0GA1UdDgQWBBTs83nk\nLtoXFlmBUts3EIxcVvkvcjB1BgNVHSMEbjBsgBTs83nkLtoXFlmBUts3EIxcVvkv\ncqFJpEcwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgTClNvbWUtU3RhdGUxITAfBgNV\nBAoTGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZIIJAMKR/NsyfcazMAwGA1UdEwQF\nMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBABw7w/5k4d5dVDgd/OOOmXdaaCIKvt7d\n3ntlv1SSvAoKT8d8lt97Dm5RrmefBI13I2yivZg5bfTge4+vAV6VdLFdWeFp1b/F\nOZkYUv6A8o5HW0OWQYVX26zIqBcG2Qrm3reiSl5BLvpj1WSpCsYvs5kaO4vFpMak\n/ICgdZD+rxwxf8Vb/6fntKywWSLgwKH3mJ+Z0kRlpq1g1oieiOm1/gpZ35s0Yuor\nXZba9ptfLCYSggg/qc3d3d0tbHplKYkwFm7f5ORGHDSD5SJm+gI7RPE+4bO8q79R\nPAfbG1UGuJ0b/oigagciHhJp851SQRYf3JuNSc17BnK2L5IEtzjqr+Q=\n-----END CERTIFICATE-----\n","expires":"2016-12-21T23:43:41.000Z","subject":{"countryName":"AU","organizationName":"Internet Widgits Pty Ltd","stateOrProvinceName":"Some-State"},"entityId":"example","fieldsMap":{"name":["name"],"email":["emailaddress","nameidentifier"],"family_name":"appelido"},"metadataUrl":"https://github.com/raw/auth0/terraform-provider-auth0/132b28c30dfafbe018db0efe3ce2c98c452d4f9c/test/data/saml_metadata.xml","signingCert":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUR0VENDQXAyZ0F3SUJBZ0lKQU1LUi9Oc3lmY2F6TUEwR0NTcUdTSWIzRFFFQkJRVUFNRVV4Q3pBSkJnTlYKQkFZVEFrRlZNUk13RVFZRFZRUUlFd3BUYjIxbExWTjBZWFJsTVNFd0h3WURWUVFLRXhoSmJuUmxjbTVsZENCWAphV1JuYVhSeklGQjBlU0JNZEdRd0hoY05NVEl4TVRFeU1qTTBNelF4V2hjTk1UWXhNakl4TWpNME16UXhXakJGCk1Rc3dDUVlEVlFRR0V3SkJWVEVUTUJFR0ExVUVDQk1LVTI5dFpTMVRkR0YwWlRFaE1COEdBMVVFQ2hNWVNXNTAKWlhKdVpYUWdWMmxrWjJsMGN5QlFkSGtnVEhSa01JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQgpDZ0tDQVFFQXZ0SDR3S0xZbElYWmxmWVFGSnRYWlZDM2ZEOFhNYXJ6d3ZiL2ZIVXlKNk52TlN0TitIN0dIcDMvClFoWmJTYVJ5cUs1aHU1eFh0RkxnbkkwUUc4b0UxTmxYYmN6akg0NUxlSFdoUElkYzJ1SFNwelhpYzc4a091Z00KWTF2bmc0SjEwUEY2K1QyRk5haXYwaVhlSVFxOXhid3dQWXBmbFZpUXlKbnpHQ0laN1ZHYW42R2JSS3p5VEtjQgo1OHl4MjRwSnErQ3ZpTFhFWTUyVElXMWw1aW1jakd2THRsQ3AxemE5cUJaYTRYR29WcUhpMWtSWGtkRFNIdHk2CmxaV2ozS3hvUnZUYmlhQkNIKzc1VTdyaWZTNmZSOWxxaldFNTdiQ0dvejcrQkJ1OVltUEt0STFLa3lIRnFXcHgKYUpjL0FLZjl4Z2crVXVtZXFWY2lyVW1Bc0hKck13SURBUUFCbzRHbk1JR2tNQjBHQTFVZERnUVdCQlRzODNuawpMdG9YRmxtQlV0czNFSXhjVnZrdmNqQjFCZ05WSFNNRWJqQnNnQlRzODNua0x0b1hGbG1CVXRzM0VJeGNWdmt2CmNxRkpwRWN3UlRFTE1Ba0dBMVVFQmhNQ1FWVXhFekFSQmdOVkJBZ1RDbE52YldVdFUzUmhkR1V4SVRBZkJnTlYKQkFvVEdFbHVkR1Z5Ym1WMElGZHBaR2RwZEhNZ1VIUjVJRXgwWklJSkFNS1IvTnN5ZmNhek1Bd0dBMVVkRXdRRgpNQU1CQWY4d0RRWUpLb1pJaHZjTkFRRUZCUUFEZ2dFQkFCdzd3LzVrNGQ1ZFZEZ2QvT09PbVhkYWFDSUt2dDdkCjNudGx2MVNTdkFvS1Q4ZDhsdDk3RG01UnJtZWZCSTEzSTJ5aXZaZzViZlRnZTQrdkFWNlZkTEZkV2VGcDFiL0YKT1prWVV2NkE4bzVIVzBPV1FZVlgyNnpJcUJjRzJRcm0zcmVpU2w1Qkx2cGoxV1NwQ3NZdnM1a2FPNHZGcE1hawovSUNnZFpEK3J4d3hmOFZiLzZmbnRLeXdXU0xnd0tIM21KK1owa1JscHExZzFvaWVpT20xL2dwWjM1czBZdW9yClhaYmE5cHRmTENZU2dnZy9xYzNkM2QwdGJIcGxLWWt3Rm03ZjVPUkdIRFNENVNKbStnSTdSUEUrNGJPOHE3OVIKUEFmYkcxVUd1SjBiL29pZ2FnY2lIaEpwODUxU1FSWWYzSnVOU2MxN0JuSzJMNUlFdHpqcXIrUT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","thumbprints":["499fdf1c2218a99c8595aac2fd95ce36f0a6d59d"],"idpinitiated":{"enabled":true,"client_id":"client_id","client_protocol":"samlp","client_authorizequery":"type=code&timeout=60"},"bindingMethod":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect","decryptionKey":{"key":"-----BEGIN PRIVATE KEY-----\n...{your updated private key here}...\n-----END PRIVATE KEY-----","cert":"-----BEGIN CERTIFICATE-----\n...{your updated public key cert here}...\n-----END CERTIFICATE-----"},"tenant_domain":"example.com","disableSignout":true,"domain_aliases":["example.com","example.coz"],"signInEndpoint":"https://saml-from-metadata-xml.provider/sign_in","digestAlgorithm":"sha256","protocolBinding":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST","signOutEndpoint":"https://saml-from-metadata-xml.provider/sign_out","signatureAlgorithm":"rsa-sha256","set_user_root_attributes":"on_first_login"},"strategy":"samlp","name":"Acceptance-Test-SAML-TestAccConnectionSAML","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/samlp/qay8JLZX","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-SAML-TestAccConnectionSAML","enabled_clients":[],"realms":["Acceptance-Test-SAML-TestAccConnectionSAML"]}' + body: '{"id":"con_AooOEYitZrAAaqEa","options":{"cert":"-----BEGIN CERTIFICATE-----\nMIIDtTCCAp2gAwIBAgIJAMKR/NsyfcazMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV\nBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBX\naWRnaXRzIFB0eSBMdGQwHhcNMTIxMTEyMjM0MzQxWhcNMTYxMjIxMjM0MzQxWjBF\nMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50\nZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEAvtH4wKLYlIXZlfYQFJtXZVC3fD8XMarzwvb/fHUyJ6NvNStN+H7GHp3/\nQhZbSaRyqK5hu5xXtFLgnI0QG8oE1NlXbczjH45LeHWhPIdc2uHSpzXic78kOugM\nY1vng4J10PF6+T2FNaiv0iXeIQq9xbwwPYpflViQyJnzGCIZ7VGan6GbRKzyTKcB\n58yx24pJq+CviLXEY52TIW1l5imcjGvLtlCp1za9qBZa4XGoVqHi1kRXkdDSHty6\nlZWj3KxoRvTbiaBCH+75U7rifS6fR9lqjWE57bCGoz7+BBu9YmPKtI1KkyHFqWpx\naJc/AKf9xgg+UumeqVcirUmAsHJrMwIDAQABo4GnMIGkMB0GA1UdDgQWBBTs83nk\nLtoXFlmBUts3EIxcVvkvcjB1BgNVHSMEbjBsgBTs83nkLtoXFlmBUts3EIxcVvkv\ncqFJpEcwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgTClNvbWUtU3RhdGUxITAfBgNV\nBAoTGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZIIJAMKR/NsyfcazMAwGA1UdEwQF\nMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBABw7w/5k4d5dVDgd/OOOmXdaaCIKvt7d\n3ntlv1SSvAoKT8d8lt97Dm5RrmefBI13I2yivZg5bfTge4+vAV6VdLFdWeFp1b/F\nOZkYUv6A8o5HW0OWQYVX26zIqBcG2Qrm3reiSl5BLvpj1WSpCsYvs5kaO4vFpMak\n/ICgdZD+rxwxf8Vb/6fntKywWSLgwKH3mJ+Z0kRlpq1g1oieiOm1/gpZ35s0Yuor\nXZba9ptfLCYSggg/qc3d3d0tbHplKYkwFm7f5ORGHDSD5SJm+gI7RPE+4bO8q79R\nPAfbG1UGuJ0b/oigagciHhJp851SQRYf3JuNSc17BnK2L5IEtzjqr+Q=\n-----END CERTIFICATE-----\n","expires":"2016-12-21T23:43:41.000Z","subject":{"countryName":"AU","organizationName":"Internet Widgits Pty Ltd","stateOrProvinceName":"Some-State"},"entityId":"example","fieldsMap":{"name":["name"],"email":["emailaddress","nameidentifier"],"family_name":"appelido"},"metadataUrl":"https://github.com/raw/auth0/terraform-provider-auth0/132b28c30dfafbe018db0efe3ce2c98c452d4f9c/test/data/saml_metadata.xml","signingCert":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUR0VENDQXAyZ0F3SUJBZ0lKQU1LUi9Oc3lmY2F6TUEwR0NTcUdTSWIzRFFFQkJRVUFNRVV4Q3pBSkJnTlYKQkFZVEFrRlZNUk13RVFZRFZRUUlFd3BUYjIxbExWTjBZWFJsTVNFd0h3WURWUVFLRXhoSmJuUmxjbTVsZENCWAphV1JuYVhSeklGQjBlU0JNZEdRd0hoY05NVEl4TVRFeU1qTTBNelF4V2hjTk1UWXhNakl4TWpNME16UXhXakJGCk1Rc3dDUVlEVlFRR0V3SkJWVEVUTUJFR0ExVUVDQk1LVTI5dFpTMVRkR0YwWlRFaE1COEdBMVVFQ2hNWVNXNTAKWlhKdVpYUWdWMmxrWjJsMGN5QlFkSGtnVEhSa01JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQgpDZ0tDQVFFQXZ0SDR3S0xZbElYWmxmWVFGSnRYWlZDM2ZEOFhNYXJ6d3ZiL2ZIVXlKNk52TlN0TitIN0dIcDMvClFoWmJTYVJ5cUs1aHU1eFh0RkxnbkkwUUc4b0UxTmxYYmN6akg0NUxlSFdoUElkYzJ1SFNwelhpYzc4a091Z00KWTF2bmc0SjEwUEY2K1QyRk5haXYwaVhlSVFxOXhid3dQWXBmbFZpUXlKbnpHQ0laN1ZHYW42R2JSS3p5VEtjQgo1OHl4MjRwSnErQ3ZpTFhFWTUyVElXMWw1aW1jakd2THRsQ3AxemE5cUJaYTRYR29WcUhpMWtSWGtkRFNIdHk2CmxaV2ozS3hvUnZUYmlhQkNIKzc1VTdyaWZTNmZSOWxxaldFNTdiQ0dvejcrQkJ1OVltUEt0STFLa3lIRnFXcHgKYUpjL0FLZjl4Z2crVXVtZXFWY2lyVW1Bc0hKck13SURBUUFCbzRHbk1JR2tNQjBHQTFVZERnUVdCQlRzODNuawpMdG9YRmxtQlV0czNFSXhjVnZrdmNqQjFCZ05WSFNNRWJqQnNnQlRzODNua0x0b1hGbG1CVXRzM0VJeGNWdmt2CmNxRkpwRWN3UlRFTE1Ba0dBMVVFQmhNQ1FWVXhFekFSQmdOVkJBZ1RDbE52YldVdFUzUmhkR1V4SVRBZkJnTlYKQkFvVEdFbHVkR1Z5Ym1WMElGZHBaR2RwZEhNZ1VIUjVJRXgwWklJSkFNS1IvTnN5ZmNhek1Bd0dBMVVkRXdRRgpNQU1CQWY4d0RRWUpLb1pJaHZjTkFRRUZCUUFEZ2dFQkFCdzd3LzVrNGQ1ZFZEZ2QvT09PbVhkYWFDSUt2dDdkCjNudGx2MVNTdkFvS1Q4ZDhsdDk3RG01UnJtZWZCSTEzSTJ5aXZaZzViZlRnZTQrdkFWNlZkTEZkV2VGcDFiL0YKT1prWVV2NkE4bzVIVzBPV1FZVlgyNnpJcUJjRzJRcm0zcmVpU2w1Qkx2cGoxV1NwQ3NZdnM1a2FPNHZGcE1hawovSUNnZFpEK3J4d3hmOFZiLzZmbnRLeXdXU0xnd0tIM21KK1owa1JscHExZzFvaWVpT20xL2dwWjM1czBZdW9yClhaYmE5cHRmTENZU2dnZy9xYzNkM2QwdGJIcGxLWWt3Rm03ZjVPUkdIRFNENVNKbStnSTdSUEUrNGJPOHE3OVIKUEFmYkcxVUd1SjBiL29pZ2FnY2lIaEpwODUxU1FSWWYzSnVOU2MxN0JuSzJMNUlFdHpqcXIrUT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","thumbprints":["499fdf1c2218a99c8595aac2fd95ce36f0a6d59d"],"idpinitiated":{"enabled":true,"client_id":"client_id","client_protocol":"samlp","client_authorizequery":"type=code&timeout=60"},"bindingMethod":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect","decryptionKey":{"key":"-----BEGIN PRIVATE KEY-----\n...{your updated private key here}...\n-----END PRIVATE KEY-----","cert":"-----BEGIN CERTIFICATE-----\n...{your updated public key cert here}...\n-----END CERTIFICATE-----"},"tenant_domain":"example.com","disableSignout":true,"domain_aliases":["example.com","example.coz"],"signInEndpoint":"https://saml-from-metadata-xml.provider/sign_in","digestAlgorithm":"sha256","protocolBinding":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST","signOutEndpoint":"https://saml-from-metadata-xml.provider/sign_out","signatureAlgorithm":"rsa-sha256","set_user_root_attributes":"on_first_login"},"strategy":"samlp","name":"Acceptance-Test-SAML-TestAccConnectionSAML","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/samlp/VWBSra6g","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-SAML-TestAccConnectionSAML","enabled_clients":[],"realms":["Acceptance-Test-SAML-TestAccConnectionSAML"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 155.408708ms + duration: 147.489834ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - null + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_GFRkNPx9npSLye37 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_AooOEYitZrAAaqEa method: GET response: proto: HTTP/2.0 @@ -282,13 +276,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_GFRkNPx9npSLye37","options":{"cert":"-----BEGIN CERTIFICATE-----\nMIIDtTCCAp2gAwIBAgIJAMKR/NsyfcazMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV\nBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBX\naWRnaXRzIFB0eSBMdGQwHhcNMTIxMTEyMjM0MzQxWhcNMTYxMjIxMjM0MzQxWjBF\nMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50\nZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEAvtH4wKLYlIXZlfYQFJtXZVC3fD8XMarzwvb/fHUyJ6NvNStN+H7GHp3/\nQhZbSaRyqK5hu5xXtFLgnI0QG8oE1NlXbczjH45LeHWhPIdc2uHSpzXic78kOugM\nY1vng4J10PF6+T2FNaiv0iXeIQq9xbwwPYpflViQyJnzGCIZ7VGan6GbRKzyTKcB\n58yx24pJq+CviLXEY52TIW1l5imcjGvLtlCp1za9qBZa4XGoVqHi1kRXkdDSHty6\nlZWj3KxoRvTbiaBCH+75U7rifS6fR9lqjWE57bCGoz7+BBu9YmPKtI1KkyHFqWpx\naJc/AKf9xgg+UumeqVcirUmAsHJrMwIDAQABo4GnMIGkMB0GA1UdDgQWBBTs83nk\nLtoXFlmBUts3EIxcVvkvcjB1BgNVHSMEbjBsgBTs83nkLtoXFlmBUts3EIxcVvkv\ncqFJpEcwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgTClNvbWUtU3RhdGUxITAfBgNV\nBAoTGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZIIJAMKR/NsyfcazMAwGA1UdEwQF\nMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBABw7w/5k4d5dVDgd/OOOmXdaaCIKvt7d\n3ntlv1SSvAoKT8d8lt97Dm5RrmefBI13I2yivZg5bfTge4+vAV6VdLFdWeFp1b/F\nOZkYUv6A8o5HW0OWQYVX26zIqBcG2Qrm3reiSl5BLvpj1WSpCsYvs5kaO4vFpMak\n/ICgdZD+rxwxf8Vb/6fntKywWSLgwKH3mJ+Z0kRlpq1g1oieiOm1/gpZ35s0Yuor\nXZba9ptfLCYSggg/qc3d3d0tbHplKYkwFm7f5ORGHDSD5SJm+gI7RPE+4bO8q79R\nPAfbG1UGuJ0b/oigagciHhJp851SQRYf3JuNSc17BnK2L5IEtzjqr+Q=\n-----END CERTIFICATE-----\n","expires":"2016-12-21T23:43:41.000Z","subject":{"countryName":"AU","organizationName":"Internet Widgits Pty Ltd","stateOrProvinceName":"Some-State"},"entityId":"example","fieldsMap":{"name":["name"],"email":["emailaddress","nameidentifier"],"family_name":"appelido"},"metadataUrl":"https://github.com/raw/auth0/terraform-provider-auth0/132b28c30dfafbe018db0efe3ce2c98c452d4f9c/test/data/saml_metadata.xml","signingCert":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUR0VENDQXAyZ0F3SUJBZ0lKQU1LUi9Oc3lmY2F6TUEwR0NTcUdTSWIzRFFFQkJRVUFNRVV4Q3pBSkJnTlYKQkFZVEFrRlZNUk13RVFZRFZRUUlFd3BUYjIxbExWTjBZWFJsTVNFd0h3WURWUVFLRXhoSmJuUmxjbTVsZENCWAphV1JuYVhSeklGQjBlU0JNZEdRd0hoY05NVEl4TVRFeU1qTTBNelF4V2hjTk1UWXhNakl4TWpNME16UXhXakJGCk1Rc3dDUVlEVlFRR0V3SkJWVEVUTUJFR0ExVUVDQk1LVTI5dFpTMVRkR0YwWlRFaE1COEdBMVVFQ2hNWVNXNTAKWlhKdVpYUWdWMmxrWjJsMGN5QlFkSGtnVEhSa01JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQgpDZ0tDQVFFQXZ0SDR3S0xZbElYWmxmWVFGSnRYWlZDM2ZEOFhNYXJ6d3ZiL2ZIVXlKNk52TlN0TitIN0dIcDMvClFoWmJTYVJ5cUs1aHU1eFh0RkxnbkkwUUc4b0UxTmxYYmN6akg0NUxlSFdoUElkYzJ1SFNwelhpYzc4a091Z00KWTF2bmc0SjEwUEY2K1QyRk5haXYwaVhlSVFxOXhid3dQWXBmbFZpUXlKbnpHQ0laN1ZHYW42R2JSS3p5VEtjQgo1OHl4MjRwSnErQ3ZpTFhFWTUyVElXMWw1aW1jakd2THRsQ3AxemE5cUJaYTRYR29WcUhpMWtSWGtkRFNIdHk2CmxaV2ozS3hvUnZUYmlhQkNIKzc1VTdyaWZTNmZSOWxxaldFNTdiQ0dvejcrQkJ1OVltUEt0STFLa3lIRnFXcHgKYUpjL0FLZjl4Z2crVXVtZXFWY2lyVW1Bc0hKck13SURBUUFCbzRHbk1JR2tNQjBHQTFVZERnUVdCQlRzODNuawpMdG9YRmxtQlV0czNFSXhjVnZrdmNqQjFCZ05WSFNNRWJqQnNnQlRzODNua0x0b1hGbG1CVXRzM0VJeGNWdmt2CmNxRkpwRWN3UlRFTE1Ba0dBMVVFQmhNQ1FWVXhFekFSQmdOVkJBZ1RDbE52YldVdFUzUmhkR1V4SVRBZkJnTlYKQkFvVEdFbHVkR1Z5Ym1WMElGZHBaR2RwZEhNZ1VIUjVJRXgwWklJSkFNS1IvTnN5ZmNhek1Bd0dBMVVkRXdRRgpNQU1CQWY4d0RRWUpLb1pJaHZjTkFRRUZCUUFEZ2dFQkFCdzd3LzVrNGQ1ZFZEZ2QvT09PbVhkYWFDSUt2dDdkCjNudGx2MVNTdkFvS1Q4ZDhsdDk3RG01UnJtZWZCSTEzSTJ5aXZaZzViZlRnZTQrdkFWNlZkTEZkV2VGcDFiL0YKT1prWVV2NkE4bzVIVzBPV1FZVlgyNnpJcUJjRzJRcm0zcmVpU2w1Qkx2cGoxV1NwQ3NZdnM1a2FPNHZGcE1hawovSUNnZFpEK3J4d3hmOFZiLzZmbnRLeXdXU0xnd0tIM21KK1owa1JscHExZzFvaWVpT20xL2dwWjM1czBZdW9yClhaYmE5cHRmTENZU2dnZy9xYzNkM2QwdGJIcGxLWWt3Rm03ZjVPUkdIRFNENVNKbStnSTdSUEUrNGJPOHE3OVIKUEFmYkcxVUd1SjBiL29pZ2FnY2lIaEpwODUxU1FSWWYzSnVOU2MxN0JuSzJMNUlFdHpqcXIrUT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","thumbprints":["499fdf1c2218a99c8595aac2fd95ce36f0a6d59d"],"idpinitiated":{"enabled":true,"client_id":"client_id","client_protocol":"samlp","client_authorizequery":"type=code&timeout=60"},"bindingMethod":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect","decryptionKey":{"key":"-----BEGIN PRIVATE KEY-----\n...{your updated private key here}...\n-----END PRIVATE KEY-----","cert":"-----BEGIN CERTIFICATE-----\n...{your updated public key cert here}...\n-----END CERTIFICATE-----"},"tenant_domain":"example.com","disableSignout":true,"domain_aliases":["example.com","example.coz"],"signInEndpoint":"https://saml-from-metadata-xml.provider/sign_in","digestAlgorithm":"sha256","protocolBinding":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST","signOutEndpoint":"https://saml-from-metadata-xml.provider/sign_out","signatureAlgorithm":"rsa-sha256","set_user_root_attributes":"on_first_login"},"strategy":"samlp","name":"Acceptance-Test-SAML-TestAccConnectionSAML","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/samlp/qay8JLZX","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-SAML-TestAccConnectionSAML","enabled_clients":[],"realms":["Acceptance-Test-SAML-TestAccConnectionSAML"]}' + body: '{"id":"con_AooOEYitZrAAaqEa","options":{"cert":"-----BEGIN CERTIFICATE-----\nMIIDtTCCAp2gAwIBAgIJAMKR/NsyfcazMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV\nBAYTAkFVMRMwEQYDVQQIEwpTb21lLVN0YXRlMSEwHwYDVQQKExhJbnRlcm5ldCBX\naWRnaXRzIFB0eSBMdGQwHhcNMTIxMTEyMjM0MzQxWhcNMTYxMjIxMjM0MzQxWjBF\nMQswCQYDVQQGEwJBVTETMBEGA1UECBMKU29tZS1TdGF0ZTEhMB8GA1UEChMYSW50\nZXJuZXQgV2lkZ2l0cyBQdHkgTHRkMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB\nCgKCAQEAvtH4wKLYlIXZlfYQFJtXZVC3fD8XMarzwvb/fHUyJ6NvNStN+H7GHp3/\nQhZbSaRyqK5hu5xXtFLgnI0QG8oE1NlXbczjH45LeHWhPIdc2uHSpzXic78kOugM\nY1vng4J10PF6+T2FNaiv0iXeIQq9xbwwPYpflViQyJnzGCIZ7VGan6GbRKzyTKcB\n58yx24pJq+CviLXEY52TIW1l5imcjGvLtlCp1za9qBZa4XGoVqHi1kRXkdDSHty6\nlZWj3KxoRvTbiaBCH+75U7rifS6fR9lqjWE57bCGoz7+BBu9YmPKtI1KkyHFqWpx\naJc/AKf9xgg+UumeqVcirUmAsHJrMwIDAQABo4GnMIGkMB0GA1UdDgQWBBTs83nk\nLtoXFlmBUts3EIxcVvkvcjB1BgNVHSMEbjBsgBTs83nkLtoXFlmBUts3EIxcVvkv\ncqFJpEcwRTELMAkGA1UEBhMCQVUxEzARBgNVBAgTClNvbWUtU3RhdGUxITAfBgNV\nBAoTGEludGVybmV0IFdpZGdpdHMgUHR5IEx0ZIIJAMKR/NsyfcazMAwGA1UdEwQF\nMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBABw7w/5k4d5dVDgd/OOOmXdaaCIKvt7d\n3ntlv1SSvAoKT8d8lt97Dm5RrmefBI13I2yivZg5bfTge4+vAV6VdLFdWeFp1b/F\nOZkYUv6A8o5HW0OWQYVX26zIqBcG2Qrm3reiSl5BLvpj1WSpCsYvs5kaO4vFpMak\n/ICgdZD+rxwxf8Vb/6fntKywWSLgwKH3mJ+Z0kRlpq1g1oieiOm1/gpZ35s0Yuor\nXZba9ptfLCYSggg/qc3d3d0tbHplKYkwFm7f5ORGHDSD5SJm+gI7RPE+4bO8q79R\nPAfbG1UGuJ0b/oigagciHhJp851SQRYf3JuNSc17BnK2L5IEtzjqr+Q=\n-----END CERTIFICATE-----\n","expires":"2016-12-21T23:43:41.000Z","subject":{"countryName":"AU","organizationName":"Internet Widgits Pty Ltd","stateOrProvinceName":"Some-State"},"entityId":"example","fieldsMap":{"name":["name"],"email":["emailaddress","nameidentifier"],"family_name":"appelido"},"metadataUrl":"https://github.com/raw/auth0/terraform-provider-auth0/132b28c30dfafbe018db0efe3ce2c98c452d4f9c/test/data/saml_metadata.xml","signingCert":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSUR0VENDQXAyZ0F3SUJBZ0lKQU1LUi9Oc3lmY2F6TUEwR0NTcUdTSWIzRFFFQkJRVUFNRVV4Q3pBSkJnTlYKQkFZVEFrRlZNUk13RVFZRFZRUUlFd3BUYjIxbExWTjBZWFJsTVNFd0h3WURWUVFLRXhoSmJuUmxjbTVsZENCWAphV1JuYVhSeklGQjBlU0JNZEdRd0hoY05NVEl4TVRFeU1qTTBNelF4V2hjTk1UWXhNakl4TWpNME16UXhXakJGCk1Rc3dDUVlEVlFRR0V3SkJWVEVUTUJFR0ExVUVDQk1LVTI5dFpTMVRkR0YwWlRFaE1COEdBMVVFQ2hNWVNXNTAKWlhKdVpYUWdWMmxrWjJsMGN5QlFkSGtnVEhSa01JSUJJakFOQmdrcWhraUc5dzBCQVFFRkFBT0NBUThBTUlJQgpDZ0tDQVFFQXZ0SDR3S0xZbElYWmxmWVFGSnRYWlZDM2ZEOFhNYXJ6d3ZiL2ZIVXlKNk52TlN0TitIN0dIcDMvClFoWmJTYVJ5cUs1aHU1eFh0RkxnbkkwUUc4b0UxTmxYYmN6akg0NUxlSFdoUElkYzJ1SFNwelhpYzc4a091Z00KWTF2bmc0SjEwUEY2K1QyRk5haXYwaVhlSVFxOXhid3dQWXBmbFZpUXlKbnpHQ0laN1ZHYW42R2JSS3p5VEtjQgo1OHl4MjRwSnErQ3ZpTFhFWTUyVElXMWw1aW1jakd2THRsQ3AxemE5cUJaYTRYR29WcUhpMWtSWGtkRFNIdHk2CmxaV2ozS3hvUnZUYmlhQkNIKzc1VTdyaWZTNmZSOWxxaldFNTdiQ0dvejcrQkJ1OVltUEt0STFLa3lIRnFXcHgKYUpjL0FLZjl4Z2crVXVtZXFWY2lyVW1Bc0hKck13SURBUUFCbzRHbk1JR2tNQjBHQTFVZERnUVdCQlRzODNuawpMdG9YRmxtQlV0czNFSXhjVnZrdmNqQjFCZ05WSFNNRWJqQnNnQlRzODNua0x0b1hGbG1CVXRzM0VJeGNWdmt2CmNxRkpwRWN3UlRFTE1Ba0dBMVVFQmhNQ1FWVXhFekFSQmdOVkJBZ1RDbE52YldVdFUzUmhkR1V4SVRBZkJnTlYKQkFvVEdFbHVkR1Z5Ym1WMElGZHBaR2RwZEhNZ1VIUjVJRXgwWklJSkFNS1IvTnN5ZmNhek1Bd0dBMVVkRXdRRgpNQU1CQWY4d0RRWUpLb1pJaHZjTkFRRUZCUUFEZ2dFQkFCdzd3LzVrNGQ1ZFZEZ2QvT09PbVhkYWFDSUt2dDdkCjNudGx2MVNTdkFvS1Q4ZDhsdDk3RG01UnJtZWZCSTEzSTJ5aXZaZzViZlRnZTQrdkFWNlZkTEZkV2VGcDFiL0YKT1prWVV2NkE4bzVIVzBPV1FZVlgyNnpJcUJjRzJRcm0zcmVpU2w1Qkx2cGoxV1NwQ3NZdnM1a2FPNHZGcE1hawovSUNnZFpEK3J4d3hmOFZiLzZmbnRLeXdXU0xnd0tIM21KK1owa1JscHExZzFvaWVpT20xL2dwWjM1czBZdW9yClhaYmE5cHRmTENZU2dnZy9xYzNkM2QwdGJIcGxLWWt3Rm03ZjVPUkdIRFNENVNKbStnSTdSUEUrNGJPOHE3OVIKUEFmYkcxVUd1SjBiL29pZ2FnY2lIaEpwODUxU1FSWWYzSnVOU2MxN0JuSzJMNUlFdHpqcXIrUT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","thumbprints":["499fdf1c2218a99c8595aac2fd95ce36f0a6d59d"],"idpinitiated":{"enabled":true,"client_id":"client_id","client_protocol":"samlp","client_authorizequery":"type=code&timeout=60"},"bindingMethod":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect","decryptionKey":{"key":"-----BEGIN PRIVATE KEY-----\n...{your updated private key here}...\n-----END PRIVATE KEY-----","cert":"-----BEGIN CERTIFICATE-----\n...{your updated public key cert here}...\n-----END CERTIFICATE-----"},"tenant_domain":"example.com","disableSignout":true,"domain_aliases":["example.com","example.coz"],"signInEndpoint":"https://saml-from-metadata-xml.provider/sign_in","digestAlgorithm":"sha256","protocolBinding":"urn:oasis:names:tc:SAML:2.0:bindings:HTTP-POST","signOutEndpoint":"https://saml-from-metadata-xml.provider/sign_out","signatureAlgorithm":"rsa-sha256","set_user_root_attributes":"on_first_login"},"strategy":"samlp","name":"Acceptance-Test-SAML-TestAccConnectionSAML","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/p/samlp/VWBSra6g","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-SAML-TestAccConnectionSAML","enabled_clients":[],"realms":["Acceptance-Test-SAML-TestAccConnectionSAML"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.178667ms + duration: 146.740208ms - id: 8 request: proto: HTTP/1.1 @@ -306,8 +300,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_GFRkNPx9npSLye37 + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_AooOEYitZrAAaqEa method: DELETE response: proto: HTTP/2.0 @@ -317,10 +311,10 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2023-08-31T08:58:34.236Z"}' + body: '{"deleted_at":"2024-09-12T21:26:31.861Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 120.812042ms + duration: 149.5115ms diff --git a/test/data/recordings/TestAccConnectionSMS.yaml b/test/data/recordings/TestAccConnectionSMS.yaml index 6d99c18b..acd06214 100644 --- a/test/data/recordings/TestAccConnectionSMS.yaml +++ b/test/data/recordings/TestAccConnectionSMS.yaml @@ -1,146 +1,144 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 423 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"name":"Acceptance-Test-SMS-TestAccConnectionSMS","strategy":"sms","is_domain_connection":false,"options":{"name":"SMS OTP","from":"+12345678","syntax":"md_with_macros","template":"@@password@@","totp":{"time_step":300,"length":6},"twilio_sid":"ABC123","twilio_token":"DEF456","messaging_service_sid":"GHI789","disable_signup":false,"brute_force_protection":true,"upstream_params":{"screen_name":{"alias":"login_hint"}}}} - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: false - body: '{"id":"con_Bz89yP7X0T9Hssqh","options":{"name":"SMS OTP","from":"+12345678","syntax":"md_with_macros","template":"@@password@@","totp":{"time_step":300,"length":6},"twilio_sid":"ABC123","twilio_token":"DEF456","messaging_service_sid":"GHI789","disable_signup":false,"brute_force_protection":true,"upstream_params":{"screen_name":{"alias":"login_hint"}}},"strategy":"sms","name":"Acceptance-Test-SMS-TestAccConnectionSMS","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-SMS-TestAccConnectionSMS"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 1ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Bz89yP7X0T9Hssqh - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_Bz89yP7X0T9Hssqh","options":{"from":"+12345678","name":"SMS OTP","totp":{"length":6,"time_step":300},"syntax":"md_with_macros","template":"@@password@@","twilio_sid":"ABC123","twilio_token":"DEF456","disable_signup":false,"upstream_params":{"screen_name":{"alias":"login_hint"}},"messaging_service_sid":"GHI789","brute_force_protection":true},"strategy":"sms","name":"Acceptance-Test-SMS-TestAccConnectionSMS","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-SMS-TestAccConnectionSMS"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Bz89yP7X0T9Hssqh - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_Bz89yP7X0T9Hssqh","options":{"from":"+12345678","name":"SMS OTP","totp":{"length":6,"time_step":300},"syntax":"md_with_macros","template":"@@password@@","twilio_sid":"ABC123","twilio_token":"DEF456","disable_signup":false,"upstream_params":{"screen_name":{"alias":"login_hint"}},"messaging_service_sid":"GHI789","brute_force_protection":true},"strategy":"sms","name":"Acceptance-Test-SMS-TestAccConnectionSMS","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-SMS-TestAccConnectionSMS"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: "" - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Bz89yP7X0T9Hssqh - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: false - body: '{"deleted_at":"2022-08-30T08:59:32.779Z"}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 202 Accepted - code: 202 - duration: 1ms + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 423 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Acceptance-Test-SMS-TestAccConnectionSMS","strategy":"sms","is_domain_connection":false,"options":{"name":"SMS OTP","from":"+12345678","syntax":"md_with_macros","template":"@@password@@","totp":{"time_step":300,"length":6},"twilio_sid":"ABC123","twilio_token":"DEF456","messaging_service_sid":"GHI789","disable_signup":false,"brute_force_protection":true,"upstream_params":{"screen_name":{"alias":"login_hint"}}}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 525 + uncompressed: false + body: '{"id":"con_YPFkIwpcI6ZHRizo","options":{"name":"SMS OTP","from":"+12345678","syntax":"md_with_macros","template":"@@password@@","totp":{"time_step":300,"length":6},"twilio_sid":"ABC123","twilio_token":"DEF456","messaging_service_sid":"GHI789","disable_signup":false,"brute_force_protection":true,"upstream_params":{"screen_name":{"alias":"login_hint"}}},"strategy":"sms","name":"Acceptance-Test-SMS-TestAccConnectionSMS","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-SMS-TestAccConnectionSMS"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 174.971417ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YPFkIwpcI6ZHRizo + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_YPFkIwpcI6ZHRizo","options":{"from":"+12345678","name":"SMS OTP","totp":{"length":6,"time_step":300},"syntax":"md_with_macros","template":"@@password@@","twilio_sid":"ABC123","twilio_token":"DEF456","disable_signup":false,"upstream_params":{"screen_name":{"alias":"login_hint"}},"messaging_service_sid":"GHI789","brute_force_protection":true},"strategy":"sms","name":"Acceptance-Test-SMS-TestAccConnectionSMS","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-SMS-TestAccConnectionSMS"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 139.645583ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YPFkIwpcI6ZHRizo + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_YPFkIwpcI6ZHRizo","options":{"from":"+12345678","name":"SMS OTP","totp":{"length":6,"time_step":300},"syntax":"md_with_macros","template":"@@password@@","twilio_sid":"ABC123","twilio_token":"DEF456","disable_signup":false,"upstream_params":{"screen_name":{"alias":"login_hint"}},"messaging_service_sid":"GHI789","brute_force_protection":true},"strategy":"sms","name":"Acceptance-Test-SMS-TestAccConnectionSMS","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-SMS-TestAccConnectionSMS"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 146.935042ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YPFkIwpcI6ZHRizo + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41 + uncompressed: false + body: '{"deleted_at":"2024-09-12T21:26:57.898Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 202 Accepted + code: 202 + duration: 143.160083ms diff --git a/test/data/recordings/TestAccConnectionSalesforce.yaml b/test/data/recordings/TestAccConnectionSalesforce.yaml index e349db68..c78e72d0 100644 --- a/test/data/recordings/TestAccConnectionSalesforce.yaml +++ b/test/data/recordings/TestAccConnectionSalesforce.yaml @@ -1,146 +1,144 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 347 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"name":"Acceptance-Test-Salesforce-Connection-TestAccConnectionSalesforce","strategy":"salesforce-community","is_domain_connection":false,"options":{"client_id":"client-id","client_secret":"client-secret","community_base_url":"https://salesforce.example.com","non_persistent_attrs":null,"upstream_params":{"screen_name":{"alias":"login_hint"}}}} - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: false - body: '{"id":"con_hfKpDqIIEwRalp3R","options":{"client_id":"client-id","client_secret":"client-secret","community_base_url":"https://salesforce.example.com","non_persistent_attrs":null,"upstream_params":{"screen_name":{"alias":"login_hint"}},"scope":[]},"strategy":"salesforce-community","name":"Acceptance-Test-Salesforce-Connection-TestAccConnectionSalesforce","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Salesforce-Connection-TestAccConnectionSalesforce"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 1ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_hfKpDqIIEwRalp3R - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_hfKpDqIIEwRalp3R","options":{"scope":[],"client_id":"client-id","client_secret":"client-secret","upstream_params":{"screen_name":{"alias":"login_hint"}},"community_base_url":"https://salesforce.example.com","non_persistent_attrs":null},"strategy":"salesforce-community","name":"Acceptance-Test-Salesforce-Connection-TestAccConnectionSalesforce","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Salesforce-Connection-TestAccConnectionSalesforce"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_hfKpDqIIEwRalp3R - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_hfKpDqIIEwRalp3R","options":{"scope":[],"client_id":"client-id","client_secret":"client-secret","upstream_params":{"screen_name":{"alias":"login_hint"}},"community_base_url":"https://salesforce.example.com","non_persistent_attrs":null},"strategy":"salesforce-community","name":"Acceptance-Test-Salesforce-Connection-TestAccConnectionSalesforce","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Salesforce-Connection-TestAccConnectionSalesforce"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: "" - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_hfKpDqIIEwRalp3R - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: false - body: '{"deleted_at":"2022-08-30T08:59:42.957Z"}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 202 Accepted - code: 202 - duration: 1ms + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 319 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Acceptance-Test-Salesforce-Connection-TestAccConnectionSalesforce","strategy":"salesforce-community","is_domain_connection":false,"options":{"client_id":"client-id","client_secret":"client-secret","community_base_url":"https://salesforce.example.com","upstream_params":{"screen_name":{"alias":"login_hint"}}}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 457 + uncompressed: false + body: '{"id":"con_RWTi1HP5TTkLkul4","options":{"client_id":"client-id","client_secret":"client-secret","community_base_url":"https://salesforce.example.com","upstream_params":{"screen_name":{"alias":"login_hint"}},"scope":[]},"strategy":"salesforce-community","name":"Acceptance-Test-Salesforce-Connection-TestAccConnectionSalesforce","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Salesforce-Connection-TestAccConnectionSalesforce"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 157.024291ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_RWTi1HP5TTkLkul4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_RWTi1HP5TTkLkul4","options":{"scope":[],"client_id":"client-id","client_secret":"client-secret","upstream_params":{"screen_name":{"alias":"login_hint"}},"community_base_url":"https://salesforce.example.com"},"strategy":"salesforce-community","name":"Acceptance-Test-Salesforce-Connection-TestAccConnectionSalesforce","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Salesforce-Connection-TestAccConnectionSalesforce"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 160.038375ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_RWTi1HP5TTkLkul4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_RWTi1HP5TTkLkul4","options":{"scope":[],"client_id":"client-id","client_secret":"client-secret","upstream_params":{"screen_name":{"alias":"login_hint"}},"community_base_url":"https://salesforce.example.com"},"strategy":"salesforce-community","name":"Acceptance-Test-Salesforce-Connection-TestAccConnectionSalesforce","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Salesforce-Connection-TestAccConnectionSalesforce"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 148.340625ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_RWTi1HP5TTkLkul4 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41 + uncompressed: false + body: '{"deleted_at":"2024-09-12T21:27:30.978Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 202 Accepted + code: 202 + duration: 148.13ms diff --git a/test/data/recordings/TestAccConnectionTwitter.yaml b/test/data/recordings/TestAccConnectionTwitter.yaml index d7ddb0cb..f979941a 100644 --- a/test/data/recordings/TestAccConnectionTwitter.yaml +++ b/test/data/recordings/TestAccConnectionTwitter.yaml @@ -1,290 +1,285 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 266 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"name":"Acceptance-Test-Twitter-TestAccConnectionTwitter","strategy":"twitter","options":{"client_id":"someClientID","client_secret":"someClientSecret","authorizationURL":null,"tokenURL":null,"set_user_root_attributes":"on_each_login","non_persistent_attrs":null}} - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: false - body: '{"id":"con_ybYrfHIpKNl3wJwN","options":{"client_id":"someClientID","client_secret":"someClientSecret","authorizationURL":null,"tokenURL":null,"set_user_root_attributes":"on_each_login","non_persistent_attrs":null},"strategy":"twitter","name":"Acceptance-Test-Twitter-TestAccConnectionTwitter","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Twitter-TestAccConnectionTwitter"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 1ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ybYrfHIpKNl3wJwN - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_ybYrfHIpKNl3wJwN","options":{"tokenURL":null,"client_id":"someClientID","client_secret":"someClientSecret","authorizationURL":null,"non_persistent_attrs":null,"set_user_root_attributes":"on_each_login"},"strategy":"twitter","name":"Acceptance-Test-Twitter-TestAccConnectionTwitter","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Twitter-TestAccConnectionTwitter"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ybYrfHIpKNl3wJwN - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_ybYrfHIpKNl3wJwN","options":{"tokenURL":null,"client_id":"someClientID","client_secret":"someClientSecret","authorizationURL":null,"non_persistent_attrs":null,"set_user_root_attributes":"on_each_login"},"strategy":"twitter","name":"Acceptance-Test-Twitter-TestAccConnectionTwitter","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Twitter-TestAccConnectionTwitter"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ybYrfHIpKNl3wJwN - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_ybYrfHIpKNl3wJwN","options":{"tokenURL":null,"client_id":"someClientID","client_secret":"someClientSecret","authorizationURL":null,"non_persistent_attrs":null,"set_user_root_attributes":"on_each_login"},"strategy":"twitter","name":"Acceptance-Test-Twitter-TestAccConnectionTwitter","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Twitter-TestAccConnectionTwitter"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 261 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"is_domain_connection":false,"options":{"client_id":"someClientID","client_secret":"someClientSecret","authorizationURL":null,"tokenURL":null,"scope":"basic_profile","set_user_root_attributes":"on_each_login","non_persistent_attrs":null,"pkce_enabled":false}} - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ybYrfHIpKNl3wJwN - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_ybYrfHIpKNl3wJwN","options":{"scope":"basic_profile","tokenURL":null,"client_id":"someClientID","pkce_enabled":false,"client_secret":"someClientSecret","authorizationURL":null,"non_persistent_attrs":null,"set_user_root_attributes":"on_each_login"},"strategy":"twitter","name":"Acceptance-Test-Twitter-TestAccConnectionTwitter","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Twitter-TestAccConnectionTwitter"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ybYrfHIpKNl3wJwN - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_ybYrfHIpKNl3wJwN","options":{"scope":"basic_profile","tokenURL":null,"client_id":"someClientID","pkce_enabled":false,"client_secret":"someClientSecret","authorizationURL":null,"non_persistent_attrs":null,"set_user_root_attributes":"on_each_login"},"strategy":"twitter","name":"Acceptance-Test-Twitter-TestAccConnectionTwitter","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Twitter-TestAccConnectionTwitter"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ybYrfHIpKNl3wJwN - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_ybYrfHIpKNl3wJwN","options":{"scope":"basic_profile","tokenURL":null,"client_id":"someClientID","pkce_enabled":false,"client_secret":"someClientSecret","authorizationURL":null,"non_persistent_attrs":null,"set_user_root_attributes":"on_each_login"},"strategy":"twitter","name":"Acceptance-Test-Twitter-TestAccConnectionTwitter","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Twitter-TestAccConnectionTwitter"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: "" - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ybYrfHIpKNl3wJwN - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Type: - - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 1ms + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 238 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Acceptance-Test-Twitter-TestAccConnectionTwitter","strategy":"twitter","options":{"client_id":"someClientID","client_secret":"someClientSecret","authorizationURL":null,"tokenURL":null,"set_user_root_attributes":"on_each_login"}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 377 + uncompressed: false + body: '{"id":"con_VjztzwMHd045xVt8","options":{"client_id":"someClientID","client_secret":"someClientSecret","authorizationURL":null,"tokenURL":null,"set_user_root_attributes":"on_each_login"},"strategy":"twitter","name":"Acceptance-Test-Twitter-TestAccConnectionTwitter","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Twitter-TestAccConnectionTwitter"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 181.085458ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_VjztzwMHd045xVt8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_VjztzwMHd045xVt8","options":{"client_id":"someClientID","client_secret":"someClientSecret","set_user_root_attributes":"on_each_login"},"strategy":"twitter","name":"Acceptance-Test-Twitter-TestAccConnectionTwitter","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Twitter-TestAccConnectionTwitter"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 168.388333ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_VjztzwMHd045xVt8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_VjztzwMHd045xVt8","options":{"client_id":"someClientID","client_secret":"someClientSecret","set_user_root_attributes":"on_each_login"},"strategy":"twitter","name":"Acceptance-Test-Twitter-TestAccConnectionTwitter","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Twitter-TestAccConnectionTwitter"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 135.6995ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_VjztzwMHd045xVt8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_VjztzwMHd045xVt8","options":{"client_id":"someClientID","client_secret":"someClientSecret","set_user_root_attributes":"on_each_login"},"strategy":"twitter","name":"Acceptance-Test-Twitter-TestAccConnectionTwitter","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Twitter-TestAccConnectionTwitter"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 149.072375ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 185 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"options":{"client_id":"someClientID","client_secret":"someClientSecret","authorizationURL":null,"tokenURL":null,"set_user_root_attributes":"on_each_login","scope":["basic_profile"]}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_VjztzwMHd045xVt8 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_VjztzwMHd045xVt8","options":{"scope":["basic_profile"],"tokenURL":null,"client_id":"someClientID","client_secret":"someClientSecret","authorizationURL":null,"set_user_root_attributes":"on_each_login"},"strategy":"twitter","name":"Acceptance-Test-Twitter-TestAccConnectionTwitter","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Twitter-TestAccConnectionTwitter"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 172.520375ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_VjztzwMHd045xVt8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_VjztzwMHd045xVt8","options":{"scope":["basic_profile"],"client_id":"someClientID","client_secret":"someClientSecret","set_user_root_attributes":"on_each_login"},"strategy":"twitter","name":"Acceptance-Test-Twitter-TestAccConnectionTwitter","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Twitter-TestAccConnectionTwitter"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 168.744791ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_VjztzwMHd045xVt8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_VjztzwMHd045xVt8","options":{"scope":["basic_profile"],"client_id":"someClientID","client_secret":"someClientSecret","set_user_root_attributes":"on_each_login"},"strategy":"twitter","name":"Acceptance-Test-Twitter-TestAccConnectionTwitter","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Twitter-TestAccConnectionTwitter"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 150.202875ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_VjztzwMHd045xVt8 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41 + uncompressed: false + body: '{"deleted_at":"2024-09-12T21:26:27.668Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 202 Accepted + code: 202 + duration: 154.267208ms diff --git a/test/data/recordings/TestAccConnectionWindowslive.yaml b/test/data/recordings/TestAccConnectionWindowslive.yaml index cb9492f9..c471dfef 100644 --- a/test/data/recordings/TestAccConnectionWindowslive.yaml +++ b/test/data/recordings/TestAccConnectionWindowslive.yaml @@ -1,290 +1,285 @@ --- version: 2 interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 328 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"name":"Acceptance-Test-Windowslive-TestAccConnectionWindowslive","strategy":"windowslive","is_domain_connection":false,"options":{"client_id":"client_id","client_secret":"client_secret","strategy_version":2,"graph_user":true,"signin":true,"non_persistent_attrs":null,"upstream_params":{"screen_name":{"alias":"login_hint"}}}} - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: false - body: '{"id":"con_0V3JboomO8cG73H0","options":{"client_id":"client_id","client_secret":"client_secret","strategy_version":2,"graph_user":true,"signin":true,"non_persistent_attrs":null,"upstream_params":{"screen_name":{"alias":"login_hint"}},"scope":["https://graph.microsoft.com/User.Read"]},"strategy":"windowslive","name":"Acceptance-Test-Windowslive-TestAccConnectionWindowslive","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Windowslive-TestAccConnectionWindowslive"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 201 Created - code: 201 - duration: 1ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0V3JboomO8cG73H0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_0V3JboomO8cG73H0","options":{"scope":["https://graph.microsoft.com/User.Read"],"signin":true,"client_id":"client_id","graph_user":true,"client_secret":"client_secret","upstream_params":{"screen_name":{"alias":"login_hint"}},"strategy_version":2,"non_persistent_attrs":null},"strategy":"windowslive","name":"Acceptance-Test-Windowslive-TestAccConnectionWindowslive","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Windowslive-TestAccConnectionWindowslive"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0V3JboomO8cG73H0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_0V3JboomO8cG73H0","options":{"scope":["https://graph.microsoft.com/User.Read"],"signin":true,"client_id":"client_id","graph_user":true,"client_secret":"client_secret","upstream_params":{"screen_name":{"alias":"login_hint"}},"strategy_version":2,"non_persistent_attrs":null},"strategy":"windowslive","name":"Acceptance-Test-Windowslive-TestAccConnectionWindowslive","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Windowslive-TestAccConnectionWindowslive"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0V3JboomO8cG73H0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_0V3JboomO8cG73H0","options":{"scope":["https://graph.microsoft.com/User.Read"],"signin":true,"client_id":"client_id","graph_user":true,"client_secret":"client_secret","upstream_params":{"screen_name":{"alias":"login_hint"}},"strategy_version":2,"non_persistent_attrs":null},"strategy":"windowslive","name":"Acceptance-Test-Windowslive-TestAccConnectionWindowslive","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Windowslive-TestAccConnectionWindowslive"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 195 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - {"is_domain_connection":false,"options":{"client_id":"client_id_update","client_secret":"client_secret_update","strategy_version":2,"graph_user":false,"signin":true,"non_persistent_attrs":null}} - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0V3JboomO8cG73H0 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_0V3JboomO8cG73H0","options":{"scope":[],"signin":true,"client_id":"client_id_update","graph_user":false,"client_secret":"client_secret_update","strategy_version":2,"non_persistent_attrs":null},"strategy":"windowslive","name":"Acceptance-Test-Windowslive-TestAccConnectionWindowslive","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Windowslive-TestAccConnectionWindowslive"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0V3JboomO8cG73H0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_0V3JboomO8cG73H0","options":{"scope":[],"signin":true,"client_id":"client_id_update","graph_user":false,"client_secret":"client_secret_update","strategy_version":2,"non_persistent_attrs":null},"strategy":"windowslive","name":"Acceptance-Test-Windowslive-TestAccConnectionWindowslive","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Windowslive-TestAccConnectionWindowslive"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0V3JboomO8cG73H0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: true - body: '{"id":"con_0V3JboomO8cG73H0","options":{"scope":[],"signin":true,"client_id":"client_id_update","graph_user":false,"client_secret":"client_secret_update","strategy_version":2,"non_persistent_attrs":null},"strategy":"windowslive","name":"Acceptance-Test-Windowslive-TestAccConnectionWindowslive","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Windowslive-TestAccConnectionWindowslive"]}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 1ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [ ] - trailer: { } - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: "" - form: { } - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0-SDK/0.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0V3JboomO8cG73H0 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [ ] - trailer: { } - content_length: -1 - uncompressed: false - body: '{"deleted_at":"2022-08-30T09:00:09.243Z"}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 202 Accepted - code: 202 - duration: 1ms + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 300 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"name":"Acceptance-Test-Windowslive-TestAccConnectionWindowslive","strategy":"windowslive","is_domain_connection":false,"options":{"client_id":"client_id","client_secret":"client_secret","strategy_version":2,"graph_user":true,"signin":true,"upstream_params":{"screen_name":{"alias":"login_hint"}}}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 468 + uncompressed: false + body: '{"id":"con_XLYlaG3JSVerDmya","options":{"client_id":"client_id","client_secret":"client_secret","strategy_version":2,"graph_user":true,"signin":true,"upstream_params":{"screen_name":{"alias":"login_hint"}},"scope":["https://graph.microsoft.com/User.Read"]},"strategy":"windowslive","name":"Acceptance-Test-Windowslive-TestAccConnectionWindowslive","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Windowslive-TestAccConnectionWindowslive"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 201 Created + code: 201 + duration: 159.266667ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_XLYlaG3JSVerDmya + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_XLYlaG3JSVerDmya","options":{"scope":["https://graph.microsoft.com/User.Read"],"signin":true,"client_id":"client_id","graph_user":true,"client_secret":"client_secret","upstream_params":{"screen_name":{"alias":"login_hint"}},"strategy_version":2},"strategy":"windowslive","name":"Acceptance-Test-Windowslive-TestAccConnectionWindowslive","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Windowslive-TestAccConnectionWindowslive"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 139.409583ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_XLYlaG3JSVerDmya + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_XLYlaG3JSVerDmya","options":{"scope":["https://graph.microsoft.com/User.Read"],"signin":true,"client_id":"client_id","graph_user":true,"client_secret":"client_secret","upstream_params":{"screen_name":{"alias":"login_hint"}},"strategy_version":2},"strategy":"windowslive","name":"Acceptance-Test-Windowslive-TestAccConnectionWindowslive","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Windowslive-TestAccConnectionWindowslive"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 152.591667ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_XLYlaG3JSVerDmya + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_XLYlaG3JSVerDmya","options":{"scope":["https://graph.microsoft.com/User.Read"],"signin":true,"client_id":"client_id","graph_user":true,"client_secret":"client_secret","upstream_params":{"screen_name":{"alias":"login_hint"}},"strategy_version":2},"strategy":"windowslive","name":"Acceptance-Test-Windowslive-TestAccConnectionWindowslive","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Windowslive-TestAccConnectionWindowslive"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 143.799292ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 167 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"is_domain_connection":false,"options":{"client_id":"client_id_update","client_secret":"client_secret_update","strategy_version":2,"graph_user":false,"signin":true}} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_XLYlaG3JSVerDmya + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_XLYlaG3JSVerDmya","options":{"scope":[],"signin":true,"client_id":"client_id_update","graph_user":false,"client_secret":"client_secret_update","strategy_version":2},"strategy":"windowslive","name":"Acceptance-Test-Windowslive-TestAccConnectionWindowslive","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Windowslive-TestAccConnectionWindowslive"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 164.294917ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_XLYlaG3JSVerDmya + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_XLYlaG3JSVerDmya","options":{"scope":[],"signin":true,"client_id":"client_id_update","graph_user":false,"client_secret":"client_secret_update","strategy_version":2},"strategy":"windowslive","name":"Acceptance-Test-Windowslive-TestAccConnectionWindowslive","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Windowslive-TestAccConnectionWindowslive"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 147.829166ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_XLYlaG3JSVerDmya + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_XLYlaG3JSVerDmya","options":{"scope":[],"signin":true,"client_id":"client_id_update","graph_user":false,"client_secret":"client_secret_update","strategy_version":2},"strategy":"windowslive","name":"Acceptance-Test-Windowslive-TestAccConnectionWindowslive","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Windowslive-TestAccConnectionWindowslive"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 175.602209ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.10.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_XLYlaG3JSVerDmya + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41 + uncompressed: false + body: '{"deleted_at":"2024-09-12T21:26:38.963Z"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 202 Accepted + code: 202 + duration: 140.238ms From 5e982d1cfc01c3d3306abd7244828e6b9012f7b0 Mon Sep 17 00:00:00 2001 From: "A. Craig West" Date: Mon, 23 Sep 2024 13:42:33 -0400 Subject: [PATCH 4/5] Add user_id_attribute support to AzureAD connection options (#1028) Add user_id_attribute to AzureAD connection options --- docs/resources/connection.md | 17 +++--- .../resource_with_azure_ad.tf | 15 ++--- go.mod | 2 +- go.sum | 4 +- internal/auth0/connection/expand.go | 1 + internal/auth0/connection/flatten.go | 1 + internal/auth0/connection/resource_test.go | 4 ++ internal/auth0/connection/schema.go | 2 +- .../recordings/TestAccConnectionAzureAD.yaml | 60 +++++++++---------- 9 files changed, 57 insertions(+), 49 deletions(-) diff --git a/docs/resources/connection.md b/docs/resources/connection.md index a3febd17..8ada002c 100644 --- a/docs/resources/connection.md +++ b/docs/resources/connection.md @@ -315,13 +315,14 @@ resource "auth0_connection" "azure_ad" { strategy = "waad" show_as_button = true options { - identity_api = "azure-active-directory-v1.0" - client_id = "123456" - client_secret = "123456" - strategy_version = 2 - app_id = "app-id-123" - tenant_domain = "example.onmicrosoft.com" - domain = "example.onmicrosoft.com" + identity_api = "azure-active-directory-v1.0" + client_id = "123456" + client_secret = "123456" + strategy_version = 2 + user_id_attribute = "userName" + app_id = "app-id-123" + tenant_domain = "example.onmicrosoft.com" + domain = "example.onmicrosoft.com" domain_aliases = [ "example.com", "api.example.com" @@ -751,7 +752,7 @@ Optional: - `use_cert_auth` (Boolean) Indicates whether to use cert auth or not. - `use_kerberos` (Boolean) Indicates whether to use Kerberos or not. - `use_wsfed` (Boolean) Whether to use WS-Fed. -- `user_id_attribute` (String) Attribute in the SAML token that will be mapped to the user_id property in Auth0. +- `user_id_attribute` (String) Attribute in the token that will be mapped to the user_id property in Auth0. - `userinfo_endpoint` (String) User info endpoint. - `validation` (Block List, Max: 1) Validation of the minimum and maximum values allowed for a user to have as username. (see [below for nested schema](#nestedblock--options--validation)) - `waad_common_endpoint` (Boolean) Indicates whether to use the common endpoint rather than the default endpoint. Typically enabled if you're using this for a multi-tenant application in Azure AD. diff --git a/examples/resources/auth0_connection/resource_with_azure_ad.tf b/examples/resources/auth0_connection/resource_with_azure_ad.tf index 21d1baeb..184c7641 100644 --- a/examples/resources/auth0_connection/resource_with_azure_ad.tf +++ b/examples/resources/auth0_connection/resource_with_azure_ad.tf @@ -3,13 +3,14 @@ resource "auth0_connection" "azure_ad" { strategy = "waad" show_as_button = true options { - identity_api = "azure-active-directory-v1.0" - client_id = "123456" - client_secret = "123456" - strategy_version = 2 - app_id = "app-id-123" - tenant_domain = "example.onmicrosoft.com" - domain = "example.onmicrosoft.com" + identity_api = "azure-active-directory-v1.0" + client_id = "123456" + client_secret = "123456" + strategy_version = 2 + user_id_attribute = "userName" + app_id = "app-id-123" + tenant_domain = "example.onmicrosoft.com" + domain = "example.onmicrosoft.com" domain_aliases = [ "example.com", "api.example.com" diff --git a/go.mod b/go.mod index fee1bad4..37168d23 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ go 1.22 require ( github.com/PuerkitoBio/rehttp v1.4.0 - github.com/auth0/go-auth0 v1.10.1-0.20240919142940-86c7e2f07e06 + github.com/auth0/go-auth0 v1.10.1-0.20240920131149-720c3a081e03 github.com/google/go-cmp v0.6.0 github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 github.com/hashicorp/go-multierror v1.1.1 diff --git a/go.sum b/go.sum index 9ad10e30..7cb98636 100644 --- a/go.sum +++ b/go.sum @@ -24,8 +24,8 @@ github.com/apparentlymart/go-textseg/v15 v15.0.0 h1:uYvfpb3DyLSCGWnctWKGj857c6ew github.com/apparentlymart/go-textseg/v15 v15.0.0/go.mod h1:K8XmNZdhEBkdlyDdvbmmsvpAG721bKi0joRfFdHIWJ4= github.com/armon/go-radix v1.0.0 h1:F4z6KzEeeQIMeLFa97iZU6vupzoecKdU5TX24SNppXI= github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= -github.com/auth0/go-auth0 v1.10.1-0.20240919142940-86c7e2f07e06 h1:KhdyIAvazLFhgG1xHDNY8YdWK5C8s6TU4izA3DPhfoI= -github.com/auth0/go-auth0 v1.10.1-0.20240919142940-86c7e2f07e06/go.mod h1:VyYseHsdB4s9jmfBqoxnzJTvZr0w17ZJ5kjNdA+ag9Y= +github.com/auth0/go-auth0 v1.10.1-0.20240920131149-720c3a081e03 h1:U6WVosTYUQ+fafwlT5qPX2j2JpsB2cpXUdvKqUXbyho= +github.com/auth0/go-auth0 v1.10.1-0.20240920131149-720c3a081e03/go.mod h1:VyYseHsdB4s9jmfBqoxnzJTvZr0w17ZJ5kjNdA+ag9Y= github.com/aybabtme/iocontrol v0.0.0-20150809002002-ad15bcfc95a0 h1:0NmehRCgyk5rljDQLKUO+cRJCnduDyn11+zGZIc9Z48= github.com/aybabtme/iocontrol v0.0.0-20150809002002-ad15bcfc95a0/go.mod h1:6L7zgvqo0idzI7IO8de6ZC051AfXb5ipkIJ7bIA2tGA= github.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLju8= diff --git a/internal/auth0/connection/expand.go b/internal/auth0/connection/expand.go index 81cd7a15..b26dbbd8 100644 --- a/internal/auth0/connection/expand.go +++ b/internal/auth0/connection/expand.go @@ -725,6 +725,7 @@ func expandConnectionOptionsAzureAD(data *schema.ResourceData, config cty.Value) NonPersistentAttrs: value.Strings(config.GetAttr("non_persistent_attrs")), TrustEmailVerified: value.String(config.GetAttr("should_trust_email_verified_connection")), StrategyVersion: value.Int(config.GetAttr("strategy_version")), + UserIDAttribute: value.String(config.GetAttr("user_id_attribute")), } options.SetUserAttributes = value.String(config.GetAttr("set_user_root_attributes")) diff --git a/internal/auth0/connection/flatten.go b/internal/auth0/connection/flatten.go index 9d5e61d9..4d97e315 100644 --- a/internal/auth0/connection/flatten.go +++ b/internal/auth0/connection/flatten.go @@ -859,6 +859,7 @@ func flattenConnectionOptionsAzureAD( "should_trust_email_verified_connection": options.GetTrustEmailVerified(), "set_user_root_attributes": options.GetSetUserAttributes(), "strategy_version": options.GetStrategyVersion(), + "user_id_attribute": options.GetUserIDAttribute(), "upstream_params": upstreamParams, } diff --git a/internal/auth0/connection/resource_test.go b/internal/auth0/connection/resource_test.go index b4caeeae..0c272f86 100644 --- a/internal/auth0/connection/resource_test.go +++ b/internal/auth0/connection/resource_test.go @@ -592,6 +592,7 @@ func TestAccConnectionAzureAD(t *testing.T) { resource.TestCheckResourceAttr("auth0_connection.azure_ad", "options.0.client_id", "123456"), resource.TestCheckResourceAttr("auth0_connection.azure_ad", "options.0.client_secret", "123456"), resource.TestCheckResourceAttr("auth0_connection.azure_ad", "options.0.strategy_version", "2"), + resource.TestCheckResourceAttr("auth0_connection.azure_ad", "options.0.user_id_attribute", "userName"), resource.TestCheckResourceAttr("auth0_connection.azure_ad", "options.0.tenant_domain", "example.onmicrosoft.com"), resource.TestCheckResourceAttr("auth0_connection.azure_ad", "options.0.domain", "example.onmicrosoft.com"), resource.TestCheckResourceAttr("auth0_connection.azure_ad", "options.0.domain_aliases.#", "2"), @@ -615,6 +616,7 @@ func TestAccConnectionAzureAD(t *testing.T) { resource.TestCheckResourceAttr("auth0_connection.azure_ad", "options.0.identity_api", "azure-active-directory-v1.0"), resource.TestCheckResourceAttr("auth0_connection.azure_ad", "options.0.client_id", "123456"), resource.TestCheckResourceAttr("auth0_connection.azure_ad", "options.0.client_secret", "123456"), + resource.TestCheckResourceAttr("auth0_connection.azure_ad", "options.0.user_id_attribute", "email"), resource.TestCheckResourceAttr("auth0_connection.azure_ad", "options.0.tenant_domain", "example.onmicrosoft.com"), resource.TestCheckResourceAttr("auth0_connection.azure_ad", "options.0.domain", "example.onmicrosoft.com"), resource.TestCheckResourceAttr("auth0_connection.azure_ad", "options.0.domain_aliases.#", "2"), @@ -652,6 +654,7 @@ resource "auth0_connection" "azure_ad" { use_wsfed = false waad_protocol = "openid-connect" waad_common_endpoint = false + user_id_attribute = "userName" api_enable_users = true scopes = [ "basic_profile", @@ -687,6 +690,7 @@ resource "auth0_connection" "azure_ad" { use_wsfed = false waad_protocol = "openid-connect" waad_common_endpoint = false + user_id_attribute = "email" api_enable_users = true scopes = [ "basic_profile", diff --git a/internal/auth0/connection/schema.go b/internal/auth0/connection/schema.go index 31230eec..debfc872 100644 --- a/internal/auth0/connection/schema.go +++ b/internal/auth0/connection/schema.go @@ -689,7 +689,7 @@ var optionsSchema = &schema.Schema{ "user_id_attribute": { Type: schema.TypeString, Optional: true, - Description: "Attribute in the SAML token that will be mapped to the user_id property in Auth0.", + Description: "Attribute in the token that will be mapped to the user_id property in Auth0.", }, "idp_initiated": { Type: schema.TypeList, diff --git a/test/data/recordings/TestAccConnectionAzureAD.yaml b/test/data/recordings/TestAccConnectionAzureAD.yaml index 1d628416..25769876 100644 --- a/test/data/recordings/TestAccConnectionAzureAD.yaml +++ b/test/data/recordings/TestAccConnectionAzureAD.yaml @@ -6,14 +6,14 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 641 + content_length: 672 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","strategy":"waad","show_as_button":true,"options":{"client_id":"123456","client_secret":"123456","strategy_version":2,"tenant_domain":"example.onmicrosoft.com","domain":"example.onmicrosoft.com","domain_aliases":["api.example.com","example.com"],"identity_api":"azure-active-directory-v1.0","waad_protocol":"openid-connect","use_wsfed":false,"useCommonEndpoint":false,"api_enable_users":true,"basic_profile":true,"ext_profile":true,"ext_groups":true,"should_trust_email_verified_connection":"never_set_emails_as_verified","upstream_params":{"screen_name":{"alias":"login_hint"}}}} + {"name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","strategy":"waad","show_as_button":true,"options":{"client_id":"123456","client_secret":"123456","strategy_version":2,"tenant_domain":"example.onmicrosoft.com","domain":"example.onmicrosoft.com","domain_aliases":["api.example.com","example.com"],"identity_api":"azure-active-directory-v1.0","waad_protocol":"openid-connect","use_wsfed":false,"useCommonEndpoint":false,"api_enable_users":true,"basic_profile":true,"ext_profile":true,"ext_groups":true,"should_trust_email_verified_connection":"never_set_emails_as_verified","upstream_params":{"screen_name":{"alias":"login_hint"}},"user_id_attribute":"userName"}} form: {} headers: Content-Type: @@ -30,13 +30,13 @@ interactions: trailer: {} content_length: -1 uncompressed: false - body: '{"id":"con_UqghLdzVUhenLt7a","options":{"client_id":"123456","client_secret":"123456","strategy_version":2,"tenant_domain":"example.onmicrosoft.com","domain":"example.onmicrosoft.com","domain_aliases":["api.example.com","example.com"],"identity_api":"azure-active-directory-v1.0","waad_protocol":"openid-connect","use_wsfed":false,"useCommonEndpoint":false,"api_enable_users":true,"basic_profile":true,"ext_profile":true,"ext_groups":true,"should_trust_email_verified_connection":"never_set_emails_as_verified","upstream_params":{"screen_name":{"alias":"login_hint"}},"thumbprints":["4a3138b6fcc0c00a28e86077dbe83540076021c9","1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","2743ae2dd284d5280f768e2f77eb145f1bb6751b","824f47a0658299810b52ad51110d0290783e46c6"],"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","waad_common_endpoint":false,"userid_attribute":"oid"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/B121PNH5","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' + body: '{"id":"con_vC97x6M6uJ5I5k0D","options":{"client_id":"123456","client_secret":"123456","strategy_version":2,"tenant_domain":"example.onmicrosoft.com","domain":"example.onmicrosoft.com","domain_aliases":["api.example.com","example.com"],"identity_api":"azure-active-directory-v1.0","waad_protocol":"openid-connect","use_wsfed":false,"useCommonEndpoint":false,"api_enable_users":true,"basic_profile":true,"ext_profile":true,"ext_groups":true,"should_trust_email_verified_connection":"never_set_emails_as_verified","upstream_params":{"screen_name":{"alias":"login_hint"}},"user_id_attribute":"userName","thumbprints":["1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","31cee5dc8cfdde0eeec2035e1269b0fd66063e4a","824f47a0658299810b52ad51110d0290783e46c6"],"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","waad_common_endpoint":false,"userid_attribute":"oid"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/rJNVoCqy","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 388.469792ms + duration: 435.464042ms - id: 1 request: proto: HTTP/1.1 @@ -55,7 +55,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_UqghLdzVUhenLt7a + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_vC97x6M6uJ5I5k0D method: GET response: proto: HTTP/2.0 @@ -65,13 +65,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_UqghLdzVUhenLt7a","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["4a3138b6fcc0c00a28e86077dbe83540076021c9","1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","2743ae2dd284d5280f768e2f77eb145f1bb6751b","824f47a0658299810b52ad51110d0290783e46c6"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"strategy_version":2,"userid_attribute":"oid","useCommonEndpoint":false,"waad_common_endpoint":false,"should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/B121PNH5","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' + body: '{"id":"con_vC97x6M6uJ5I5k0D","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","31cee5dc8cfdde0eeec2035e1269b0fd66063e4a","824f47a0658299810b52ad51110d0290783e46c6"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"strategy_version":2,"userid_attribute":"oid","useCommonEndpoint":false,"user_id_attribute":"userName","waad_common_endpoint":false,"should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/rJNVoCqy","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 200.323625ms + duration: 158.795292ms - id: 2 request: proto: HTTP/1.1 @@ -90,7 +90,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_UqghLdzVUhenLt7a + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_vC97x6M6uJ5I5k0D method: GET response: proto: HTTP/2.0 @@ -100,13 +100,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_UqghLdzVUhenLt7a","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["4a3138b6fcc0c00a28e86077dbe83540076021c9","1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","2743ae2dd284d5280f768e2f77eb145f1bb6751b","824f47a0658299810b52ad51110d0290783e46c6"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"strategy_version":2,"userid_attribute":"oid","useCommonEndpoint":false,"waad_common_endpoint":false,"should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/B121PNH5","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' + body: '{"id":"con_vC97x6M6uJ5I5k0D","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","31cee5dc8cfdde0eeec2035e1269b0fd66063e4a","824f47a0658299810b52ad51110d0290783e46c6"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"strategy_version":2,"userid_attribute":"oid","useCommonEndpoint":false,"user_id_attribute":"userName","waad_common_endpoint":false,"should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/rJNVoCqy","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 184.929625ms + duration: 155.665125ms - id: 3 request: proto: HTTP/1.1 @@ -125,7 +125,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_UqghLdzVUhenLt7a + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_vC97x6M6uJ5I5k0D method: GET response: proto: HTTP/2.0 @@ -135,13 +135,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_UqghLdzVUhenLt7a","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["4a3138b6fcc0c00a28e86077dbe83540076021c9","1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","2743ae2dd284d5280f768e2f77eb145f1bb6751b","824f47a0658299810b52ad51110d0290783e46c6"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"strategy_version":2,"userid_attribute":"oid","useCommonEndpoint":false,"waad_common_endpoint":false,"should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/B121PNH5","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' + body: '{"id":"con_vC97x6M6uJ5I5k0D","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","31cee5dc8cfdde0eeec2035e1269b0fd66063e4a","824f47a0658299810b52ad51110d0290783e46c6"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"strategy_version":2,"userid_attribute":"oid","useCommonEndpoint":false,"user_id_attribute":"userName","waad_common_endpoint":false,"should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/rJNVoCqy","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 217.119375ms + duration: 212.03275ms - id: 4 request: proto: HTTP/1.1 @@ -160,7 +160,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_UqghLdzVUhenLt7a + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_vC97x6M6uJ5I5k0D method: GET response: proto: HTTP/2.0 @@ -170,33 +170,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_UqghLdzVUhenLt7a","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["4a3138b6fcc0c00a28e86077dbe83540076021c9","1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","2743ae2dd284d5280f768e2f77eb145f1bb6751b","824f47a0658299810b52ad51110d0290783e46c6"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"strategy_version":2,"userid_attribute":"oid","useCommonEndpoint":false,"waad_common_endpoint":false,"should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/B121PNH5","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' + body: '{"id":"con_vC97x6M6uJ5I5k0D","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","31cee5dc8cfdde0eeec2035e1269b0fd66063e4a","824f47a0658299810b52ad51110d0290783e46c6"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"strategy_version":2,"userid_attribute":"oid","useCommonEndpoint":false,"user_id_attribute":"userName","waad_common_endpoint":false,"should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/rJNVoCqy","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 193.132667ms + duration: 158.75525ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 856 + content_length: 841 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"show_as_button":true,"options":{"client_id":"123456","client_secret":"123456","tenant_domain":"example.onmicrosoft.com","domain":"example.onmicrosoft.com","domain_aliases":["api.example.com","example.com"],"identity_api":"azure-active-directory-v1.0","waad_protocol":"openid-connect","use_wsfed":false,"useCommonEndpoint":false,"api_enable_users":true,"basic_profile":true,"ext_profile":true,"ext_groups":true,"set_user_root_attributes":"on_first_login","should_trust_email_verified_connection":"never_set_emails_as_verified","upstream_params":{"screen_name":{"alias":"login_hint"}},"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","thumbprints":["4a3138b6fcc0c00a28e86077dbe83540076021c9","1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","2743ae2dd284d5280f768e2f77eb145f1bb6751b","824f47a0658299810b52ad51110d0290783e46c6"]}} + {"show_as_button":true,"options":{"client_id":"123456","client_secret":"123456","tenant_domain":"example.onmicrosoft.com","domain":"example.onmicrosoft.com","domain_aliases":["api.example.com","example.com"],"identity_api":"azure-active-directory-v1.0","waad_protocol":"openid-connect","use_wsfed":false,"useCommonEndpoint":false,"api_enable_users":true,"basic_profile":true,"ext_profile":true,"ext_groups":true,"set_user_root_attributes":"on_first_login","should_trust_email_verified_connection":"never_set_emails_as_verified","upstream_params":{"screen_name":{"alias":"login_hint"}},"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","thumbprints":["1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","31cee5dc8cfdde0eeec2035e1269b0fd66063e4a","824f47a0658299810b52ad51110d0290783e46c6"],"user_id_attribute":"email"}} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_UqghLdzVUhenLt7a + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_vC97x6M6uJ5I5k0D method: PATCH response: proto: HTTP/2.0 @@ -206,13 +206,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_UqghLdzVUhenLt7a","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["4a3138b6fcc0c00a28e86077dbe83540076021c9","1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","2743ae2dd284d5280f768e2f77eb145f1bb6751b","824f47a0658299810b52ad51110d0290783e46c6"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"userid_attribute":null,"useCommonEndpoint":false,"waad_common_endpoint":false,"set_user_root_attributes":"on_first_login","should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/B121PNH5","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' + body: '{"id":"con_vC97x6M6uJ5I5k0D","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","31cee5dc8cfdde0eeec2035e1269b0fd66063e4a","824f47a0658299810b52ad51110d0290783e46c6"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"userid_attribute":null,"useCommonEndpoint":false,"user_id_attribute":"email","waad_common_endpoint":false,"set_user_root_attributes":"on_first_login","should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/rJNVoCqy","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 364.643833ms + duration: 425.207125ms - id: 6 request: proto: HTTP/1.1 @@ -231,7 +231,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_UqghLdzVUhenLt7a + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_vC97x6M6uJ5I5k0D method: GET response: proto: HTTP/2.0 @@ -241,13 +241,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_UqghLdzVUhenLt7a","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["4a3138b6fcc0c00a28e86077dbe83540076021c9","1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","2743ae2dd284d5280f768e2f77eb145f1bb6751b","824f47a0658299810b52ad51110d0290783e46c6"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"userid_attribute":null,"useCommonEndpoint":false,"waad_common_endpoint":false,"set_user_root_attributes":"on_first_login","should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/B121PNH5","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' + body: '{"id":"con_vC97x6M6uJ5I5k0D","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","31cee5dc8cfdde0eeec2035e1269b0fd66063e4a","824f47a0658299810b52ad51110d0290783e46c6"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"userid_attribute":null,"useCommonEndpoint":false,"user_id_attribute":"email","waad_common_endpoint":false,"set_user_root_attributes":"on_first_login","should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/rJNVoCqy","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 176.896542ms + duration: 150.204833ms - id: 7 request: proto: HTTP/1.1 @@ -266,7 +266,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_UqghLdzVUhenLt7a + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_vC97x6M6uJ5I5k0D method: GET response: proto: HTTP/2.0 @@ -276,13 +276,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_UqghLdzVUhenLt7a","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["4a3138b6fcc0c00a28e86077dbe83540076021c9","1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","2743ae2dd284d5280f768e2f77eb145f1bb6751b","824f47a0658299810b52ad51110d0290783e46c6"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"userid_attribute":null,"useCommonEndpoint":false,"waad_common_endpoint":false,"set_user_root_attributes":"on_first_login","should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/B121PNH5","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' + body: '{"id":"con_vC97x6M6uJ5I5k0D","options":{"domain":"example.onmicrosoft.com","client_id":"123456","use_wsfed":false,"app_domain":"terraform-provider-auth0-dev.eu.auth0.com","ext_groups":true,"ext_profile":true,"thumbprints":["1fd9e3e40392b30329860d52171ee3695fa507dc","8a48f046b8d93d1e7c6bfc10c54ce9cc6b94378b","31cee5dc8cfdde0eeec2035e1269b0fd66063e4a","824f47a0658299810b52ad51110d0290783e46c6"],"identity_api":"azure-active-directory-v1.0","basic_profile":true,"client_secret":"123456","tenant_domain":"example.onmicrosoft.com","waad_protocol":"openid-connect","domain_aliases":["api.example.com","example.com"],"upstream_params":{"screen_name":{"alias":"login_hint"}},"api_enable_users":true,"userid_attribute":null,"useCommonEndpoint":false,"user_id_attribute":"email","waad_common_endpoint":false,"set_user_root_attributes":"on_first_login","should_trust_email_verified_connection":"never_set_emails_as_verified"},"strategy":"waad","name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","provisioning_ticket_url":"https://terraform-provider-auth0-dev.eu.auth0.com/terraform-provider-auth0-dev/p/waad/rJNVoCqy","is_domain_connection":false,"show_as_button":true,"display_name":"Acceptance-Test-Azure-AD-TestAccConnectionAzureAD","enabled_clients":[],"realms":["Acceptance-Test-Azure-AD-TestAccConnectionAzureAD"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 205.429958ms + duration: 148.59025ms - id: 8 request: proto: HTTP/1.1 @@ -301,7 +301,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_UqghLdzVUhenLt7a + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_vC97x6M6uJ5I5k0D method: DELETE response: proto: HTTP/2.0 @@ -311,10 +311,10 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2024-09-13T14:49:36.430Z"}' + body: '{"deleted_at":"2024-09-19T17:48:55.628Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 197.561167ms + duration: 163.399875ms From 12d9a01b29719903be29e155475030fa39c5e678 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Oct 2024 11:27:45 -0400 Subject: [PATCH 5/5] Bump github.com/auth0/go-auth0 from 1.10.1-0.20240920131149-720c3a081e03 to 1.11.0 (#1036) Bump github.com/auth0/go-auth0 Bumps [github.com/auth0/go-auth0](https://github.com/auth0/go-auth0) from 1.10.1-0.20240920131149-720c3a081e03 to 1.11.0. - [Release notes](https://github.com/auth0/go-auth0/releases) - [Changelog](https://github.com/auth0/go-auth0/blob/main/CHANGELOG.md) - [Commits](https://github.com/auth0/go-auth0/commits/v1.11.0) --- updated-dependencies: - dependency-name: github.com/auth0/go-auth0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 37168d23..ac914062 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ go 1.22 require ( github.com/PuerkitoBio/rehttp v1.4.0 - github.com/auth0/go-auth0 v1.10.1-0.20240920131149-720c3a081e03 + github.com/auth0/go-auth0 v1.11.0 github.com/google/go-cmp v0.6.0 github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 github.com/hashicorp/go-multierror v1.1.1 diff --git a/go.sum b/go.sum index 7cb98636..59c2fb16 100644 --- a/go.sum +++ b/go.sum @@ -24,8 +24,8 @@ github.com/apparentlymart/go-textseg/v15 v15.0.0 h1:uYvfpb3DyLSCGWnctWKGj857c6ew github.com/apparentlymart/go-textseg/v15 v15.0.0/go.mod h1:K8XmNZdhEBkdlyDdvbmmsvpAG721bKi0joRfFdHIWJ4= github.com/armon/go-radix v1.0.0 h1:F4z6KzEeeQIMeLFa97iZU6vupzoecKdU5TX24SNppXI= github.com/armon/go-radix v1.0.0/go.mod h1:ufUuZ+zHj4x4TnLV4JWEpy2hxWSpsRywHrMgIH9cCH8= -github.com/auth0/go-auth0 v1.10.1-0.20240920131149-720c3a081e03 h1:U6WVosTYUQ+fafwlT5qPX2j2JpsB2cpXUdvKqUXbyho= -github.com/auth0/go-auth0 v1.10.1-0.20240920131149-720c3a081e03/go.mod h1:VyYseHsdB4s9jmfBqoxnzJTvZr0w17ZJ5kjNdA+ag9Y= +github.com/auth0/go-auth0 v1.11.0 h1:gFBVhJCQUW1cET+f/fSH+aXiUebvH2IaaXhMiSaPclw= +github.com/auth0/go-auth0 v1.11.0/go.mod h1:VyYseHsdB4s9jmfBqoxnzJTvZr0w17ZJ5kjNdA+ag9Y= github.com/aybabtme/iocontrol v0.0.0-20150809002002-ad15bcfc95a0 h1:0NmehRCgyk5rljDQLKUO+cRJCnduDyn11+zGZIc9Z48= github.com/aybabtme/iocontrol v0.0.0-20150809002002-ad15bcfc95a0/go.mod h1:6L7zgvqo0idzI7IO8de6ZC051AfXb5ipkIJ7bIA2tGA= github.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLju8=