diff --git a/docs/data-sources/connection_scim_configuration.md b/docs/data-sources/connection_scim_configuration.md
new file mode 100644
index 000000000..bdae86125
--- /dev/null
+++ b/docs/data-sources/connection_scim_configuration.md
@@ -0,0 +1,73 @@
+---
+page_title: "Data Source: auth0_connection_scim_configuration"
+description: |-
+ Data source to retrieve a SCIM configuration for an Auth0 connection by connection_id.
+---
+
+# Data Source: auth0_connection_scim_configuration
+
+Data source to retrieve a SCIM configuration for an Auth0 connection by `connection_id`.
+
+## Example Usage
+
+```terraform
+resource "auth0_connection" "my_enterprise_connection" {
+ name = "my-enterprise-connection"
+ display_name = "My Enterprise Connection"
+ strategy = "okta"
+
+ options {
+ client_id = "1234567"
+ client_secret = "1234567"
+ issuer = "https://example.okta.com"
+ jwks_uri = "https://example.okta.com/oauth2/v1/keys"
+ token_endpoint = "https://example.okta.com/oauth2/v1/token"
+ authorization_endpoint = "https://example.okta.com/oauth2/v1/authorize"
+ }
+}
+
+resource "auth0_connection_scim_configuration" "my_conn_scim_configuration" {
+ connection_id = auth0_connection.my_enterprise_connection.id
+}
+
+# A data source for an Auth0 Connection SCIM Configuration.
+data "auth0_connection_scim_configuration" "my_conn_scim_configuration_data" {
+ connection_id = auth0_connection_scim_configuration.my_conn_scim_configuration.id
+}
+```
+
+
+## Schema
+
+### Required
+
+- `connection_id` (String) ID of the connection for this SCIM configuration.
+
+### Read-Only
+
+- `connection_name` (String) Name of the connection for this SCIM configuration.
+- `default_mapping` (Block Set) Default mapping between Auth0 attributes and SCIM attributes for this connection type. (see [below for nested schema](#nestedblock--default_mapping))
+- `id` (String) The ID of this resource.
+- `mapping` (Block Set) Mapping between Auth0 attributes and SCIM attributes. (see [below for nested schema](#nestedblock--mapping))
+- `strategy` (String) Schema of the connection for this SCIM configuration.
+- `tenant_name` (String) Name of the tenant for this SCIM configuration.
+- `user_id_attribute` (String) User ID attribute for generation unique of user ids.
+
+
+### Nested Schema for `default_mapping`
+
+Read-Only:
+
+- `auth0` (String) The field location in the Auth0 schema.
+- `scim` (String) The field location in the SCIM schema.
+
+
+
+### Nested Schema for `mapping`
+
+Read-Only:
+
+- `auth0` (String) The field location in the Auth0 schema.
+- `scim` (String) The field location in the SCIM schema.
+
+
diff --git a/docs/resources/connection_scim_configuration.md b/docs/resources/connection_scim_configuration.md
new file mode 100644
index 000000000..644eab3f8
--- /dev/null
+++ b/docs/resources/connection_scim_configuration.md
@@ -0,0 +1,102 @@
+---
+page_title: "Resource: auth0_connection_scim_configuration"
+description: |-
+ With this resource, you can configure SCIM(System for Cross-domain Identity Management) https://simplecloud.info/ support for SAML and OpenID Connect Enterprise connections.
+---
+
+# Resource: auth0_connection_scim_configuration
+
+With this resource, you can configure [SCIM(System for Cross-domain Identity Management)](https://simplecloud.info/) support for `SAML` and `OpenID Connect` Enterprise connections.
+
+## Example Usage
+
+```terraform
+resource "auth0_connection" "my_enterprise_connection" {
+ name = "my-enterprise-connection"
+ display_name = "My Enterprise Connection"
+ strategy = "okta"
+
+ options {
+ client_id = "1234567"
+ client_secret = "1234567"
+ issuer = "https://example.okta.com"
+ jwks_uri = "https://example.okta.com/oauth2/v1/keys"
+ token_endpoint = "https://example.okta.com/oauth2/v1/token"
+ authorization_endpoint = "https://example.okta.com/oauth2/v1/authorize"
+ }
+}
+
+resource "auth0_connection" "my_enterprise_connection_2" {
+ name = "my-enterprise-connection-2"
+ display_name = "My Enterprise Connection 2"
+ strategy = "okta"
+
+ options {
+ client_id = "1234567"
+ client_secret = "1234567"
+ issuer = "https://example.okta.com"
+ jwks_uri = "https://example.okta.com/oauth2/v1/keys"
+ token_endpoint = "https://example.okta.com/oauth2/v1/token"
+ authorization_endpoint = "https://example.okta.com/oauth2/v1/authorize"
+ }
+}
+
+# A resource for configuring an Auth0 Connection SCIM Configuration, using default values.
+# Only one can be specified for a connection.
+resource "auth0_connection_scim_configuration" "my_conn_scim_configuration_default" {
+ connection_id = auth0_connection.my_enterprise_connection.id
+}
+
+# A resource for configuring an Auth0 Connection SCIM Configuration, specifying `user_id_attribute` and `mapping`.
+# Only one can be specified for a connection.
+resource "auth0_connection_scim_configuration" "my_conn_scim_configuration" {
+ connection_id = auth0_connection.my_enterprise_connection_2.id
+ user_id_attribute = "attribute1"
+ mapping {
+ auth0 = "auth0_attribute1"
+ scim = "sacim_attribute1"
+ }
+ mapping {
+ auth0 = "auth0_attribute2"
+ scim = "sacim_attribute2"
+ }
+}
+```
+
+
+## Schema
+
+### Required
+
+- `connection_id` (String) ID of the connection for this SCIM configuration.
+
+### Optional
+
+- `mapping` (Block Set) Mapping between Auth0 attributes and SCIM attributes. If `user_id_attribute` is set, `mapping` must be set as well. (see [below for nested schema](#nestedblock--mapping))
+- `user_id_attribute` (String) User ID attribute for generation unique of user ids. If `user_id_attribute` is set, `mapping` must be set as well. Defaults to `userName` for SAML connections and `externalId` for OIDC connections.
+
+### Read-Only
+
+- `connection_name` (String) Name of the connection for this SCIM configuration.
+- `id` (String) The ID of this resource.
+- `strategy` (String) Schema of the connection for this SCIM configuration.
+- `tenant_name` (String) Name of the tenant for this SCIM configuration.
+
+
+### Nested Schema for `mapping`
+
+Required:
+
+- `auth0` (String) The field location in the Auth0 schema.
+- `scim` (String) The field location in the SCIM schema.
+
+## Import
+
+Import is supported using the following syntax:
+
+```shell
+# This resource can be imported by specifying the connection ID
+#
+# Example:
+terraform import auth0_connection_scim_configuration.my_conn_scim_conf "con_XXXXX"
+```
diff --git a/examples/data-sources/auth0_connection_scim_configuration/data-source.tf b/examples/data-sources/auth0_connection_scim_configuration/data-source.tf
new file mode 100644
index 000000000..df7f0fe72
--- /dev/null
+++ b/examples/data-sources/auth0_connection_scim_configuration/data-source.tf
@@ -0,0 +1,24 @@
+resource "auth0_connection" "my_enterprise_connection" {
+ name = "my-enterprise-connection"
+ display_name = "My Enterprise Connection"
+ strategy = "okta"
+
+ options {
+ client_id = "1234567"
+ client_secret = "1234567"
+ issuer = "https://example.okta.com"
+ jwks_uri = "https://example.okta.com/oauth2/v1/keys"
+ token_endpoint = "https://example.okta.com/oauth2/v1/token"
+ authorization_endpoint = "https://example.okta.com/oauth2/v1/authorize"
+ }
+}
+
+resource "auth0_connection_scim_configuration" "my_conn_scim_configuration" {
+ connection_id = auth0_connection.my_enterprise_connection.id
+}
+
+# A data source for an Auth0 Connection SCIM Configuration.
+data "auth0_connection_scim_configuration" "my_conn_scim_configuration_data" {
+ connection_id = auth0_connection_scim_configuration.my_conn_scim_configuration.id
+}
+
diff --git a/examples/resources/auth0_connection_scim_configuration/import.sh b/examples/resources/auth0_connection_scim_configuration/import.sh
new file mode 100644
index 000000000..398b2b2ce
--- /dev/null
+++ b/examples/resources/auth0_connection_scim_configuration/import.sh
@@ -0,0 +1,4 @@
+# This resource can be imported by specifying the connection ID
+#
+# Example:
+terraform import auth0_connection_scim_configuration.my_conn_scim_conf "con_XXXXX"
diff --git a/examples/resources/auth0_connection_scim_configuration/resource.tf b/examples/resources/auth0_connection_scim_configuration/resource.tf
new file mode 100644
index 000000000..4b995fed3
--- /dev/null
+++ b/examples/resources/auth0_connection_scim_configuration/resource.tf
@@ -0,0 +1,50 @@
+resource "auth0_connection" "my_enterprise_connection" {
+ name = "my-enterprise-connection"
+ display_name = "My Enterprise Connection"
+ strategy = "okta"
+
+ options {
+ client_id = "1234567"
+ client_secret = "1234567"
+ issuer = "https://example.okta.com"
+ jwks_uri = "https://example.okta.com/oauth2/v1/keys"
+ token_endpoint = "https://example.okta.com/oauth2/v1/token"
+ authorization_endpoint = "https://example.okta.com/oauth2/v1/authorize"
+ }
+}
+
+resource "auth0_connection" "my_enterprise_connection_2" {
+ name = "my-enterprise-connection-2"
+ display_name = "My Enterprise Connection 2"
+ strategy = "okta"
+
+ options {
+ client_id = "1234567"
+ client_secret = "1234567"
+ issuer = "https://example.okta.com"
+ jwks_uri = "https://example.okta.com/oauth2/v1/keys"
+ token_endpoint = "https://example.okta.com/oauth2/v1/token"
+ authorization_endpoint = "https://example.okta.com/oauth2/v1/authorize"
+ }
+}
+
+# A resource for configuring an Auth0 Connection SCIM Configuration, using default values.
+# Only one can be specified for a connection.
+resource "auth0_connection_scim_configuration" "my_conn_scim_configuration_default" {
+ connection_id = auth0_connection.my_enterprise_connection.id
+}
+
+# A resource for configuring an Auth0 Connection SCIM Configuration, specifying `user_id_attribute` and `mapping`.
+# Only one can be specified for a connection.
+resource "auth0_connection_scim_configuration" "my_conn_scim_configuration" {
+ connection_id = auth0_connection.my_enterprise_connection_2.id
+ user_id_attribute = "attribute1"
+ mapping {
+ auth0 = "auth0_attribute1"
+ scim = "sacim_attribute1"
+ }
+ mapping {
+ auth0 = "auth0_attribute2"
+ scim = "sacim_attribute2"
+ }
+}
diff --git a/internal/auth0/connection/data_source_scim.go b/internal/auth0/connection/data_source_scim.go
new file mode 100644
index 000000000..8f53c508e
--- /dev/null
+++ b/internal/auth0/connection/data_source_scim.go
@@ -0,0 +1,78 @@
+package connection
+
+import (
+ "context"
+
+ "github.com/hashicorp/terraform-plugin-sdk/v2/diag"
+ "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema"
+
+ "github.com/auth0/terraform-provider-auth0/internal/config"
+ internalError "github.com/auth0/terraform-provider-auth0/internal/error"
+ internalSchema "github.com/auth0/terraform-provider-auth0/internal/schema"
+)
+
+// NewSCIMConfigurationDataSource will return a new auth0_connection_scim_configuration data source.
+func NewSCIMConfigurationDataSource() *schema.Resource {
+ return &schema.Resource{
+ ReadContext: readSCIMConfigurationDataSource,
+ Description: "Data source to retrieve a SCIM configuration for an Auth0 connection by `connection_id`.",
+ Schema: getSCIMDataSourceSchema(),
+ }
+}
+
+func getSCIMDataSourceSchema() map[string]*schema.Schema {
+ dataSourceSchema := internalSchema.TransformResourceToDataSource(NewSCIMConfigurationResource().Schema)
+ internalSchema.SetExistingAttributesAsRequired(dataSourceSchema, "connection_id")
+ dataSourceSchema["user_id_attribute"].Description = "User ID attribute for generation unique of user ids."
+ dataSourceSchema["mapping"].Description = "Mapping between Auth0 attributes and SCIM attributes."
+ dataSourceSchema["mapping"].Optional = true // This is necessary to make the documentation generate correctly.
+ dataSourceSchema["default_mapping"] = &schema.Schema{
+ Type: schema.TypeSet,
+ Optional: true, // This is necessary to make the documentation generate correctly.
+ RequiredWith: []string{"user_id_attribute", "mapping"},
+ Computed: true,
+ Description: "Default mapping between Auth0 attributes and SCIM attributes for this connection type.",
+ Elem: &schema.Resource{
+ Schema: map[string]*schema.Schema{
+ "auth0": {
+ Type: schema.TypeString,
+ Computed: true,
+ Description: "The field location in the Auth0 schema.",
+ },
+ "scim": {
+ Type: schema.TypeString,
+ Computed: true,
+ Description: "The field location in the SCIM schema.",
+ },
+ },
+ },
+ }
+
+ return dataSourceSchema
+}
+
+func readSCIMConfigurationDataSource(ctx context.Context, data *schema.ResourceData, meta interface{}) diag.Diagnostics {
+ api := meta.(*config.Config).GetAPI()
+
+ connectionID := data.Get("connection_id").(string)
+ scimConfiguration, err := api.Connection.ReadSCIMConfiguration(ctx, connectionID)
+ if err != nil {
+ return diag.FromErr(err)
+ }
+
+ defaultSCIMConfiguration, err := api.Connection.ReadSCIMDefaultConfiguration(ctx, connectionID)
+ if err != nil {
+ return diag.FromErr(internalError.HandleAPIError(data, err))
+ }
+
+ diags := flattenSCIMConfiguration(data, scimConfiguration)
+ if diags.HasError() {
+ return diags
+ }
+ err = data.Set("default_mapping", flattenSCIMMappings(defaultSCIMConfiguration.GetMapping()))
+ if err == nil {
+ data.SetId(connectionID)
+ }
+
+ return diag.FromErr(err)
+}
diff --git a/internal/auth0/connection/data_source_scim_test.go b/internal/auth0/connection/data_source_scim_test.go
new file mode 100644
index 000000000..7a26e5f2d
--- /dev/null
+++ b/internal/auth0/connection/data_source_scim_test.go
@@ -0,0 +1,90 @@
+package connection_test
+
+import (
+ "regexp"
+ "testing"
+
+ "github.com/hashicorp/terraform-plugin-testing/helper/resource"
+
+ "github.com/auth0/terraform-provider-auth0/internal/acctest"
+)
+
+const testAccDataSCIMConfigurationNonExistentID = `
+data "auth0_connection_scim_configuration" "test" {
+ connection_id = "con_xxxxxxxxxxxxxxxx"
+}
+`
+
+const testAccDataSCIMConfigurationGivenAConnection = `
+resource "auth0_connection" "my_connection" {
+ name = "Acceptance-Test-SCIM-Connection-{{.testName}}"
+ display_name = "Acceptance-Test-SCIM-{{.testName}}"
+ strategy = "okta"
+ options {
+ client_id = "1234567"
+ client_secret = "1234567"
+ issuer = "https://example.okta.com"
+ jwks_uri = "https://example.okta.com/oauth2/v1/keys"
+ token_endpoint = "https://example.okta.com/oauth2/v1/token"
+ authorization_endpoint = "https://example.okta.com/oauth2/v1/authorize"
+ }
+}
+`
+
+const testAccDataSCIMConfigurationWithNoSCIMConfiguration = testAccDataSCIMConfigurationGivenAConnection + `
+data "auth0_connection_scim_configuration" "my_scim_config" {
+ connection_id = auth0_connection.my_connection.id
+}
+`
+
+const testAccDataSCIMConfigurationWithSCIMConfiguration = testAccDataSCIMConfigurationGivenAConnection + `
+resource "auth0_connection_scim_configuration" "my_scim_config" {
+ connection_id = auth0_connection.my_connection.id
+}
+
+data "auth0_connection_scim_configuration" "my_scim_config" {
+ connection_id = auth0_connection_scim_configuration.my_scim_config.id
+}
+`
+
+const testAccDataSCIMConfigurationDelete = testAccDataSCIMConfigurationGivenAConnection
+
+func TestAccDataSCIMConfiguration(t *testing.T) {
+ acctest.Test(t, resource.TestCase{
+ Steps: []resource.TestStep{
+ {
+ Config: `data "auth0_connection_scim_configuration" "test" { }`,
+ ExpectError: regexp.MustCompile("Error: Missing required argument"),
+ },
+ {
+ Config: acctest.ParseTestName(testAccDataSCIMConfigurationNonExistentID, t.Name()),
+ ExpectError: regexp.MustCompile("404 Not Found: The connection does not exist"),
+ },
+ {
+ Config: acctest.ParseTestName(testAccDataSCIMConfigurationWithNoSCIMConfiguration, t.Name()),
+ ExpectError: regexp.MustCompile("404 Not Found: Not Found"),
+ },
+ {
+ Config: acctest.ParseTestName(testAccDataSCIMConfigurationWithSCIMConfiguration, t.Name()),
+ Check: resource.ComposeTestCheckFunc(
+ resource.TestCheckResourceAttrPair("auth0_connection.my_connection", "id", "auth0_connection_scim_configuration.my_scim_config", "connection_id"),
+ resource.TestCheckResourceAttrPair("auth0_connection.my_connection", "name", "auth0_connection_scim_configuration.my_scim_config", "connection_name"),
+ resource.TestCheckResourceAttrSet("data.auth0_connection_scim_configuration.my_scim_config", "tenant_name"),
+ resource.TestCheckResourceAttr("data.auth0_connection_scim_configuration.my_scim_config", "strategy", "okta"),
+ resource.TestCheckResourceAttrSet("data.auth0_connection_scim_configuration.my_scim_config", "user_id_attribute"),
+ resource.TestCheckResourceAttrSet("data.auth0_connection_scim_configuration.my_scim_config", "mapping.#"),
+ resource.TestCheckResourceAttrSet("data.auth0_connection_scim_configuration.my_scim_config", "default_mapping.#"),
+ resource.TestCheckResourceAttrPair("data.auth0_connection_scim_configuration.my_scim_config", "connection_id", "auth0_connection_scim_configuration.my_scim_config", "connection_id"),
+ resource.TestCheckResourceAttrPair("data.auth0_connection_scim_configuration.my_scim_config", "connection_name", "auth0_connection_scim_configuration.my_scim_config", "connection_name"),
+ resource.TestCheckResourceAttrPair("data.auth0_connection_scim_configuration.my_scim_config", "tenant_name", "auth0_connection_scim_configuration.my_scim_config", "tenant_name"),
+ resource.TestCheckResourceAttrPair("data.auth0_connection_scim_configuration.my_scim_config", "strategy", "auth0_connection_scim_configuration.my_scim_config", "strategy"),
+ resource.TestCheckResourceAttrPair("data.auth0_connection_scim_configuration.my_scim_config", "user_id_attribute", "auth0_connection_scim_configuration.my_scim_config", "user_id_attribute"),
+ resource.TestCheckResourceAttrPair("data.auth0_connection_scim_configuration.my_scim_config", "mapping.#", "auth0_connection_scim_configuration.my_scim_config", "mapping.#"),
+ ),
+ },
+ {
+ Config: acctest.ParseTestName(testAccDataSCIMConfigurationDelete, t.Name()),
+ },
+ },
+ })
+}
diff --git a/internal/auth0/connection/expand.go b/internal/auth0/connection/expand.go
index 9ae2021df..b731898c7 100644
--- a/internal/auth0/connection/expand.go
+++ b/internal/auth0/connection/expand.go
@@ -4,6 +4,7 @@ import (
"context"
"fmt"
+ "github.com/auth0/go-auth0"
"github.com/auth0/go-auth0/management"
"github.com/hashicorp/go-cty/cty"
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
@@ -1078,3 +1079,34 @@ func checkForUnmanagedConfigurationSecrets(configFromTF, configFromAPI map[strin
return warnings
}
+
+func expandSCIMConfigurationMapping(data *schema.ResourceData) *[]management.SCIMConfigurationMapping {
+ srcMapping := data.Get("mapping").(*schema.Set)
+ mapping := make([]management.SCIMConfigurationMapping, 0, srcMapping.Len())
+ for _, item := range srcMapping.List() {
+ srcMap := item.(map[string]interface{})
+ mapping = append(mapping, management.SCIMConfigurationMapping{
+ Auth0: auth0.String(srcMap["auth0"].(string)),
+ SCIM: auth0.String(srcMap["scim"].(string)),
+ })
+ }
+
+ return &mapping
+}
+
+func expandSCIMConfiguration(data *schema.ResourceData) *management.SCIMConfiguration {
+ cfg := data.GetRawConfig()
+ scimConfiguration := &management.SCIMConfiguration{}
+ if !cfg.GetAttr("user_id_attribute").IsNull() {
+ scimConfiguration.UserIDAttribute = auth0.String(data.Get("user_id_attribute").(string))
+ }
+ if !cfg.GetAttr("mapping").IsNull() && cfg.GetAttr("mapping").AsValueSet().Length() > 0 {
+ scimConfiguration.Mapping = expandSCIMConfigurationMapping(data)
+ }
+
+ if scimConfiguration.Mapping != nil || scimConfiguration.UserIDAttribute != nil {
+ return scimConfiguration
+ }
+
+ return nil
+}
diff --git a/internal/auth0/connection/flatten.go b/internal/auth0/connection/flatten.go
index 6e18e5a08..15ba57c51 100644
--- a/internal/auth0/connection/flatten.go
+++ b/internal/auth0/connection/flatten.go
@@ -920,3 +920,28 @@ func flattenConnectionClients(data *schema.ResourceData, connection *management.
return result.ErrorOrNil()
}
+
+func flattenSCIMMappings(mappings []management.SCIMConfigurationMapping) *[]map[string]string {
+ flattenedMappings := make([]map[string]string, 0, len(mappings))
+ for _, mapping := range mappings {
+ flattenedMappings = append(flattenedMappings, map[string]string{
+ "auth0": mapping.GetAuth0(),
+ "scim": mapping.GetSCIM(),
+ })
+ }
+
+ return &flattenedMappings
+}
+
+func flattenSCIMConfiguration(data *schema.ResourceData, scimConfiguration *management.SCIMConfiguration) diag.Diagnostics {
+ result := multierror.Append(
+ data.Set("connection_id", scimConfiguration.GetConnectionID()),
+ data.Set("connection_name", scimConfiguration.GetConnectionName()),
+ data.Set("user_id_attribute", scimConfiguration.GetUserIDAttribute()),
+ data.Set("mapping", flattenSCIMMappings(scimConfiguration.GetMapping())),
+ data.Set("strategy", scimConfiguration.GetStrategy()),
+ data.Set("tenant_name", scimConfiguration.GetTenantName()),
+ )
+
+ return diag.FromErr(result.ErrorOrNil())
+}
diff --git a/internal/auth0/connection/resource_scim.go b/internal/auth0/connection/resource_scim.go
new file mode 100644
index 000000000..df23fbbb9
--- /dev/null
+++ b/internal/auth0/connection/resource_scim.go
@@ -0,0 +1,128 @@
+package connection
+
+import (
+ "context"
+
+ "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"
+
+ "github.com/auth0/terraform-provider-auth0/internal/config"
+ internalError "github.com/auth0/terraform-provider-auth0/internal/error"
+)
+
+// NewSCIMConfigurationResource will return a new auth0_connection_scim_configuration (1:1) resource.
+func NewSCIMConfigurationResource() *schema.Resource {
+ return &schema.Resource{
+ CreateContext: createSCIMConfiguration,
+ UpdateContext: updateSCIMConfiguration,
+ ReadContext: readSCIMConfiguration,
+ DeleteContext: deleteSCIMConfiguration,
+ Importer: &schema.ResourceImporter{
+ StateContext: schema.ImportStatePassthroughContext,
+ },
+ Description: "With this resource, you can configure [SCIM(System for Cross-domain Identity Management)](https://simplecloud.info/) support " +
+ "for `SAML` and `OpenID Connect` Enterprise connections.",
+ Schema: map[string]*schema.Schema{
+ "connection_id": {
+ Type: schema.TypeString,
+ Required: true,
+ ForceNew: true,
+ Description: "ID of the connection for this SCIM configuration.",
+ },
+ "connection_name": {
+ Type: schema.TypeString,
+ Computed: true,
+ Description: "Name of the connection for this SCIM configuration.",
+ },
+ "strategy": {
+ Type: schema.TypeString,
+ Computed: true,
+ Description: "Schema of the connection for this SCIM configuration.",
+ },
+ "tenant_name": {
+ Type: schema.TypeString,
+ Computed: true,
+ Description: "Name of the tenant for this SCIM configuration.",
+ },
+ "user_id_attribute": {
+ Type: schema.TypeString,
+ Optional: true,
+ RequiredWith: []string{"user_id_attribute", "mapping"},
+ Computed: true,
+ Description: "User ID attribute for generation unique of user ids. If `user_id_attribute` is set, `mapping` " +
+ "must be set as well. Defaults to `userName` for SAML connections and `externalId` for OIDC connections.",
+ },
+ "mapping": {
+ Type: schema.TypeSet,
+ Optional: true,
+ RequiredWith: []string{"user_id_attribute", "mapping"},
+ Computed: true,
+ Description: "Mapping between Auth0 attributes and SCIM attributes. If `user_id_attribute` is set, `mapping` " +
+ "must be set as well.",
+ Elem: &schema.Resource{
+ Schema: map[string]*schema.Schema{
+ "auth0": {
+ Type: schema.TypeString,
+ Required: true,
+ ValidateFunc: validation.StringIsNotEmpty,
+ Description: "The field location in the Auth0 schema.",
+ },
+ "scim": {
+ Type: schema.TypeString,
+ Required: true,
+ ValidateFunc: validation.StringIsNotEmpty,
+ Description: "The field location in the SCIM schema.",
+ },
+ },
+ },
+ },
+ },
+ }
+}
+
+func createSCIMConfiguration(ctx context.Context, data *schema.ResourceData, meta interface{}) diag.Diagnostics {
+ api := meta.(*config.Config).GetAPI()
+ connectionID := data.Get("connection_id").(string)
+ scimConfiguration := expandSCIMConfiguration(data)
+
+ if err := api.Connection.CreateSCIMConfiguration(ctx, connectionID, scimConfiguration); err != nil {
+ return diag.FromErr(err)
+ }
+
+ data.SetId(connectionID)
+
+ return readSCIMConfiguration(ctx, data, meta)
+}
+
+func updateSCIMConfiguration(ctx context.Context, data *schema.ResourceData, meta interface{}) diag.Diagnostics {
+ api := meta.(*config.Config).GetAPI()
+ scimConfiguration := expandSCIMConfiguration(data)
+
+ if err := api.Connection.UpdateSCIMConfiguration(ctx, data.Id(), scimConfiguration); err != nil {
+ return diag.FromErr(internalError.HandleAPIError(data, err))
+ }
+
+ return readSCIMConfiguration(ctx, data, meta)
+}
+
+func readSCIMConfiguration(ctx context.Context, data *schema.ResourceData, meta interface{}) diag.Diagnostics {
+ api := meta.(*config.Config).GetAPI()
+
+ scimConfiguration, err := api.Connection.ReadSCIMConfiguration(ctx, data.Id())
+ if err != nil {
+ return diag.FromErr(internalError.HandleAPIError(data, err))
+ }
+
+ return flattenSCIMConfiguration(data, scimConfiguration)
+}
+
+func deleteSCIMConfiguration(ctx context.Context, data *schema.ResourceData, meta interface{}) diag.Diagnostics {
+ api := meta.(*config.Config).GetAPI()
+
+ if err := api.Connection.DeleteSCIMConfiguration(ctx, data.Id()); err != nil {
+ return diag.FromErr(internalError.HandleAPIError(data, err))
+ }
+
+ return nil
+}
diff --git a/internal/auth0/connection/resource_scim_test.go b/internal/auth0/connection/resource_scim_test.go
new file mode 100644
index 000000000..e4b736d18
--- /dev/null
+++ b/internal/auth0/connection/resource_scim_test.go
@@ -0,0 +1,190 @@
+package connection_test
+
+import (
+ "regexp"
+ "testing"
+
+ "github.com/hashicorp/terraform-plugin-testing/helper/resource"
+
+ "github.com/auth0/terraform-provider-auth0/internal/acctest"
+)
+
+const testAccSCIMConfigurationNonExistentID = `
+resource "auth0_connection_scim_configuration" "test" {
+ connection_id = "con_xxxxxxxxxxxxxxxx"
+}
+`
+
+const testAccSCIMConfigurationGivenAnUnsupportedConnection = `
+resource "auth0_connection" "my_unsupported_connection" {
+ name = "Acceptance-Test-Non-SCIM-Connection-{{.testName}}"
+ display_name = "Acceptance-Test-Non-SCIM-{{.testName}}"
+ strategy = "auth0"
+}
+
+resource "auth0_connection_scim_configuration" "my_scim_config" {
+ connection_id = auth0_connection.my_unsupported_connection.id
+}
+`
+
+const testAccSCIMConfigurationGivenAConnection = `
+resource "auth0_connection" "my_connection" {
+ name = "Acceptance-Test-SCIM-Connection-{{.testName}}"
+ display_name = "Acceptance-Test-SCIM-{{.testName}}"
+ strategy = "okta"
+ options {
+ client_id = "1234567"
+ client_secret = "1234567"
+ issuer = "https://example.okta.com"
+ jwks_uri = "https://example.okta.com/oauth2/v1/keys"
+ token_endpoint = "https://example.okta.com/oauth2/v1/token"
+ authorization_endpoint = "https://example.okta.com/oauth2/v1/authorize"
+ }
+}
+`
+
+const testAccSCIMConfigurationDelete = testAccSCIMConfigurationGivenAConnection
+
+const testAccSCIMConfigurationWithDefaults = testAccSCIMConfigurationGivenAConnection + `
+resource "auth0_connection_scim_configuration" "my_scim_config" {
+ connection_id = auth0_connection.my_connection.id
+}
+`
+
+const testAccSCIMConfigurationDeleted = testAccSCIMConfigurationDelete + `
+data "auth0_connection_scim_configuration" "my_scim_config" {
+ connection_id = auth0_connection.my_connection.id
+}
+`
+
+const testAccSCIMConfigurationWithUserIDAttributeOnly = testAccSCIMConfigurationGivenAConnection + `
+resource "auth0_connection_scim_configuration" "my_scim_config" {
+ connection_id = auth0_connection.my_connection.id
+ user_id_attribute = "test_attribute"
+}
+`
+
+const testAccSCIMConfigurationWithMappingOnly = testAccSCIMConfigurationGivenAConnection + `
+resource "auth0_connection_scim_configuration" "my_scim_config" {
+ connection_id = auth0_connection.my_connection.id
+ mapping {
+ auth0 = "attr_auth0"
+ scim = "scim"
+ }
+}
+`
+
+const testAccSCIMConfigurationWithMapping = testAccSCIMConfigurationGivenAConnection + `
+resource "auth0_connection_scim_configuration" "my_scim_config" {
+ connection_id = auth0_connection.my_connection.id
+ user_id_attribute = "test_attribute"
+ mapping {
+ auth0 = "attr_auth0"
+ scim = "scim"
+ }
+}
+`
+
+const testAccSCIMConfigurationWithChangedUserIDAttribute = testAccSCIMConfigurationGivenAConnection + `
+resource "auth0_connection_scim_configuration" "my_scim_config" {
+ connection_id = auth0_connection.my_connection.id
+ user_id_attribute = "modified_test_attribute"
+ mapping {
+ auth0 = "attr_auth0"
+ scim = "scim"
+ }
+}
+`
+
+const testAccSCIMConfigurationWithMultipleMappings = testAccSCIMConfigurationGivenAConnection + `
+resource "auth0_connection_scim_configuration" "my_scim_config" {
+ connection_id = auth0_connection.my_connection.id
+ user_id_attribute = "test_attribute"
+ mapping {
+ auth0 = "attr_auth0_1"
+ scim = "scim_1"
+ }
+ mapping {
+ auth0 = "attr_auth0_2"
+ scim = "scim_2"
+ }
+}
+`
+
+func TestAccSCIMConfiguration(t *testing.T) {
+ acctest.Test(t, resource.TestCase{
+ Steps: []resource.TestStep{
+ {
+ Config: `data "auth0_connection_scim_configuration" "test" { }`,
+ ExpectError: regexp.MustCompile("Error: Missing required argument"),
+ },
+ {
+ Config: acctest.ParseTestName(testAccSCIMConfigurationNonExistentID, t.Name()),
+ ExpectError: regexp.MustCompile("404 Not Found: The connection does not exist"),
+ },
+ {
+ Config: acctest.ParseTestName(testAccSCIMConfigurationGivenAnUnsupportedConnection, t.Name()),
+ ExpectError: regexp.MustCompile("404 Not Found: scim strategy not enabled"),
+ },
+ {
+ Config: acctest.ParseTestName(testAccSCIMConfigurationWithDefaults, t.Name()),
+ Check: resource.ComposeTestCheckFunc(
+ resource.TestCheckResourceAttrPair("auth0_connection.my_connection", "id", "auth0_connection_scim_configuration.my_scim_config", "connection_id"),
+ resource.TestCheckResourceAttrPair("auth0_connection.my_connection", "name", "auth0_connection_scim_configuration.my_scim_config", "connection_name"),
+ resource.TestCheckResourceAttrSet("auth0_connection_scim_configuration.my_scim_config", "tenant_name"),
+ resource.TestCheckResourceAttr("auth0_connection_scim_configuration.my_scim_config", "strategy", "okta"),
+ resource.TestCheckResourceAttrSet("auth0_connection_scim_configuration.my_scim_config", "user_id_attribute"),
+ resource.TestCheckResourceAttrSet("auth0_connection_scim_configuration.my_scim_config", "mapping.#"),
+ ),
+ },
+ {
+ Config: acctest.ParseTestName(testAccSCIMConfigurationDeleted, t.Name()),
+ ExpectError: regexp.MustCompile("404 Not Found: Not Found"),
+ },
+ {
+ Config: acctest.ParseTestName(testAccSCIMConfigurationWithUserIDAttributeOnly, t.Name()),
+ ExpectError: regexp.MustCompile("Error: Missing required argument"),
+ },
+ {
+ Config: acctest.ParseTestName(testAccSCIMConfigurationWithMappingOnly, t.Name()),
+ ExpectError: regexp.MustCompile("Error: Missing required argument"),
+ },
+ {
+ Config: acctest.ParseTestName(testAccSCIMConfigurationWithMultipleMappings, t.Name()),
+ Check: resource.ComposeTestCheckFunc(
+ resource.TestCheckResourceAttrPair("auth0_connection.my_connection", "id", "auth0_connection_scim_configuration.my_scim_config", "connection_id"),
+ resource.TestCheckResourceAttrPair("auth0_connection.my_connection", "name", "auth0_connection_scim_configuration.my_scim_config", "connection_name"),
+ resource.TestCheckResourceAttrSet("auth0_connection_scim_configuration.my_scim_config", "tenant_name"),
+ resource.TestCheckResourceAttr("auth0_connection_scim_configuration.my_scim_config", "strategy", "okta"),
+ resource.TestCheckResourceAttrSet("auth0_connection_scim_configuration.my_scim_config", "user_id_attribute"),
+ resource.TestCheckResourceAttr("auth0_connection_scim_configuration.my_scim_config", "mapping.#", "2"),
+ ),
+ },
+ {
+ Config: acctest.ParseTestName(testAccSCIMConfigurationWithMapping, t.Name()),
+ Check: resource.ComposeTestCheckFunc(
+ resource.TestCheckResourceAttrPair("auth0_connection.my_connection", "id", "auth0_connection_scim_configuration.my_scim_config", "connection_id"),
+ resource.TestCheckResourceAttrPair("auth0_connection.my_connection", "name", "auth0_connection_scim_configuration.my_scim_config", "connection_name"),
+ resource.TestCheckResourceAttrSet("auth0_connection_scim_configuration.my_scim_config", "tenant_name"),
+ resource.TestCheckResourceAttr("auth0_connection_scim_configuration.my_scim_config", "strategy", "okta"),
+ resource.TestCheckResourceAttr("auth0_connection_scim_configuration.my_scim_config", "user_id_attribute", "test_attribute"),
+ resource.TestCheckResourceAttr("auth0_connection_scim_configuration.my_scim_config", "mapping.#", "1"),
+ ),
+ },
+ {
+ Config: acctest.ParseTestName(testAccSCIMConfigurationWithChangedUserIDAttribute, t.Name()),
+ Check: resource.ComposeTestCheckFunc(
+ resource.TestCheckResourceAttrPair("auth0_connection.my_connection", "id", "auth0_connection_scim_configuration.my_scim_config", "connection_id"),
+ resource.TestCheckResourceAttrPair("auth0_connection.my_connection", "name", "auth0_connection_scim_configuration.my_scim_config", "connection_name"),
+ resource.TestCheckResourceAttrSet("auth0_connection_scim_configuration.my_scim_config", "tenant_name"),
+ resource.TestCheckResourceAttr("auth0_connection_scim_configuration.my_scim_config", "strategy", "okta"),
+ resource.TestCheckResourceAttr("auth0_connection_scim_configuration.my_scim_config", "user_id_attribute", "modified_test_attribute"),
+ resource.TestCheckResourceAttr("auth0_connection_scim_configuration.my_scim_config", "mapping.#", "1"),
+ ),
+ },
+ {
+ Config: acctest.ParseTestName(testAccSCIMConfigurationDelete, t.Name()),
+ },
+ },
+ })
+}
diff --git a/internal/provider/provider.go b/internal/provider/provider.go
index b64cdadc5..a62464354 100644
--- a/internal/provider/provider.go
+++ b/internal/provider/provider.go
@@ -88,65 +88,67 @@ func New() *schema.Provider {
},
},
ResourcesMap: map[string]*schema.Resource{
- "auth0_action": action.NewResource(),
- "auth0_trigger_actions": action.NewTriggerActionsResource(),
- "auth0_trigger_action": action.NewTriggerActionResource(),
- "auth0_attack_protection": attackprotection.NewResource(),
- "auth0_branding": branding.NewResource(),
- "auth0_branding_theme": branding.NewThemeResource(),
- "auth0_client": client.NewResource(),
- "auth0_client_credentials": client.NewCredentialsResource(),
- "auth0_client_grant": client.NewGrantResource(),
- "auth0_connection": connection.NewResource(),
- "auth0_connection_client": connection.NewClientResource(),
- "auth0_connection_clients": connection.NewClientsResource(),
- "auth0_custom_domain": customdomain.NewResource(),
- "auth0_custom_domain_verification": customdomain.NewVerificationResource(),
- "auth0_email_provider": email.NewResource(),
- "auth0_email_template": email.NewTemplateResource(),
- "auth0_guardian": guardian.NewResource(),
- "auth0_hook": hook.NewResource(),
- "auth0_log_stream": logstream.NewResource(),
- "auth0_organization": organization.NewResource(),
- "auth0_organization_connection": organization.NewConnectionResource(),
- "auth0_organization_connections": organization.NewConnectionsResource(),
- "auth0_organization_member": organization.NewMemberResource(),
- "auth0_organization_member_role": organization.NewMemberRoleResource(),
- "auth0_organization_member_roles": organization.NewMemberRolesResource(),
- "auth0_organization_members": organization.NewMembersResource(),
- "auth0_pages": page.NewResource(),
- "auth0_prompt": prompt.NewResource(),
- "auth0_prompt_custom_text": prompt.NewCustomTextResource(),
- "auth0_prompt_partials": prompt.NewPartialsResource(),
- "auth0_resource_server": resourceserver.NewResource(),
- "auth0_resource_server_scope": resourceserver.NewScopeResource(),
- "auth0_resource_server_scopes": resourceserver.NewScopesResource(),
- "auth0_role": role.NewResource(),
- "auth0_role_permission": role.NewPermissionResource(),
- "auth0_role_permissions": role.NewPermissionsResource(),
- "auth0_rule": rule.NewResource(),
- "auth0_rule_config": rule.NewConfigResource(),
- "auth0_tenant": tenant.NewResource(),
- "auth0_user": user.NewResource(),
- "auth0_user_permission": user.NewPermissionResource(),
- "auth0_user_permissions": user.NewPermissionsResource(),
- "auth0_user_role": user.NewRoleResource(),
- "auth0_user_roles": user.NewRolesResource(),
+ "auth0_action": action.NewResource(),
+ "auth0_trigger_actions": action.NewTriggerActionsResource(),
+ "auth0_trigger_action": action.NewTriggerActionResource(),
+ "auth0_attack_protection": attackprotection.NewResource(),
+ "auth0_branding": branding.NewResource(),
+ "auth0_branding_theme": branding.NewThemeResource(),
+ "auth0_client": client.NewResource(),
+ "auth0_client_credentials": client.NewCredentialsResource(),
+ "auth0_client_grant": client.NewGrantResource(),
+ "auth0_connection": connection.NewResource(),
+ "auth0_connection_client": connection.NewClientResource(),
+ "auth0_connection_clients": connection.NewClientsResource(),
+ "auth0_connection_scim_configuration": connection.NewSCIMConfigurationResource(),
+ "auth0_custom_domain": customdomain.NewResource(),
+ "auth0_custom_domain_verification": customdomain.NewVerificationResource(),
+ "auth0_email_provider": email.NewResource(),
+ "auth0_email_template": email.NewTemplateResource(),
+ "auth0_guardian": guardian.NewResource(),
+ "auth0_hook": hook.NewResource(),
+ "auth0_log_stream": logstream.NewResource(),
+ "auth0_organization": organization.NewResource(),
+ "auth0_organization_connection": organization.NewConnectionResource(),
+ "auth0_organization_connections": organization.NewConnectionsResource(),
+ "auth0_organization_member": organization.NewMemberResource(),
+ "auth0_organization_member_role": organization.NewMemberRoleResource(),
+ "auth0_organization_member_roles": organization.NewMemberRolesResource(),
+ "auth0_organization_members": organization.NewMembersResource(),
+ "auth0_pages": page.NewResource(),
+ "auth0_prompt": prompt.NewResource(),
+ "auth0_prompt_custom_text": prompt.NewCustomTextResource(),
+ "auth0_prompt_partials": prompt.NewPartialsResource(),
+ "auth0_resource_server": resourceserver.NewResource(),
+ "auth0_resource_server_scope": resourceserver.NewScopeResource(),
+ "auth0_resource_server_scopes": resourceserver.NewScopesResource(),
+ "auth0_role": role.NewResource(),
+ "auth0_role_permission": role.NewPermissionResource(),
+ "auth0_role_permissions": role.NewPermissionsResource(),
+ "auth0_rule": rule.NewResource(),
+ "auth0_rule_config": rule.NewConfigResource(),
+ "auth0_tenant": tenant.NewResource(),
+ "auth0_user": user.NewResource(),
+ "auth0_user_permission": user.NewPermissionResource(),
+ "auth0_user_permissions": user.NewPermissionsResource(),
+ "auth0_user_role": user.NewRoleResource(),
+ "auth0_user_roles": user.NewRolesResource(),
},
DataSourcesMap: map[string]*schema.Resource{
- "auth0_attack_protection": attackprotection.NewDataSource(),
- "auth0_branding": branding.NewDataSource(),
- "auth0_branding_theme": branding.NewThemeDataSource(),
- "auth0_client": client.NewDataSource(),
- "auth0_connection": connection.NewDataSource(),
- "auth0_custom_domain": customdomain.NewDataSource(),
- "auth0_organization": organization.NewDataSource(),
- "auth0_pages": page.NewDataSource(),
- "auth0_resource_server": resourceserver.NewDataSource(),
- "auth0_role": role.NewDataSource(),
- "auth0_signing_keys": signingkey.NewDataSource(),
- "auth0_tenant": tenant.NewDataSource(),
- "auth0_user": user.NewDataSource(),
+ "auth0_attack_protection": attackprotection.NewDataSource(),
+ "auth0_branding": branding.NewDataSource(),
+ "auth0_branding_theme": branding.NewThemeDataSource(),
+ "auth0_client": client.NewDataSource(),
+ "auth0_connection": connection.NewDataSource(),
+ "auth0_connection_scim_configuration": connection.NewSCIMConfigurationDataSource(),
+ "auth0_custom_domain": customdomain.NewDataSource(),
+ "auth0_organization": organization.NewDataSource(),
+ "auth0_pages": page.NewDataSource(),
+ "auth0_resource_server": resourceserver.NewDataSource(),
+ "auth0_role": role.NewDataSource(),
+ "auth0_signing_keys": signingkey.NewDataSource(),
+ "auth0_tenant": tenant.NewDataSource(),
+ "auth0_user": user.NewDataSource(),
},
}
diff --git a/internal/schema/schema.go b/internal/schema/schema.go
index 5a7ef5dff..43eb4a4dd 100644
--- a/internal/schema/schema.go
+++ b/internal/schema/schema.go
@@ -49,6 +49,20 @@ func SetExistingAttributesAsOptional(schema map[string]*schema.Schema, keys ...s
}
}
+// SetExistingAttributesAsRequired updates the schema of existing top level attributes by
+// ensuring they are required by setting Computed and Optional to false and Required to true.
+func SetExistingAttributesAsRequired(schema map[string]*schema.Schema, keys ...string) {
+ for _, attribute := range keys {
+ if _, ok := schema[attribute]; !ok {
+ continue
+ }
+
+ schema[attribute].Computed = false
+ schema[attribute].Optional = false
+ schema[attribute].Required = true
+ }
+}
+
// Clone returns a shallow clone of m.
func Clone[M ~map[K]V, K comparable, V any](m M) M {
if m == nil {
diff --git a/internal/schema/schema_test.go b/internal/schema/schema_test.go
index 0232ef4d7..5a3ffde54 100644
--- a/internal/schema/schema_test.go
+++ b/internal/schema/schema_test.go
@@ -132,6 +132,38 @@ func TestSetExistingAttributesAsOptional(t *testing.T) {
}
}
+func TestSetExistingAttributesAsRequired(t *testing.T) {
+ var newMockResourceSchema = map[string]*schema.Schema{
+ "string_prop": {
+ Type: schema.TypeString,
+ Description: "Some string property.",
+ Optional: true,
+ },
+ "map_prop": {
+ Type: schema.TypeMap,
+ Optional: true,
+ Description: "Some map property.",
+ },
+ "bool_prop": {
+ Type: schema.TypeBool,
+ Computed: true,
+ Description: "Some bool property.",
+ },
+ }
+
+ expectedRequiredAttributes := []string{"string_prop", "map_prop", "bool_prop"}
+ SetExistingAttributesAsRequired(newMockResourceSchema, expectedRequiredAttributes[1:]...)
+
+ // It should not panic if we set a non-existent attribute as required.
+ SetExistingAttributesAsRequired(newMockResourceSchema, "non_existent", expectedRequiredAttributes[0])
+
+ for _, attribute := range expectedRequiredAttributes {
+ assert.True(t, newMockResourceSchema[attribute].Required)
+ assert.False(t, newMockResourceSchema[attribute].Computed)
+ assert.False(t, newMockResourceSchema[attribute].Optional)
+ }
+}
+
func TestClone(t *testing.T) {
var m1 = map[int]int{1: 2, 2: 4, 4: 8, 8: 16}
diff --git a/test/data/recordings/TestAccDataSCIMConfiguration.yaml b/test/data/recordings/TestAccDataSCIMConfiguration.yaml
new file mode 100644
index 000000000..ad4ceb904
--- /dev/null
+++ b/test/data/recordings/TestAccDataSCIMConfiguration.yaml
@@ -0,0 +1,704 @@
+---
+version: 2
+interactions:
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xxxxxxxxxxxxxxxx/scim-configuration
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"statusCode":404,"error":"Not Found","message":"The connection does not exist","errorCode":"inexistent_connection"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 404 Not Found
+ code: 404
+ duration: 236.873625ms
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 463
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ {"name":"Acceptance-Test-SCIM-Connection-TestAccDataSCIMConfiguration","display_name":"Acceptance-Test-SCIM-TestAccDataSCIMConfiguration","strategy":"okta","options":{"client_id":"1234567","client_secret":"1234567","authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","userinfo_endpoint":null,"token_endpoint":"https://example.okta.com/oauth2/v1/token"}}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0/1.8.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: 773
+ uncompressed: false
+ body: '{"id":"con_3tTzkzidQ1kgu9ov","options":{"client_id":"1234567","client_secret":"1234567","authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","userinfo_endpoint":null,"token_endpoint":"https://example.okta.com/oauth2/v1/token","schema_version":"oidc-V4","type":"back_channel","attribute_map":{"mapping_mode":"basic_profile"},"connection_settings":{"pkce":"auto"}},"strategy":"okta","name":"Acceptance-Test-SCIM-Connection-TestAccDataSCIMConfiguration","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SCIM-TestAccDataSCIMConfiguration","enabled_clients":[],"realms":["Acceptance-Test-SCIM-Connection-TestAccDataSCIMConfiguration"]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 201 Created
+ code: 201
+ duration: 289.071125ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_3tTzkzidQ1kgu9ov
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"con_3tTzkzidQ1kgu9ov","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-SCIM-Connection-TestAccDataSCIMConfiguration","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SCIM-TestAccDataSCIMConfiguration","enabled_clients":[],"realms":["Acceptance-Test-SCIM-Connection-TestAccDataSCIMConfiguration"]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 222.525959ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_3tTzkzidQ1kgu9ov/scim-configuration
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"statusCode":404,"error":"Not Found","message":"Not Found"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 404 Not Found
+ code: 404
+ duration: 232.655417ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_3tTzkzidQ1kgu9ov
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"con_3tTzkzidQ1kgu9ov","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-SCIM-Connection-TestAccDataSCIMConfiguration","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SCIM-TestAccDataSCIMConfiguration","enabled_clients":[],"realms":["Acceptance-Test-SCIM-Connection-TestAccDataSCIMConfiguration"]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 217.06775ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_3tTzkzidQ1kgu9ov/scim-configuration
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: false
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_3tTzkzidQ1kgu9ov","connection_name":"Acceptance-Test-SCIM-Connection-TestAccDataSCIMConfiguration","strategy":"okta","mapping":[{"scim":"userName","auth0":"preferred_username"},{"scim":"emails[primary eq true].value","auth0":"email"},{"scim":"externalId","auth0":"app_metadata.external_id"},{"scim":"active","auth0":"blocked"},{"scim":"displayName","auth0":"name"},{"scim":"name.givenName","auth0":"given_name"},{"scim":"name.familyName","auth0":"family_name"},{"scim":"name.middleName","auth0":"app_metadata.middle_name"},{"scim":"name.honorificPrefix","auth0":"app_metadata.honorific_prefix"},{"scim":"name.honorificSuffix","auth0":"app_metadata.honorific_suffix"},{"scim":"nickName","auth0":"nickname"},{"scim":"photos[type eq \"photo\"].value","auth0":"picture"},{"scim":"phoneNumbers[primary eq true].value","auth0":"app_metadata.primary_phone_number"},{"scim":"phoneNumbers[type eq \"mobile\"].value","auth0":"app_metadata.mobile_phone_number"},{"scim":"addresses[type eq \"work\"].streetAddress","auth0":"app_metadata.street_address"},{"scim":"addresses[type eq \"work\"].locality","auth0":"app_metadata.city"},{"scim":"addresses[type eq \"work\"].region","auth0":"app_metadata.state"},{"scim":"addresses[type eq \"work\"].postalCode","auth0":"app_metadata.postal_code"},{"scim":"addresses[type eq \"work\"].formatted","auth0":"app_metadata.postal_address"},{"scim":"addresses[type eq \"work\"].country","auth0":"app_metadata.country"},{"scim":"profileUrl","auth0":"app_metadata.profile_url"},{"scim":"userType","auth0":"app_metadata.user_type"},{"scim":"title","auth0":"app_metadata.title"},{"scim":"preferredLanguage","auth0":"app_metadata.language"},{"scim":"locale","auth0":"app_metadata.locale"},{"scim":"timezone","auth0":"app_metadata.timezone"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.employeeNumber","auth0":"app_metadata.employee_id"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.costCenter","auth0":"app_metadata.cost_center"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.organization","auth0":"app_metadata.organization"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.division","auth0":"app_metadata.division"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.department","auth0":"app_metadata.department"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.manager","auth0":"app_metadata.manager"}],"updated_on":"2024-07-17T18:27:21.789Z","created_at":"2024-07-17T18:27:21.789Z","user_id_attribute":"externalId"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 201 Created
+ code: 201
+ duration: 264.317667ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_3tTzkzidQ1kgu9ov/scim-configuration
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_3tTzkzidQ1kgu9ov","connection_name":"Acceptance-Test-SCIM-Connection-TestAccDataSCIMConfiguration","strategy":"okta","mapping":[{"scim":"userName","auth0":"preferred_username"},{"scim":"emails[primary eq true].value","auth0":"email"},{"scim":"externalId","auth0":"app_metadata.external_id"},{"scim":"active","auth0":"blocked"},{"scim":"displayName","auth0":"name"},{"scim":"name.givenName","auth0":"given_name"},{"scim":"name.familyName","auth0":"family_name"},{"scim":"name.middleName","auth0":"app_metadata.middle_name"},{"scim":"name.honorificPrefix","auth0":"app_metadata.honorific_prefix"},{"scim":"name.honorificSuffix","auth0":"app_metadata.honorific_suffix"},{"scim":"nickName","auth0":"nickname"},{"scim":"photos[type eq \"photo\"].value","auth0":"picture"},{"scim":"phoneNumbers[primary eq true].value","auth0":"app_metadata.primary_phone_number"},{"scim":"phoneNumbers[type eq \"mobile\"].value","auth0":"app_metadata.mobile_phone_number"},{"scim":"addresses[type eq \"work\"].streetAddress","auth0":"app_metadata.street_address"},{"scim":"addresses[type eq \"work\"].locality","auth0":"app_metadata.city"},{"scim":"addresses[type eq \"work\"].region","auth0":"app_metadata.state"},{"scim":"addresses[type eq \"work\"].postalCode","auth0":"app_metadata.postal_code"},{"scim":"addresses[type eq \"work\"].formatted","auth0":"app_metadata.postal_address"},{"scim":"addresses[type eq \"work\"].country","auth0":"app_metadata.country"},{"scim":"profileUrl","auth0":"app_metadata.profile_url"},{"scim":"userType","auth0":"app_metadata.user_type"},{"scim":"title","auth0":"app_metadata.title"},{"scim":"preferredLanguage","auth0":"app_metadata.language"},{"scim":"locale","auth0":"app_metadata.locale"},{"scim":"timezone","auth0":"app_metadata.timezone"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.employeeNumber","auth0":"app_metadata.employee_id"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.costCenter","auth0":"app_metadata.cost_center"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.organization","auth0":"app_metadata.organization"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.division","auth0":"app_metadata.division"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.department","auth0":"app_metadata.department"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.manager","auth0":"app_metadata.manager"}],"updated_on":"2024-07-17T18:27:21.789Z","created_at":"2024-07-17T18:27:21.789Z","user_id_attribute":"externalId"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 254.797625ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_3tTzkzidQ1kgu9ov/scim-configuration
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_3tTzkzidQ1kgu9ov","connection_name":"Acceptance-Test-SCIM-Connection-TestAccDataSCIMConfiguration","strategy":"okta","mapping":[{"scim":"userName","auth0":"preferred_username"},{"scim":"emails[primary eq true].value","auth0":"email"},{"scim":"externalId","auth0":"app_metadata.external_id"},{"scim":"active","auth0":"blocked"},{"scim":"displayName","auth0":"name"},{"scim":"name.givenName","auth0":"given_name"},{"scim":"name.familyName","auth0":"family_name"},{"scim":"name.middleName","auth0":"app_metadata.middle_name"},{"scim":"name.honorificPrefix","auth0":"app_metadata.honorific_prefix"},{"scim":"name.honorificSuffix","auth0":"app_metadata.honorific_suffix"},{"scim":"nickName","auth0":"nickname"},{"scim":"photos[type eq \"photo\"].value","auth0":"picture"},{"scim":"phoneNumbers[primary eq true].value","auth0":"app_metadata.primary_phone_number"},{"scim":"phoneNumbers[type eq \"mobile\"].value","auth0":"app_metadata.mobile_phone_number"},{"scim":"addresses[type eq \"work\"].streetAddress","auth0":"app_metadata.street_address"},{"scim":"addresses[type eq \"work\"].locality","auth0":"app_metadata.city"},{"scim":"addresses[type eq \"work\"].region","auth0":"app_metadata.state"},{"scim":"addresses[type eq \"work\"].postalCode","auth0":"app_metadata.postal_code"},{"scim":"addresses[type eq \"work\"].formatted","auth0":"app_metadata.postal_address"},{"scim":"addresses[type eq \"work\"].country","auth0":"app_metadata.country"},{"scim":"profileUrl","auth0":"app_metadata.profile_url"},{"scim":"userType","auth0":"app_metadata.user_type"},{"scim":"title","auth0":"app_metadata.title"},{"scim":"preferredLanguage","auth0":"app_metadata.language"},{"scim":"locale","auth0":"app_metadata.locale"},{"scim":"timezone","auth0":"app_metadata.timezone"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.employeeNumber","auth0":"app_metadata.employee_id"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.costCenter","auth0":"app_metadata.cost_center"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.organization","auth0":"app_metadata.organization"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.division","auth0":"app_metadata.division"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.department","auth0":"app_metadata.department"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.manager","auth0":"app_metadata.manager"}],"updated_on":"2024-07-17T18:27:21.789Z","created_at":"2024-07-17T18:27:21.789Z","user_id_attribute":"externalId"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 253.444292ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_3tTzkzidQ1kgu9ov/scim-configuration/default-mapping
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"mapping":[{"auth0":"preferred_username","scim":"userName"},{"auth0":"email","scim":"emails[primary eq true].value"},{"auth0":"app_metadata.external_id","scim":"externalId"},{"auth0":"blocked","scim":"active"},{"auth0":"name","scim":"displayName"},{"auth0":"given_name","scim":"name.givenName"},{"auth0":"family_name","scim":"name.familyName"},{"auth0":"app_metadata.middle_name","scim":"name.middleName"},{"auth0":"app_metadata.honorific_prefix","scim":"name.honorificPrefix"},{"auth0":"app_metadata.honorific_suffix","scim":"name.honorificSuffix"},{"auth0":"nickname","scim":"nickName"},{"auth0":"picture","scim":"photos[type eq \"photo\"].value"},{"auth0":"app_metadata.primary_phone_number","scim":"phoneNumbers[primary eq true].value"},{"auth0":"app_metadata.mobile_phone_number","scim":"phoneNumbers[type eq \"mobile\"].value"},{"auth0":"app_metadata.street_address","scim":"addresses[type eq \"work\"].streetAddress"},{"auth0":"app_metadata.city","scim":"addresses[type eq \"work\"].locality"},{"auth0":"app_metadata.state","scim":"addresses[type eq \"work\"].region"},{"auth0":"app_metadata.postal_code","scim":"addresses[type eq \"work\"].postalCode"},{"auth0":"app_metadata.postal_address","scim":"addresses[type eq \"work\"].formatted"},{"auth0":"app_metadata.country","scim":"addresses[type eq \"work\"].country"},{"auth0":"app_metadata.profile_url","scim":"profileUrl"},{"auth0":"app_metadata.user_type","scim":"userType"},{"auth0":"app_metadata.title","scim":"title"},{"auth0":"app_metadata.language","scim":"preferredLanguage"},{"auth0":"app_metadata.locale","scim":"locale"},{"auth0":"app_metadata.timezone","scim":"timezone"},{"auth0":"app_metadata.employee_id","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.employeeNumber"},{"auth0":"app_metadata.cost_center","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.costCenter"},{"auth0":"app_metadata.organization","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.organization"},{"auth0":"app_metadata.division","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.division"},{"auth0":"app_metadata.department","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.department"},{"auth0":"app_metadata.manager","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.manager"}]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 212.562167ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_3tTzkzidQ1kgu9ov/scim-configuration
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_3tTzkzidQ1kgu9ov","connection_name":"Acceptance-Test-SCIM-Connection-TestAccDataSCIMConfiguration","strategy":"okta","mapping":[{"scim":"userName","auth0":"preferred_username"},{"scim":"emails[primary eq true].value","auth0":"email"},{"scim":"externalId","auth0":"app_metadata.external_id"},{"scim":"active","auth0":"blocked"},{"scim":"displayName","auth0":"name"},{"scim":"name.givenName","auth0":"given_name"},{"scim":"name.familyName","auth0":"family_name"},{"scim":"name.middleName","auth0":"app_metadata.middle_name"},{"scim":"name.honorificPrefix","auth0":"app_metadata.honorific_prefix"},{"scim":"name.honorificSuffix","auth0":"app_metadata.honorific_suffix"},{"scim":"nickName","auth0":"nickname"},{"scim":"photos[type eq \"photo\"].value","auth0":"picture"},{"scim":"phoneNumbers[primary eq true].value","auth0":"app_metadata.primary_phone_number"},{"scim":"phoneNumbers[type eq \"mobile\"].value","auth0":"app_metadata.mobile_phone_number"},{"scim":"addresses[type eq \"work\"].streetAddress","auth0":"app_metadata.street_address"},{"scim":"addresses[type eq \"work\"].locality","auth0":"app_metadata.city"},{"scim":"addresses[type eq \"work\"].region","auth0":"app_metadata.state"},{"scim":"addresses[type eq \"work\"].postalCode","auth0":"app_metadata.postal_code"},{"scim":"addresses[type eq \"work\"].formatted","auth0":"app_metadata.postal_address"},{"scim":"addresses[type eq \"work\"].country","auth0":"app_metadata.country"},{"scim":"profileUrl","auth0":"app_metadata.profile_url"},{"scim":"userType","auth0":"app_metadata.user_type"},{"scim":"title","auth0":"app_metadata.title"},{"scim":"preferredLanguage","auth0":"app_metadata.language"},{"scim":"locale","auth0":"app_metadata.locale"},{"scim":"timezone","auth0":"app_metadata.timezone"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.employeeNumber","auth0":"app_metadata.employee_id"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.costCenter","auth0":"app_metadata.cost_center"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.organization","auth0":"app_metadata.organization"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.division","auth0":"app_metadata.division"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.department","auth0":"app_metadata.department"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.manager","auth0":"app_metadata.manager"}],"updated_on":"2024-07-17T18:27:21.789Z","created_at":"2024-07-17T18:27:21.789Z","user_id_attribute":"externalId"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 223.851375ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_3tTzkzidQ1kgu9ov/scim-configuration/default-mapping
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"mapping":[{"auth0":"preferred_username","scim":"userName"},{"auth0":"email","scim":"emails[primary eq true].value"},{"auth0":"app_metadata.external_id","scim":"externalId"},{"auth0":"blocked","scim":"active"},{"auth0":"name","scim":"displayName"},{"auth0":"given_name","scim":"name.givenName"},{"auth0":"family_name","scim":"name.familyName"},{"auth0":"app_metadata.middle_name","scim":"name.middleName"},{"auth0":"app_metadata.honorific_prefix","scim":"name.honorificPrefix"},{"auth0":"app_metadata.honorific_suffix","scim":"name.honorificSuffix"},{"auth0":"nickname","scim":"nickName"},{"auth0":"picture","scim":"photos[type eq \"photo\"].value"},{"auth0":"app_metadata.primary_phone_number","scim":"phoneNumbers[primary eq true].value"},{"auth0":"app_metadata.mobile_phone_number","scim":"phoneNumbers[type eq \"mobile\"].value"},{"auth0":"app_metadata.street_address","scim":"addresses[type eq \"work\"].streetAddress"},{"auth0":"app_metadata.city","scim":"addresses[type eq \"work\"].locality"},{"auth0":"app_metadata.state","scim":"addresses[type eq \"work\"].region"},{"auth0":"app_metadata.postal_code","scim":"addresses[type eq \"work\"].postalCode"},{"auth0":"app_metadata.postal_address","scim":"addresses[type eq \"work\"].formatted"},{"auth0":"app_metadata.country","scim":"addresses[type eq \"work\"].country"},{"auth0":"app_metadata.profile_url","scim":"profileUrl"},{"auth0":"app_metadata.user_type","scim":"userType"},{"auth0":"app_metadata.title","scim":"title"},{"auth0":"app_metadata.language","scim":"preferredLanguage"},{"auth0":"app_metadata.locale","scim":"locale"},{"auth0":"app_metadata.timezone","scim":"timezone"},{"auth0":"app_metadata.employee_id","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.employeeNumber"},{"auth0":"app_metadata.cost_center","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.costCenter"},{"auth0":"app_metadata.organization","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.organization"},{"auth0":"app_metadata.division","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.division"},{"auth0":"app_metadata.department","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.department"},{"auth0":"app_metadata.manager","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.manager"}]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 208.848041ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_3tTzkzidQ1kgu9ov
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"con_3tTzkzidQ1kgu9ov","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-SCIM-Connection-TestAccDataSCIMConfiguration","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SCIM-TestAccDataSCIMConfiguration","enabled_clients":[],"realms":["Acceptance-Test-SCIM-Connection-TestAccDataSCIMConfiguration"]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 230.018042ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_3tTzkzidQ1kgu9ov/scim-configuration
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_3tTzkzidQ1kgu9ov","connection_name":"Acceptance-Test-SCIM-Connection-TestAccDataSCIMConfiguration","strategy":"okta","mapping":[{"scim":"userName","auth0":"preferred_username"},{"scim":"emails[primary eq true].value","auth0":"email"},{"scim":"externalId","auth0":"app_metadata.external_id"},{"scim":"active","auth0":"blocked"},{"scim":"displayName","auth0":"name"},{"scim":"name.givenName","auth0":"given_name"},{"scim":"name.familyName","auth0":"family_name"},{"scim":"name.middleName","auth0":"app_metadata.middle_name"},{"scim":"name.honorificPrefix","auth0":"app_metadata.honorific_prefix"},{"scim":"name.honorificSuffix","auth0":"app_metadata.honorific_suffix"},{"scim":"nickName","auth0":"nickname"},{"scim":"photos[type eq \"photo\"].value","auth0":"picture"},{"scim":"phoneNumbers[primary eq true].value","auth0":"app_metadata.primary_phone_number"},{"scim":"phoneNumbers[type eq \"mobile\"].value","auth0":"app_metadata.mobile_phone_number"},{"scim":"addresses[type eq \"work\"].streetAddress","auth0":"app_metadata.street_address"},{"scim":"addresses[type eq \"work\"].locality","auth0":"app_metadata.city"},{"scim":"addresses[type eq \"work\"].region","auth0":"app_metadata.state"},{"scim":"addresses[type eq \"work\"].postalCode","auth0":"app_metadata.postal_code"},{"scim":"addresses[type eq \"work\"].formatted","auth0":"app_metadata.postal_address"},{"scim":"addresses[type eq \"work\"].country","auth0":"app_metadata.country"},{"scim":"profileUrl","auth0":"app_metadata.profile_url"},{"scim":"userType","auth0":"app_metadata.user_type"},{"scim":"title","auth0":"app_metadata.title"},{"scim":"preferredLanguage","auth0":"app_metadata.language"},{"scim":"locale","auth0":"app_metadata.locale"},{"scim":"timezone","auth0":"app_metadata.timezone"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.employeeNumber","auth0":"app_metadata.employee_id"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.costCenter","auth0":"app_metadata.cost_center"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.organization","auth0":"app_metadata.organization"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.division","auth0":"app_metadata.division"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.department","auth0":"app_metadata.department"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.manager","auth0":"app_metadata.manager"}],"updated_on":"2024-07-17T18:27:21.789Z","created_at":"2024-07-17T18:27:21.789Z","user_id_attribute":"externalId"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 221.938042ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_3tTzkzidQ1kgu9ov/scim-configuration
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_3tTzkzidQ1kgu9ov","connection_name":"Acceptance-Test-SCIM-Connection-TestAccDataSCIMConfiguration","strategy":"okta","mapping":[{"scim":"userName","auth0":"preferred_username"},{"scim":"emails[primary eq true].value","auth0":"email"},{"scim":"externalId","auth0":"app_metadata.external_id"},{"scim":"active","auth0":"blocked"},{"scim":"displayName","auth0":"name"},{"scim":"name.givenName","auth0":"given_name"},{"scim":"name.familyName","auth0":"family_name"},{"scim":"name.middleName","auth0":"app_metadata.middle_name"},{"scim":"name.honorificPrefix","auth0":"app_metadata.honorific_prefix"},{"scim":"name.honorificSuffix","auth0":"app_metadata.honorific_suffix"},{"scim":"nickName","auth0":"nickname"},{"scim":"photos[type eq \"photo\"].value","auth0":"picture"},{"scim":"phoneNumbers[primary eq true].value","auth0":"app_metadata.primary_phone_number"},{"scim":"phoneNumbers[type eq \"mobile\"].value","auth0":"app_metadata.mobile_phone_number"},{"scim":"addresses[type eq \"work\"].streetAddress","auth0":"app_metadata.street_address"},{"scim":"addresses[type eq \"work\"].locality","auth0":"app_metadata.city"},{"scim":"addresses[type eq \"work\"].region","auth0":"app_metadata.state"},{"scim":"addresses[type eq \"work\"].postalCode","auth0":"app_metadata.postal_code"},{"scim":"addresses[type eq \"work\"].formatted","auth0":"app_metadata.postal_address"},{"scim":"addresses[type eq \"work\"].country","auth0":"app_metadata.country"},{"scim":"profileUrl","auth0":"app_metadata.profile_url"},{"scim":"userType","auth0":"app_metadata.user_type"},{"scim":"title","auth0":"app_metadata.title"},{"scim":"preferredLanguage","auth0":"app_metadata.language"},{"scim":"locale","auth0":"app_metadata.locale"},{"scim":"timezone","auth0":"app_metadata.timezone"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.employeeNumber","auth0":"app_metadata.employee_id"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.costCenter","auth0":"app_metadata.cost_center"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.organization","auth0":"app_metadata.organization"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.division","auth0":"app_metadata.division"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.department","auth0":"app_metadata.department"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.manager","auth0":"app_metadata.manager"}],"updated_on":"2024-07-17T18:27:21.789Z","created_at":"2024-07-17T18:27:21.789Z","user_id_attribute":"externalId"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 233.737792ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_3tTzkzidQ1kgu9ov/scim-configuration/default-mapping
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"mapping":[{"auth0":"preferred_username","scim":"userName"},{"auth0":"email","scim":"emails[primary eq true].value"},{"auth0":"app_metadata.external_id","scim":"externalId"},{"auth0":"blocked","scim":"active"},{"auth0":"name","scim":"displayName"},{"auth0":"given_name","scim":"name.givenName"},{"auth0":"family_name","scim":"name.familyName"},{"auth0":"app_metadata.middle_name","scim":"name.middleName"},{"auth0":"app_metadata.honorific_prefix","scim":"name.honorificPrefix"},{"auth0":"app_metadata.honorific_suffix","scim":"name.honorificSuffix"},{"auth0":"nickname","scim":"nickName"},{"auth0":"picture","scim":"photos[type eq \"photo\"].value"},{"auth0":"app_metadata.primary_phone_number","scim":"phoneNumbers[primary eq true].value"},{"auth0":"app_metadata.mobile_phone_number","scim":"phoneNumbers[type eq \"mobile\"].value"},{"auth0":"app_metadata.street_address","scim":"addresses[type eq \"work\"].streetAddress"},{"auth0":"app_metadata.city","scim":"addresses[type eq \"work\"].locality"},{"auth0":"app_metadata.state","scim":"addresses[type eq \"work\"].region"},{"auth0":"app_metadata.postal_code","scim":"addresses[type eq \"work\"].postalCode"},{"auth0":"app_metadata.postal_address","scim":"addresses[type eq \"work\"].formatted"},{"auth0":"app_metadata.country","scim":"addresses[type eq \"work\"].country"},{"auth0":"app_metadata.profile_url","scim":"profileUrl"},{"auth0":"app_metadata.user_type","scim":"userType"},{"auth0":"app_metadata.title","scim":"title"},{"auth0":"app_metadata.language","scim":"preferredLanguage"},{"auth0":"app_metadata.locale","scim":"locale"},{"auth0":"app_metadata.timezone","scim":"timezone"},{"auth0":"app_metadata.employee_id","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.employeeNumber"},{"auth0":"app_metadata.cost_center","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.costCenter"},{"auth0":"app_metadata.organization","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.organization"},{"auth0":"app_metadata.division","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.division"},{"auth0":"app_metadata.department","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.department"},{"auth0":"app_metadata.manager","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.manager"}]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 235.760291ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_3tTzkzidQ1kgu9ov
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"con_3tTzkzidQ1kgu9ov","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-SCIM-Connection-TestAccDataSCIMConfiguration","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SCIM-TestAccDataSCIMConfiguration","enabled_clients":[],"realms":["Acceptance-Test-SCIM-Connection-TestAccDataSCIMConfiguration"]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 243.019459ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_3tTzkzidQ1kgu9ov/scim-configuration
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_3tTzkzidQ1kgu9ov","connection_name":"Acceptance-Test-SCIM-Connection-TestAccDataSCIMConfiguration","strategy":"okta","mapping":[{"scim":"userName","auth0":"preferred_username"},{"scim":"emails[primary eq true].value","auth0":"email"},{"scim":"externalId","auth0":"app_metadata.external_id"},{"scim":"active","auth0":"blocked"},{"scim":"displayName","auth0":"name"},{"scim":"name.givenName","auth0":"given_name"},{"scim":"name.familyName","auth0":"family_name"},{"scim":"name.middleName","auth0":"app_metadata.middle_name"},{"scim":"name.honorificPrefix","auth0":"app_metadata.honorific_prefix"},{"scim":"name.honorificSuffix","auth0":"app_metadata.honorific_suffix"},{"scim":"nickName","auth0":"nickname"},{"scim":"photos[type eq \"photo\"].value","auth0":"picture"},{"scim":"phoneNumbers[primary eq true].value","auth0":"app_metadata.primary_phone_number"},{"scim":"phoneNumbers[type eq \"mobile\"].value","auth0":"app_metadata.mobile_phone_number"},{"scim":"addresses[type eq \"work\"].streetAddress","auth0":"app_metadata.street_address"},{"scim":"addresses[type eq \"work\"].locality","auth0":"app_metadata.city"},{"scim":"addresses[type eq \"work\"].region","auth0":"app_metadata.state"},{"scim":"addresses[type eq \"work\"].postalCode","auth0":"app_metadata.postal_code"},{"scim":"addresses[type eq \"work\"].formatted","auth0":"app_metadata.postal_address"},{"scim":"addresses[type eq \"work\"].country","auth0":"app_metadata.country"},{"scim":"profileUrl","auth0":"app_metadata.profile_url"},{"scim":"userType","auth0":"app_metadata.user_type"},{"scim":"title","auth0":"app_metadata.title"},{"scim":"preferredLanguage","auth0":"app_metadata.language"},{"scim":"locale","auth0":"app_metadata.locale"},{"scim":"timezone","auth0":"app_metadata.timezone"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.employeeNumber","auth0":"app_metadata.employee_id"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.costCenter","auth0":"app_metadata.cost_center"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.organization","auth0":"app_metadata.organization"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.division","auth0":"app_metadata.division"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.department","auth0":"app_metadata.department"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.manager","auth0":"app_metadata.manager"}],"updated_on":"2024-07-17T18:27:21.789Z","created_at":"2024-07-17T18:27:21.789Z","user_id_attribute":"externalId"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 251.327125ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_3tTzkzidQ1kgu9ov/scim-configuration
+ 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: 232.1575ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_3tTzkzidQ1kgu9ov
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"con_3tTzkzidQ1kgu9ov","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-SCIM-Connection-TestAccDataSCIMConfiguration","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SCIM-TestAccDataSCIMConfiguration","enabled_clients":[],"realms":["Acceptance-Test-SCIM-Connection-TestAccDataSCIMConfiguration"]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 235.590666ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_3tTzkzidQ1kgu9ov
+ 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-07-17T18:27:27.354Z"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 202 Accepted
+ code: 202
+ duration: 249.347292ms
diff --git a/test/data/recordings/TestAccOrganizationConnection.yaml b/test/data/recordings/TestAccOrganizationConnection.yaml
index 301848dfa..addba7939 100644
--- a/test/data/recordings/TestAccOrganizationConnection.yaml
+++ b/test/data/recordings/TestAccOrganizationConnection.yaml
@@ -28,15 +28,15 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 574
+ content_length: 379
uncompressed: false
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 196.587625ms
+ duration: 261.539083ms
- id: 1
request:
proto: HTTP/1.1
@@ -55,7 +55,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -65,13 +65,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.7965ms
+ duration: 172.790375ms
- id: 2
request:
proto: HTTP/1.1
@@ -101,13 +101,13 @@ interactions:
trailer: {}
content_length: 767
uncompressed: false
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"client_id":"1234567","client_secret":"1234567","authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","userinfo_endpoint":null,"token_endpoint":"https://example.okta.com/oauth2/v1/token","schema_version":"oidc-V4","type":"back_channel","attribute_map":{"mapping_mode":"basic_profile"},"connection_settings":{"pkce":"auto"}},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"client_id":"1234567","client_secret":"1234567","authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","userinfo_endpoint":null,"token_endpoint":"https://example.okta.com/oauth2/v1/token","schema_version":"oidc-V4","type":"back_channel","attribute_map":{"mapping_mode":"basic_profile"},"connection_settings":{"pkce":"auto"}},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 201.515792ms
+ duration: 249.313709ms
- id: 3
request:
proto: HTTP/1.1
@@ -126,7 +126,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -136,13 +136,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 151.258625ms
+ duration: 130.041125ms
- id: 4
request:
proto: HTTP/1.1
@@ -172,13 +172,13 @@ interactions:
trailer: {}
content_length: 124
uncompressed: false
- body: '{"id":"org_KWfP8CViTqCnCLAY","display_name":"testaccorganizationconnection","name":"some-org-testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","display_name":"testaccorganizationconnection","name":"some-org-testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 153.662958ms
+ duration: 143.852ms
- id: 5
request:
proto: HTTP/1.1
@@ -197,7 +197,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -207,13 +207,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 154.16925ms
+ duration: 125.41125ms
- id: 6
request:
proto: HTTP/1.1
@@ -226,14 +226,14 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"connection_id":"con_J9VZdQRJkbgExhXl"}
+ {"connection_id":"con_mdWK0jSmM6DaNoFv"}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections
method: POST
response:
proto: HTTP/2.0
@@ -243,13 +243,13 @@ interactions:
trailer: {}
content_length: 226
uncompressed: false
- body: '{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
+ body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 151.678416ms
+ duration: 131.978375ms
- id: 7
request:
proto: HTTP/1.1
@@ -268,7 +268,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -278,13 +278,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
+ body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 154.071208ms
+ duration: 115.175667ms
- id: 8
request:
proto: HTTP/1.1
@@ -303,7 +303,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -313,13 +313,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.27575ms
+ duration: 130.141792ms
- id: 9
request:
proto: HTTP/1.1
@@ -338,7 +338,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -348,13 +348,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 158.28775ms
+ duration: 116.466959ms
- id: 10
request:
proto: HTTP/1.1
@@ -373,7 +373,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -389,7 +389,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 153.196ms
+ duration: 140.843958ms
- id: 11
request:
proto: HTTP/1.1
@@ -408,7 +408,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -418,13 +418,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 138.977ms
+ duration: 123.868084ms
- id: 12
request:
proto: HTTP/1.1
@@ -443,7 +443,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -453,13 +453,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.13025ms
+ duration: 125.878625ms
- id: 13
request:
proto: HTTP/1.1
@@ -478,7 +478,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -494,7 +494,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.895042ms
+ duration: 124.745208ms
- id: 14
request:
proto: HTTP/1.1
@@ -513,7 +513,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -523,13 +523,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 142.002208ms
+ duration: 115.238834ms
- id: 15
request:
proto: HTTP/1.1
@@ -548,7 +548,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -558,13 +558,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.671667ms
+ duration: 111.258458ms
- id: 16
request:
proto: HTTP/1.1
@@ -583,7 +583,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -593,13 +593,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 138.137792ms
+ duration: 109.789541ms
- id: 17
request:
proto: HTTP/1.1
@@ -618,7 +618,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -628,13 +628,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
+ body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 155.114708ms
+ duration: 112.422416ms
- id: 18
request:
proto: HTTP/1.1
@@ -653,7 +653,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -663,13 +663,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.65325ms
+ duration: 114.295583ms
- id: 19
request:
proto: HTTP/1.1
@@ -688,7 +688,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -698,13 +698,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.517208ms
+ duration: 127.465625ms
- id: 20
request:
proto: HTTP/1.1
@@ -723,7 +723,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -739,7 +739,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 151.5505ms
+ duration: 115.960167ms
- id: 21
request:
proto: HTTP/1.1
@@ -758,7 +758,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -768,13 +768,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.69525ms
+ duration: 135.59275ms
- id: 22
request:
proto: HTTP/1.1
@@ -793,7 +793,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -803,13 +803,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.153708ms
+ duration: 111.897292ms
- id: 23
request:
proto: HTTP/1.1
@@ -828,7 +828,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -838,13 +838,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 165.871167ms
+ duration: 107.472292ms
- id: 24
request:
proto: HTTP/1.1
@@ -863,7 +863,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -873,13 +873,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
+ body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.87775ms
+ duration: 146.755375ms
- id: 25
request:
proto: HTTP/1.1
@@ -899,7 +899,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: PATCH
response:
proto: HTTP/2.0
@@ -909,13 +909,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
+ body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.567083ms
+ duration: 132.007125ms
- id: 26
request:
proto: HTTP/1.1
@@ -934,7 +934,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -944,13 +944,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
+ body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 164.124959ms
+ duration: 113.373125ms
- id: 27
request:
proto: HTTP/1.1
@@ -969,7 +969,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -979,13 +979,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 157.878208ms
+ duration: 112.65275ms
- id: 28
request:
proto: HTTP/1.1
@@ -1004,7 +1004,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -1014,13 +1014,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.345458ms
+ duration: 118.430625ms
- id: 29
request:
proto: HTTP/1.1
@@ -1039,7 +1039,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -1055,7 +1055,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 154.077625ms
+ duration: 119.443958ms
- id: 30
request:
proto: HTTP/1.1
@@ -1074,7 +1074,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -1084,13 +1084,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 142.848584ms
+ duration: 115.140292ms
- id: 31
request:
proto: HTTP/1.1
@@ -1109,7 +1109,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -1119,13 +1119,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.628666ms
+ duration: 116.873833ms
- id: 32
request:
proto: HTTP/1.1
@@ -1144,7 +1144,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -1160,7 +1160,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.374042ms
+ duration: 121.937583ms
- id: 33
request:
proto: HTTP/1.1
@@ -1179,7 +1179,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -1189,13 +1189,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.167292ms
+ duration: 121.370667ms
- id: 34
request:
proto: HTTP/1.1
@@ -1214,7 +1214,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -1224,13 +1224,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 158.899208ms
+ duration: 117.506959ms
- id: 35
request:
proto: HTTP/1.1
@@ -1249,7 +1249,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -1259,13 +1259,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.365375ms
+ duration: 117.759667ms
- id: 36
request:
proto: HTTP/1.1
@@ -1284,7 +1284,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -1294,13 +1294,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
+ body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.102208ms
+ duration: 122.369792ms
- id: 37
request:
proto: HTTP/1.1
@@ -1319,7 +1319,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -1329,13 +1329,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 156.433416ms
+ duration: 118.03375ms
- id: 38
request:
proto: HTTP/1.1
@@ -1354,7 +1354,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -1364,13 +1364,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.192333ms
+ duration: 124.55025ms
- id: 39
request:
proto: HTTP/1.1
@@ -1389,7 +1389,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -1405,7 +1405,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 157.148666ms
+ duration: 130.239917ms
- id: 40
request:
proto: HTTP/1.1
@@ -1424,7 +1424,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -1434,13 +1434,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 129.984625ms
+ duration: 128.297583ms
- id: 41
request:
proto: HTTP/1.1
@@ -1459,7 +1459,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -1469,13 +1469,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 134.006791ms
+ duration: 107.410666ms
- id: 42
request:
proto: HTTP/1.1
@@ -1494,7 +1494,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -1504,13 +1504,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 142.273917ms
+ duration: 109.165125ms
- id: 43
request:
proto: HTTP/1.1
@@ -1529,7 +1529,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -1539,13 +1539,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
+ body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.606208ms
+ duration: 120.110709ms
- id: 44
request:
proto: HTTP/1.1
@@ -1558,14 +1558,14 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true}
+ {"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections
method: POST
response:
proto: HTTP/2.0
@@ -1575,13 +1575,13 @@ interactions:
trailer: {}
content_length: 206
uncompressed: false
- body: '{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
+ body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 284.2ms
+ duration: 129.779125ms
- id: 45
request:
proto: HTTP/1.1
@@ -1600,7 +1600,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -1610,13 +1610,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
+ body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 154.418542ms
+ duration: 114.642875ms
- id: 46
request:
proto: HTTP/1.1
@@ -1635,7 +1635,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -1645,13 +1645,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 167.905958ms
+ duration: 121.787708ms
- id: 47
request:
proto: HTTP/1.1
@@ -1670,7 +1670,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -1680,13 +1680,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}},{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.087334ms
+ duration: 136.062333ms
- id: 48
request:
proto: HTTP/1.1
@@ -1705,7 +1705,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -1721,7 +1721,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.837667ms
+ duration: 115.452541ms
- id: 49
request:
proto: HTTP/1.1
@@ -1740,7 +1740,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -1750,13 +1750,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 161.9465ms
+ duration: 122.248083ms
- id: 50
request:
proto: HTTP/1.1
@@ -1775,7 +1775,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -1785,13 +1785,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}},{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.205125ms
+ duration: 123.123708ms
- id: 51
request:
proto: HTTP/1.1
@@ -1810,7 +1810,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -1826,7 +1826,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 202.40425ms
+ duration: 115.958625ms
- id: 52
request:
proto: HTTP/1.1
@@ -1845,7 +1845,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -1855,13 +1855,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.650917ms
+ duration: 117.334917ms
- id: 53
request:
proto: HTTP/1.1
@@ -1880,7 +1880,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -1890,13 +1890,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 141.34625ms
+ duration: 123.165917ms
- id: 54
request:
proto: HTTP/1.1
@@ -1915,7 +1915,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -1925,13 +1925,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.010708ms
+ duration: 112.3025ms
- id: 55
request:
proto: HTTP/1.1
@@ -1950,7 +1950,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -1960,13 +1960,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
+ body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 162.606959ms
+ duration: 121.124166ms
- id: 56
request:
proto: HTTP/1.1
@@ -1985,7 +1985,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -1995,13 +1995,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
+ body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 176.505875ms
+ duration: 137.58225ms
- id: 57
request:
proto: HTTP/1.1
@@ -2020,7 +2020,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -2030,13 +2030,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 155.330667ms
+ duration: 112.5075ms
- id: 58
request:
proto: HTTP/1.1
@@ -2055,7 +2055,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -2065,13 +2065,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}},{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 159.787709ms
+ duration: 125.593167ms
- id: 59
request:
proto: HTTP/1.1
@@ -2090,7 +2090,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -2106,7 +2106,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.822ms
+ duration: 118.9ms
- id: 60
request:
proto: HTTP/1.1
@@ -2125,7 +2125,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -2135,13 +2135,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 141.903167ms
+ duration: 120.165041ms
- id: 61
request:
proto: HTTP/1.1
@@ -2160,7 +2160,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -2170,13 +2170,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.965708ms
+ duration: 127.406208ms
- id: 62
request:
proto: HTTP/1.1
@@ -2195,7 +2195,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -2205,13 +2205,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
+ body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.954416ms
+ duration: 143.437625ms
- id: 63
request:
proto: HTTP/1.1
@@ -2230,7 +2230,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -2240,13 +2240,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 139.95425ms
+ duration: 125.435916ms
- id: 64
request:
proto: HTTP/1.1
@@ -2265,7 +2265,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -2275,13 +2275,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 171.238791ms
+ duration: 144.36425ms
- id: 65
request:
proto: HTTP/1.1
@@ -2300,7 +2300,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -2310,13 +2310,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 137.339416ms
+ duration: 147.298292ms
- id: 66
request:
proto: HTTP/1.1
@@ -2335,7 +2335,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -2345,13 +2345,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}},{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.943709ms
+ duration: 126.474917ms
- id: 67
request:
proto: HTTP/1.1
@@ -2370,7 +2370,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -2386,7 +2386,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 136.189709ms
+ duration: 116.113ms
- id: 68
request:
proto: HTTP/1.1
@@ -2405,7 +2405,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3
method: DELETE
response:
proto: HTTP/2.0
@@ -2421,7 +2421,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 159.233875ms
+ duration: 114.889209ms
- id: 69
request:
proto: HTTP/1.1
@@ -2440,7 +2440,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: DELETE
response:
proto: HTTP/2.0
@@ -2456,7 +2456,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 143.0255ms
+ duration: 122.632042ms
- id: 70
request:
proto: HTTP/1.1
@@ -2475,7 +2475,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -2485,13 +2485,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.425875ms
+ duration: 116.074917ms
- id: 71
request:
proto: HTTP/1.1
@@ -2510,7 +2510,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -2526,7 +2526,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.304917ms
+ duration: 115.129125ms
- id: 72
request:
proto: HTTP/1.1
@@ -2545,7 +2545,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -2561,7 +2561,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 155.219959ms
+ duration: 116.480625ms
- id: 73
request:
proto: HTTP/1.1
@@ -2580,7 +2580,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -2590,13 +2590,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 141.215167ms
+ duration: 113.337ms
- id: 74
request:
proto: HTTP/1.1
@@ -2615,7 +2615,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -2625,13 +2625,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.940125ms
+ duration: 130.046333ms
- id: 75
request:
proto: HTTP/1.1
@@ -2650,7 +2650,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -2660,13 +2660,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 162.048917ms
+ duration: 111.999875ms
- id: 76
request:
proto: HTTP/1.1
@@ -2685,7 +2685,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -2695,13 +2695,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.446292ms
+ duration: 110.664833ms
- id: 77
request:
proto: HTTP/1.1
@@ -2720,7 +2720,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -2736,7 +2736,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.04825ms
+ duration: 112.317291ms
- id: 78
request:
proto: HTTP/1.1
@@ -2755,7 +2755,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -2771,7 +2771,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 153.385917ms
+ duration: 122.339ms
- id: 79
request:
proto: HTTP/1.1
@@ -2790,7 +2790,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -2800,13 +2800,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.084ms
+ duration: 111.616916ms
- id: 80
request:
proto: HTTP/1.1
@@ -2825,7 +2825,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -2835,13 +2835,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 138.251125ms
+ duration: 112.732666ms
- id: 81
request:
proto: HTTP/1.1
@@ -2860,7 +2860,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -2870,13 +2870,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 157.828167ms
+ duration: 109.162833ms
- id: 82
request:
proto: HTTP/1.1
@@ -2895,7 +2895,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -2905,13 +2905,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.184667ms
+ duration: 130.646667ms
- id: 83
request:
proto: HTTP/1.1
@@ -2930,7 +2930,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -2946,7 +2946,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 162.535416ms
+ duration: 138.047875ms
- id: 84
request:
proto: HTTP/1.1
@@ -2965,7 +2965,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -2981,7 +2981,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 163.055833ms
+ duration: 110.711583ms
- id: 85
request:
proto: HTTP/1.1
@@ -3000,7 +3000,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -3010,13 +3010,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 156.494708ms
+ duration: 111.840916ms
- id: 86
request:
proto: HTTP/1.1
@@ -3035,7 +3035,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -3045,13 +3045,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 138.331708ms
+ duration: 114.260166ms
- id: 87
request:
proto: HTTP/1.1
@@ -3070,7 +3070,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -3080,13 +3080,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.2185ms
+ duration: 112.417375ms
- id: 88
request:
proto: HTTP/1.1
@@ -3105,7 +3105,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -3115,13 +3115,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 155.58725ms
+ duration: 115.582167ms
- id: 89
request:
proto: HTTP/1.1
@@ -3140,7 +3140,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -3156,7 +3156,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.731583ms
+ duration: 123.462541ms
- id: 90
request:
proto: HTTP/1.1
@@ -3175,7 +3175,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -3191,7 +3191,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 193.71675ms
+ duration: 127.547959ms
- id: 91
request:
proto: HTTP/1.1
@@ -3210,7 +3210,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -3220,13 +3220,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.180833ms
+ duration: 107.412917ms
- id: 92
request:
proto: HTTP/1.1
@@ -3245,7 +3245,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -3255,13 +3255,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 154.375167ms
+ duration: 113.333333ms
- id: 93
request:
proto: HTTP/1.1
@@ -3280,7 +3280,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -3290,13 +3290,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 151.593625ms
+ duration: 107.261666ms
- id: 94
request:
proto: HTTP/1.1
@@ -3309,14 +3309,14 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"connection_id":"con_dlQHk0YB48BKaktV","show_as_button":true}
+ {"connection_id":"con_xhYrcedsefCpXXs3","show_as_button":true}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections
method: POST
response:
proto: HTTP/2.0
@@ -3326,13 +3326,13 @@ interactions:
trailer: {}
content_length: 207
uncompressed: false
- body: '{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
+ body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 155.270542ms
+ duration: 119.178959ms
- id: 95
request:
proto: HTTP/1.1
@@ -3351,7 +3351,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -3361,13 +3361,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
+ body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 161.138292ms
+ duration: 117.378333ms
- id: 96
request:
proto: HTTP/1.1
@@ -3386,7 +3386,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -3396,13 +3396,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 182.8355ms
+ duration: 164.935208ms
- id: 97
request:
proto: HTTP/1.1
@@ -3421,7 +3421,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -3431,13 +3431,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 160.457834ms
+ duration: 118.740208ms
- id: 98
request:
proto: HTTP/1.1
@@ -3456,7 +3456,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -3472,7 +3472,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.750083ms
+ duration: 111.993542ms
- id: 99
request:
proto: HTTP/1.1
@@ -3491,7 +3491,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -3501,13 +3501,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 137.71925ms
+ duration: 114.427833ms
- id: 100
request:
proto: HTTP/1.1
@@ -3526,7 +3526,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -3536,13 +3536,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.642417ms
+ duration: 122.088166ms
- id: 101
request:
proto: HTTP/1.1
@@ -3561,7 +3561,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -3577,7 +3577,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 142.064834ms
+ duration: 124.306625ms
- id: 102
request:
proto: HTTP/1.1
@@ -3596,7 +3596,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -3606,13 +3606,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 132.213958ms
+ duration: 113.378958ms
- id: 103
request:
proto: HTTP/1.1
@@ -3631,7 +3631,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -3641,13 +3641,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 154.723083ms
+ duration: 107.424625ms
- id: 104
request:
proto: HTTP/1.1
@@ -3666,7 +3666,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -3676,13 +3676,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 137.841ms
+ duration: 113.505416ms
- id: 105
request:
proto: HTTP/1.1
@@ -3701,7 +3701,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -3711,13 +3711,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
+ body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.26675ms
+ duration: 120.742041ms
- id: 106
request:
proto: HTTP/1.1
@@ -3736,7 +3736,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -3746,13 +3746,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 271.801458ms
+ duration: 108.382667ms
- id: 107
request:
proto: HTTP/1.1
@@ -3771,7 +3771,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -3781,13 +3781,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 135.354916ms
+ duration: 115.65975ms
- id: 108
request:
proto: HTTP/1.1
@@ -3806,7 +3806,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -3822,7 +3822,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.981292ms
+ duration: 128.303083ms
- id: 109
request:
proto: HTTP/1.1
@@ -3841,7 +3841,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -3851,13 +3851,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.69425ms
+ duration: 212.260291ms
- id: 110
request:
proto: HTTP/1.1
@@ -3876,7 +3876,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -3886,13 +3886,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 142.991666ms
+ duration: 112.153708ms
- id: 111
request:
proto: HTTP/1.1
@@ -3911,7 +3911,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -3921,13 +3921,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.109041ms
+ duration: 109.916875ms
- id: 112
request:
proto: HTTP/1.1
@@ -3946,7 +3946,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -3956,13 +3956,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
+ body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.078375ms
+ duration: 114.468709ms
- id: 113
request:
proto: HTTP/1.1
@@ -3982,7 +3982,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3
method: PATCH
response:
proto: HTTP/2.0
@@ -3992,13 +3992,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
+ body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.067667ms
+ duration: 124.596375ms
- id: 114
request:
proto: HTTP/1.1
@@ -4017,7 +4017,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -4027,13 +4027,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
+ body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 165.988209ms
+ duration: 127.943667ms
- id: 115
request:
proto: HTTP/1.1
@@ -4052,7 +4052,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -4062,13 +4062,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 275.952459ms
+ duration: 112.699334ms
- id: 116
request:
proto: HTTP/1.1
@@ -4087,7 +4087,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -4097,13 +4097,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.265ms
+ duration: 114.002667ms
- id: 117
request:
proto: HTTP/1.1
@@ -4122,7 +4122,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -4138,7 +4138,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 137.48125ms
+ duration: 151.581333ms
- id: 118
request:
proto: HTTP/1.1
@@ -4157,7 +4157,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -4167,13 +4167,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 137.931292ms
+ duration: 110.966917ms
- id: 119
request:
proto: HTTP/1.1
@@ -4192,7 +4192,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -4202,13 +4202,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 175.201209ms
+ duration: 115.802209ms
- id: 120
request:
proto: HTTP/1.1
@@ -4227,7 +4227,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -4243,7 +4243,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.436584ms
+ duration: 123.780458ms
- id: 121
request:
proto: HTTP/1.1
@@ -4262,7 +4262,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -4272,13 +4272,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.328542ms
+ duration: 119.054458ms
- id: 122
request:
proto: HTTP/1.1
@@ -4297,7 +4297,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -4307,13 +4307,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.523959ms
+ duration: 110.755625ms
- id: 123
request:
proto: HTTP/1.1
@@ -4332,7 +4332,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -4342,13 +4342,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 163.358125ms
+ duration: 111.727041ms
- id: 124
request:
proto: HTTP/1.1
@@ -4367,7 +4367,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -4377,13 +4377,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
+ body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.759875ms
+ duration: 116.219458ms
- id: 125
request:
proto: HTTP/1.1
@@ -4402,7 +4402,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -4412,13 +4412,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 142.7595ms
+ duration: 113.527875ms
- id: 126
request:
proto: HTTP/1.1
@@ -4437,7 +4437,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -4447,13 +4447,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.243709ms
+ duration: 116.207291ms
- id: 127
request:
proto: HTTP/1.1
@@ -4472,7 +4472,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -4488,7 +4488,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.650958ms
+ duration: 111.497792ms
- id: 128
request:
proto: HTTP/1.1
@@ -4507,7 +4507,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -4517,13 +4517,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
+ body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 151.000333ms
+ duration: 124.595625ms
- id: 129
request:
proto: HTTP/1.1
@@ -4542,7 +4542,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -4552,13 +4552,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 234.063084ms
+ duration: 148.641917ms
- id: 130
request:
proto: HTTP/1.1
@@ -4577,7 +4577,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -4587,13 +4587,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.83925ms
+ duration: 116.259667ms
- id: 131
request:
proto: HTTP/1.1
@@ -4612,7 +4612,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -4622,13 +4622,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 139.76925ms
+ duration: 121.015667ms
- id: 132
request:
proto: HTTP/1.1
@@ -4647,7 +4647,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -4657,13 +4657,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 155.2925ms
+ duration: 112.770834ms
- id: 133
request:
proto: HTTP/1.1
@@ -4682,7 +4682,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -4692,13 +4692,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 164.6295ms
+ duration: 118.525416ms
- id: 134
request:
proto: HTTP/1.1
@@ -4717,7 +4717,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -4733,7 +4733,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 174.259792ms
+ duration: 116.737167ms
- id: 135
request:
proto: HTTP/1.1
@@ -4752,7 +4752,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3
method: DELETE
response:
proto: HTTP/2.0
@@ -4768,7 +4768,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 147.826667ms
+ duration: 159.643541ms
- id: 136
request:
proto: HTTP/1.1
@@ -4787,7 +4787,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -4797,13 +4797,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 142.437417ms
+ duration: 104.242084ms
- id: 137
request:
proto: HTTP/1.1
@@ -4822,7 +4822,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -4838,7 +4838,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.301083ms
+ duration: 117.256333ms
- id: 138
request:
proto: HTTP/1.1
@@ -4857,7 +4857,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -4873,7 +4873,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.6565ms
+ duration: 134.385917ms
- id: 139
request:
proto: HTTP/1.1
@@ -4892,7 +4892,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -4902,13 +4902,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.15425ms
+ duration: 113.54ms
- id: 140
request:
proto: HTTP/1.1
@@ -4927,7 +4927,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -4937,13 +4937,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.925625ms
+ duration: 114.436125ms
- id: 141
request:
proto: HTTP/1.1
@@ -4962,7 +4962,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -4972,13 +4972,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 153.353417ms
+ duration: 121.082958ms
- id: 142
request:
proto: HTTP/1.1
@@ -4997,7 +4997,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -5007,13 +5007,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 155.447584ms
+ duration: 119.685ms
- id: 143
request:
proto: HTTP/1.1
@@ -5032,7 +5032,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -5048,7 +5048,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.76025ms
+ duration: 123.1325ms
- id: 144
request:
proto: HTTP/1.1
@@ -5067,7 +5067,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -5083,7 +5083,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 153.7445ms
+ duration: 117.929916ms
- id: 145
request:
proto: HTTP/1.1
@@ -5102,7 +5102,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -5112,13 +5112,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.875291ms
+ duration: 113.266667ms
- id: 146
request:
proto: HTTP/1.1
@@ -5137,7 +5137,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -5147,13 +5147,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.5875ms
+ duration: 111.283458ms
- id: 147
request:
proto: HTTP/1.1
@@ -5172,7 +5172,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -5182,13 +5182,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.315083ms
+ duration: 138.771167ms
- id: 148
request:
proto: HTTP/1.1
@@ -5207,7 +5207,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -5217,13 +5217,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 137.212875ms
+ duration: 117.1185ms
- id: 149
request:
proto: HTTP/1.1
@@ -5242,7 +5242,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -5258,7 +5258,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 300.924167ms
+ duration: 117.103042ms
- id: 150
request:
proto: HTTP/1.1
@@ -5277,7 +5277,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -5293,7 +5293,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.44875ms
+ duration: 111.634417ms
- id: 151
request:
proto: HTTP/1.1
@@ -5312,7 +5312,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -5322,13 +5322,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.069542ms
+ duration: 118.724625ms
- id: 152
request:
proto: HTTP/1.1
@@ -5347,7 +5347,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -5357,13 +5357,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 224.707833ms
+ duration: 138.5535ms
- id: 153
request:
proto: HTTP/1.1
@@ -5382,7 +5382,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -5392,13 +5392,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 135.61525ms
+ duration: 109.823958ms
- id: 154
request:
proto: HTTP/1.1
@@ -5417,7 +5417,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -5427,13 +5427,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 139.217ms
+ duration: 108.393791ms
- id: 155
request:
proto: HTTP/1.1
@@ -5452,7 +5452,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -5468,7 +5468,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.55875ms
+ duration: 111.969125ms
- id: 156
request:
proto: HTTP/1.1
@@ -5487,7 +5487,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -5503,7 +5503,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 157.762375ms
+ duration: 116.053833ms
- id: 157
request:
proto: HTTP/1.1
@@ -5522,7 +5522,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -5532,13 +5532,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 158.856084ms
+ duration: 117.376584ms
- id: 158
request:
proto: HTTP/1.1
@@ -5557,7 +5557,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -5567,13 +5567,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 160.460875ms
+ duration: 115.2325ms
- id: 159
request:
proto: HTTP/1.1
@@ -5592,7 +5592,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -5602,13 +5602,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.07525ms
+ duration: 111.522834ms
- id: 160
request:
proto: HTTP/1.1
@@ -5621,14 +5621,14 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":true}
+ {"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":true}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections
method: POST
response:
proto: HTTP/2.0
@@ -5638,13 +5638,13 @@ interactions:
trailer: {}
content_length: 224
uncompressed: false
- body: '{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
+ body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 153.548375ms
+ duration: 120.668542ms
- id: 161
request:
proto: HTTP/1.1
@@ -5663,7 +5663,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -5673,13 +5673,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
+ body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.98375ms
+ duration: 112.414667ms
- id: 162
request:
proto: HTTP/1.1
@@ -5698,7 +5698,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -5708,13 +5708,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 136.579959ms
+ duration: 139.922709ms
- id: 163
request:
proto: HTTP/1.1
@@ -5733,7 +5733,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -5743,13 +5743,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 161.978916ms
+ duration: 128.046375ms
- id: 164
request:
proto: HTTP/1.1
@@ -5768,7 +5768,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -5784,7 +5784,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 153.391ms
+ duration: 115.589209ms
- id: 165
request:
proto: HTTP/1.1
@@ -5803,7 +5803,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -5813,13 +5813,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.251875ms
+ duration: 111.972875ms
- id: 166
request:
proto: HTTP/1.1
@@ -5838,7 +5838,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -5848,13 +5848,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 159.988333ms
+ duration: 176.289208ms
- id: 167
request:
proto: HTTP/1.1
@@ -5873,7 +5873,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -5889,7 +5889,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 151.634291ms
+ duration: 110.788917ms
- id: 168
request:
proto: HTTP/1.1
@@ -5908,7 +5908,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -5918,13 +5918,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 136.95775ms
+ duration: 132.885ms
- id: 169
request:
proto: HTTP/1.1
@@ -5943,7 +5943,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -5953,13 +5953,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.735875ms
+ duration: 112.120208ms
- id: 170
request:
proto: HTTP/1.1
@@ -5978,7 +5978,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -5988,13 +5988,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.149667ms
+ duration: 108.977542ms
- id: 171
request:
proto: HTTP/1.1
@@ -6013,7 +6013,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -6023,13 +6023,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
+ body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.005ms
+ duration: 122.676375ms
- id: 172
request:
proto: HTTP/1.1
@@ -6048,7 +6048,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -6058,13 +6058,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 253.267708ms
+ duration: 110.176833ms
- id: 173
request:
proto: HTTP/1.1
@@ -6083,7 +6083,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -6093,13 +6093,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 139.935917ms
+ duration: 125.083791ms
- id: 174
request:
proto: HTTP/1.1
@@ -6118,7 +6118,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -6134,7 +6134,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.549209ms
+ duration: 111.5555ms
- id: 175
request:
proto: HTTP/1.1
@@ -6153,7 +6153,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -6163,13 +6163,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 140.87025ms
+ duration: 118.003208ms
- id: 176
request:
proto: HTTP/1.1
@@ -6188,7 +6188,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -6198,13 +6198,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 142.663417ms
+ duration: 116.248083ms
- id: 177
request:
proto: HTTP/1.1
@@ -6223,7 +6223,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -6233,13 +6233,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 141.90825ms
+ duration: 115.490666ms
- id: 178
request:
proto: HTTP/1.1
@@ -6258,7 +6258,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -6268,13 +6268,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
+ body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 140.882875ms
+ duration: 112.463833ms
- id: 179
request:
proto: HTTP/1.1
@@ -6294,7 +6294,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: PATCH
response:
proto: HTTP/2.0
@@ -6304,13 +6304,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
+ body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 158.18975ms
+ duration: 133.562958ms
- id: 180
request:
proto: HTTP/1.1
@@ -6329,7 +6329,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -6339,13 +6339,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
+ body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 178.91475ms
+ duration: 118.411666ms
- id: 181
request:
proto: HTTP/1.1
@@ -6364,7 +6364,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -6374,13 +6374,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.859292ms
+ duration: 108.557417ms
- id: 182
request:
proto: HTTP/1.1
@@ -6399,7 +6399,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -6409,13 +6409,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.373916ms
+ duration: 175.43425ms
- id: 183
request:
proto: HTTP/1.1
@@ -6434,7 +6434,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -6450,7 +6450,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.573584ms
+ duration: 110.634666ms
- id: 184
request:
proto: HTTP/1.1
@@ -6469,7 +6469,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -6479,13 +6479,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.827875ms
+ duration: 110.609416ms
- id: 185
request:
proto: HTTP/1.1
@@ -6504,7 +6504,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -6514,13 +6514,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 165.621125ms
+ duration: 124.896958ms
- id: 186
request:
proto: HTTP/1.1
@@ -6539,7 +6539,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -6555,7 +6555,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.064166ms
+ duration: 116.877083ms
- id: 187
request:
proto: HTTP/1.1
@@ -6574,7 +6574,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -6584,13 +6584,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.804875ms
+ duration: 110.711916ms
- id: 188
request:
proto: HTTP/1.1
@@ -6609,7 +6609,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -6619,13 +6619,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.416166ms
+ duration: 125.768042ms
- id: 189
request:
proto: HTTP/1.1
@@ -6644,7 +6644,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -6654,13 +6654,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 176.154166ms
+ duration: 114.350167ms
- id: 190
request:
proto: HTTP/1.1
@@ -6679,7 +6679,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -6689,13 +6689,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
+ body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.365125ms
+ duration: 117.911709ms
- id: 191
request:
proto: HTTP/1.1
@@ -6714,7 +6714,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -6724,13 +6724,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.697542ms
+ duration: 110.154709ms
- id: 192
request:
proto: HTTP/1.1
@@ -6749,7 +6749,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -6759,13 +6759,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.428625ms
+ duration: 116.925959ms
- id: 193
request:
proto: HTTP/1.1
@@ -6784,7 +6784,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -6800,7 +6800,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 190.458834ms
+ duration: 117.049625ms
- id: 194
request:
proto: HTTP/1.1
@@ -6819,7 +6819,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -6829,13 +6829,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.931833ms
+ duration: 122.875084ms
- id: 195
request:
proto: HTTP/1.1
@@ -6854,7 +6854,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -6864,13 +6864,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
+ body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 155.275209ms
+ duration: 128.34275ms
- id: 196
request:
proto: HTTP/1.1
@@ -6889,7 +6889,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -6899,13 +6899,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 164.01275ms
+ duration: 149.175042ms
- id: 197
request:
proto: HTTP/1.1
@@ -6924,7 +6924,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -6934,13 +6934,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 157.121916ms
+ duration: 111.023ms
- id: 198
request:
proto: HTTP/1.1
@@ -6959,7 +6959,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -6969,13 +6969,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 135.149542ms
+ duration: 109.916208ms
- id: 199
request:
proto: HTTP/1.1
@@ -6994,7 +6994,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -7004,13 +7004,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.024584ms
+ duration: 120.870291ms
- id: 200
request:
proto: HTTP/1.1
@@ -7029,7 +7029,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -7045,7 +7045,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 158.205584ms
+ duration: 109.468125ms
- id: 201
request:
proto: HTTP/1.1
@@ -7064,7 +7064,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: DELETE
response:
proto: HTTP/2.0
@@ -7080,7 +7080,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 134.336667ms
+ duration: 114.517667ms
- id: 202
request:
proto: HTTP/1.1
@@ -7099,7 +7099,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -7109,13 +7109,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 156.594084ms
+ duration: 114.611292ms
- id: 203
request:
proto: HTTP/1.1
@@ -7134,7 +7134,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -7150,7 +7150,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.927917ms
+ duration: 123.348458ms
- id: 204
request:
proto: HTTP/1.1
@@ -7169,7 +7169,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -7185,7 +7185,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.360625ms
+ duration: 227.555792ms
- id: 205
request:
proto: HTTP/1.1
@@ -7204,7 +7204,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -7214,13 +7214,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 288.498208ms
+ duration: 118.471125ms
- id: 206
request:
proto: HTTP/1.1
@@ -7239,7 +7239,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -7249,13 +7249,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 137.529667ms
+ duration: 119.724458ms
- id: 207
request:
proto: HTTP/1.1
@@ -7274,7 +7274,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -7284,13 +7284,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.2715ms
+ duration: 118.381291ms
- id: 208
request:
proto: HTTP/1.1
@@ -7309,7 +7309,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -7319,13 +7319,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 137.198417ms
+ duration: 113.201708ms
- id: 209
request:
proto: HTTP/1.1
@@ -7344,7 +7344,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -7360,7 +7360,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 138.039834ms
+ duration: 117.590625ms
- id: 210
request:
proto: HTTP/1.1
@@ -7379,7 +7379,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -7395,7 +7395,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 142.17ms
+ duration: 116.13625ms
- id: 211
request:
proto: HTTP/1.1
@@ -7414,7 +7414,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -7424,13 +7424,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 140.682542ms
+ duration: 116.482625ms
- id: 212
request:
proto: HTTP/1.1
@@ -7449,7 +7449,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -7459,13 +7459,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.054417ms
+ duration: 115.493583ms
- id: 213
request:
proto: HTTP/1.1
@@ -7484,7 +7484,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -7494,13 +7494,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 160.4595ms
+ duration: 120.524625ms
- id: 214
request:
proto: HTTP/1.1
@@ -7519,7 +7519,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -7529,13 +7529,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 132.500583ms
+ duration: 117.289125ms
- id: 215
request:
proto: HTTP/1.1
@@ -7554,7 +7554,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -7570,7 +7570,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.039667ms
+ duration: 113.839167ms
- id: 216
request:
proto: HTTP/1.1
@@ -7589,7 +7589,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -7605,7 +7605,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.693833ms
+ duration: 116.51925ms
- id: 217
request:
proto: HTTP/1.1
@@ -7624,7 +7624,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -7634,13 +7634,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.254167ms
+ duration: 160.741875ms
- id: 218
request:
proto: HTTP/1.1
@@ -7659,7 +7659,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -7669,13 +7669,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.57325ms
+ duration: 114.112917ms
- id: 219
request:
proto: HTTP/1.1
@@ -7694,7 +7694,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -7704,13 +7704,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 140.893958ms
+ duration: 129.139708ms
- id: 220
request:
proto: HTTP/1.1
@@ -7729,7 +7729,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -7739,13 +7739,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 153.015ms
+ duration: 105.502791ms
- id: 221
request:
proto: HTTP/1.1
@@ -7764,7 +7764,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -7780,7 +7780,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.249ms
+ duration: 122.666208ms
- id: 222
request:
proto: HTTP/1.1
@@ -7799,7 +7799,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -7815,7 +7815,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 137.763916ms
+ duration: 119.589833ms
- id: 223
request:
proto: HTTP/1.1
@@ -7834,7 +7834,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -7844,13 +7844,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.874458ms
+ duration: 121.293542ms
- id: 224
request:
proto: HTTP/1.1
@@ -7869,7 +7869,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -7879,13 +7879,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.300333ms
+ duration: 108.058042ms
- id: 225
request:
proto: HTTP/1.1
@@ -7904,7 +7904,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -7914,13 +7914,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.445084ms
+ duration: 114.578125ms
- id: 226
request:
proto: HTTP/1.1
@@ -7939,7 +7939,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -7955,7 +7955,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.534167ms
+ duration: 113.569875ms
- id: 227
request:
proto: HTTP/1.1
@@ -7968,14 +7968,14 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true}
+ {"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections
method: POST
response:
proto: HTTP/2.0
@@ -7985,13 +7985,13 @@ interactions:
trailer: {}
content_length: 225
uncompressed: false
- body: '{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
+ body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 166.991792ms
+ duration: 130.511ms
- id: 228
request:
proto: HTTP/1.1
@@ -8004,14 +8004,14 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true}
+ {"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections
method: POST
response:
proto: HTTP/2.0
@@ -8021,13 +8021,13 @@ interactions:
trailer: {}
content_length: 206
uncompressed: false
- body: '{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
+ body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 145.737167ms
+ duration: 128.843834ms
- id: 229
request:
proto: HTTP/1.1
@@ -8046,7 +8046,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -8056,13 +8056,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}},{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.092917ms
+ duration: 130.884083ms
- id: 230
request:
proto: HTTP/1.1
@@ -8081,7 +8081,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -8091,13 +8091,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 142.611458ms
+ duration: 124.766125ms
- id: 231
request:
proto: HTTP/1.1
@@ -8116,7 +8116,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -8126,13 +8126,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 139.177791ms
+ duration: 117.900125ms
- id: 232
request:
proto: HTTP/1.1
@@ -8151,7 +8151,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -8161,13 +8161,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.893584ms
+ duration: 135.564833ms
- id: 233
request:
proto: HTTP/1.1
@@ -8186,7 +8186,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -8196,13 +8196,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}},{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 162.9835ms
+ duration: 141.239541ms
- id: 234
request:
proto: HTTP/1.1
@@ -8221,7 +8221,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -8231,13 +8231,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
+ body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 173.665291ms
+ duration: 112.044292ms
- id: 235
request:
proto: HTTP/1.1
@@ -8256,7 +8256,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -8266,13 +8266,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 141.006667ms
+ duration: 115.054875ms
- id: 236
request:
proto: HTTP/1.1
@@ -8291,7 +8291,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -8301,13 +8301,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}},{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.381584ms
+ duration: 119.688334ms
- id: 237
request:
proto: HTTP/1.1
@@ -8326,7 +8326,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -8342,7 +8342,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.483791ms
+ duration: 105.949125ms
- id: 238
request:
proto: HTTP/1.1
@@ -8361,7 +8361,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -8371,13 +8371,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
+ body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.371958ms
+ duration: 122.92575ms
- id: 239
request:
proto: HTTP/1.1
@@ -8396,7 +8396,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -8406,13 +8406,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 321.586458ms
+ duration: 126.445041ms
- id: 240
request:
proto: HTTP/1.1
@@ -8431,7 +8431,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -8441,13 +8441,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}},{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 154.224417ms
+ duration: 121.789542ms
- id: 241
request:
proto: HTTP/1.1
@@ -8466,7 +8466,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -8482,7 +8482,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.953917ms
+ duration: 117.043166ms
- id: 242
request:
proto: HTTP/1.1
@@ -8501,7 +8501,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -8511,13 +8511,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.832625ms
+ duration: 112.488792ms
- id: 243
request:
proto: HTTP/1.1
@@ -8536,7 +8536,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -8546,13 +8546,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 140.057584ms
+ duration: 118.240334ms
- id: 244
request:
proto: HTTP/1.1
@@ -8571,7 +8571,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -8581,13 +8581,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.431834ms
+ duration: 109.411291ms
- id: 245
request:
proto: HTTP/1.1
@@ -8606,7 +8606,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -8616,13 +8616,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}},{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.739ms
+ duration: 123.051958ms
- id: 246
request:
proto: HTTP/1.1
@@ -8641,7 +8641,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -8651,13 +8651,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
+ body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 188.059583ms
+ duration: 155.211334ms
- id: 247
request:
proto: HTTP/1.1
@@ -8676,7 +8676,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -8686,13 +8686,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
+ body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 158.999292ms
+ duration: 116.9075ms
- id: 248
request:
proto: HTTP/1.1
@@ -8711,7 +8711,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -8721,13 +8721,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 162.593375ms
+ duration: 118.212084ms
- id: 249
request:
proto: HTTP/1.1
@@ -8746,7 +8746,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -8756,13 +8756,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}},{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.79625ms
+ duration: 146.579041ms
- id: 250
request:
proto: HTTP/1.1
@@ -8781,7 +8781,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -8797,7 +8797,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 142.580416ms
+ duration: 117.861875ms
- id: 251
request:
proto: HTTP/1.1
@@ -8816,7 +8816,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -8826,13 +8826,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.840166ms
+ duration: 109.346166ms
- id: 252
request:
proto: HTTP/1.1
@@ -8851,7 +8851,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -8861,13 +8861,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}},{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.370708ms
+ duration: 164.212375ms
- id: 253
request:
proto: HTTP/1.1
@@ -8886,7 +8886,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -8902,7 +8902,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 137.468667ms
+ duration: 118.387333ms
- id: 254
request:
proto: HTTP/1.1
@@ -8921,7 +8921,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -8931,13 +8931,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_J9VZdQRJkbgExhXl","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-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_mdWK0jSmM6DaNoFv","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 252.706375ms
+ duration: 114.585166ms
- id: 255
request:
proto: HTTP/1.1
@@ -8956,7 +8956,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -8966,13 +8966,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_dlQHk0YB48BKaktV","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
+ body: '{"id":"con_xhYrcedsefCpXXs3","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnection","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnection"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 159.6825ms
+ duration: 120.059083ms
- id: 256
request:
proto: HTTP/1.1
@@ -8991,7 +8991,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -9001,13 +9001,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.140917ms
+ duration: 108.491209ms
- id: 257
request:
proto: HTTP/1.1
@@ -9026,7 +9026,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -9036,13 +9036,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}},{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.24525ms
+ duration: 118.615083ms
- id: 258
request:
proto: HTTP/1.1
@@ -9061,7 +9061,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: GET
response:
proto: HTTP/2.0
@@ -9071,13 +9071,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
+ body: '{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 158.566917ms
+ duration: 232.07075ms
- id: 259
request:
proto: HTTP/1.1
@@ -9096,7 +9096,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3
method: GET
response:
proto: HTTP/2.0
@@ -9106,13 +9106,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
+ body: '{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 166.096958ms
+ duration: 177.174917ms
- id: 260
request:
proto: HTTP/1.1
@@ -9131,7 +9131,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: GET
response:
proto: HTTP/2.0
@@ -9141,13 +9141,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_KWfP8CViTqCnCLAY","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
+ body: '{"id":"org_aNK2R2QaqLf85Ieb","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.58125ms
+ duration: 118.387375ms
- id: 261
request:
proto: HTTP/1.1
@@ -9166,7 +9166,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -9176,13 +9176,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_dlQHk0YB48BKaktV","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}},{"connection_id":"con_J9VZdQRJkbgExhXl","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_mdWK0jSmM6DaNoFv","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xhYrcedsefCpXXs3","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnection","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 163.33075ms
+ duration: 127.044208ms
- id: 262
request:
proto: HTTP/1.1
@@ -9201,7 +9201,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -9217,7 +9217,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.824542ms
+ duration: 113.718416ms
- id: 263
request:
proto: HTTP/1.1
@@ -9236,7 +9236,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3
method: DELETE
response:
proto: HTTP/2.0
@@ -9252,7 +9252,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 148.499084ms
+ duration: 116.457ms
- id: 264
request:
proto: HTTP/1.1
@@ -9271,7 +9271,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: DELETE
response:
proto: HTTP/2.0
@@ -9287,7 +9287,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 141.602542ms
+ duration: 114.196042ms
- id: 265
request:
proto: HTTP/1.1
@@ -9306,7 +9306,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_mdWK0jSmM6DaNoFv
method: DELETE
response:
proto: HTTP/2.0
@@ -9322,7 +9322,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 141.147959ms
+ duration: 116.0125ms
- id: 266
request:
proto: HTTP/1.1
@@ -9341,7 +9341,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY/enabled_connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb/enabled_connections/con_xhYrcedsefCpXXs3
method: DELETE
response:
proto: HTTP/2.0
@@ -9357,7 +9357,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 155.698875ms
+ duration: 111.243291ms
- id: 267
request:
proto: HTTP/1.1
@@ -9376,7 +9376,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_KWfP8CViTqCnCLAY
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_aNK2R2QaqLf85Ieb
method: DELETE
response:
proto: HTTP/2.0
@@ -9392,7 +9392,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 140.255041ms
+ duration: 116.072709ms
- id: 268
request:
proto: HTTP/1.1
@@ -9411,7 +9411,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_dlQHk0YB48BKaktV
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xhYrcedsefCpXXs3
method: DELETE
response:
proto: HTTP/2.0
@@ -9421,13 +9421,13 @@ interactions:
trailer: {}
content_length: 41
uncompressed: false
- body: '{"deleted_at":"2024-06-17T17:12:28.069Z"}'
+ body: '{"deleted_at":"2024-07-08T20:04:47.182Z"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 202 Accepted
code: 202
- duration: 150.898542ms
+ duration: 125.268333ms
- id: 269
request:
proto: HTTP/1.1
@@ -9446,7 +9446,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_J9VZdQRJkbgExhXl
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mdWK0jSmM6DaNoFv
method: DELETE
response:
proto: HTTP/2.0
@@ -9456,10 +9456,10 @@ interactions:
trailer: {}
content_length: 41
uncompressed: false
- body: '{"deleted_at":"2024-06-17T17:12:28.241Z"}'
+ body: '{"deleted_at":"2024-07-08T20:04:47.311Z"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 202 Accepted
code: 202
- duration: 168.823459ms
+ duration: 117.195375ms
diff --git a/test/data/recordings/TestAccOrganizationConnections.yaml b/test/data/recordings/TestAccOrganizationConnections.yaml
index ad36de774..8a6585c73 100644
--- a/test/data/recordings/TestAccOrganizationConnections.yaml
+++ b/test/data/recordings/TestAccOrganizationConnections.yaml
@@ -28,15 +28,15 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 576
+ content_length: 381
uncompressed: false
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 180.296875ms
+ duration: 282.243ms
- id: 1
request:
proto: HTTP/1.1
@@ -55,7 +55,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -65,13 +65,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 153.13975ms
+ duration: 153.97575ms
- id: 2
request:
proto: HTTP/1.1
@@ -101,13 +101,13 @@ interactions:
trailer: {}
content_length: 770
uncompressed: false
- body: '{"id":"con_sE98596jWyc9vywF","options":{"client_id":"1234567","client_secret":"1234567","authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","userinfo_endpoint":null,"token_endpoint":"https://example.okta.com/oauth2/v1/token","schema_version":"oidc-V4","type":"back_channel","attribute_map":{"mapping_mode":"basic_profile"},"connection_settings":{"pkce":"auto"}},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"client_id":"1234567","client_secret":"1234567","authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","userinfo_endpoint":null,"token_endpoint":"https://example.okta.com/oauth2/v1/token","schema_version":"oidc-V4","type":"back_channel","attribute_map":{"mapping_mode":"basic_profile"},"connection_settings":{"pkce":"auto"}},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 234.253375ms
+ duration: 263.304875ms
- id: 3
request:
proto: HTTP/1.1
@@ -126,7 +126,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -136,13 +136,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.2045ms
+ duration: 128.936333ms
- id: 4
request:
proto: HTTP/1.1
@@ -172,13 +172,13 @@ interactions:
trailer: {}
content_length: 126
uncompressed: false
- body: '{"id":"org_iG8DgVtQv3ndkL6A","display_name":"testaccorganizationconnections","name":"some-org-testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","display_name":"testaccorganizationconnections","name":"some-org-testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 157.957083ms
+ duration: 160.390167ms
- id: 5
request:
proto: HTTP/1.1
@@ -197,7 +197,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -207,13 +207,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 160.59125ms
+ duration: 119.351333ms
- id: 6
request:
proto: HTTP/1.1
@@ -226,14 +226,14 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"connection_id":"con_0Rb1HZwTC7D8xCtd"}
+ {"connection_id":"con_cy9fHD6JS7xozwRI"}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections
method: POST
response:
proto: HTTP/2.0
@@ -243,13 +243,13 @@ interactions:
trailer: {}
content_length: 227
uncompressed: false
- body: '{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
+ body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 153.369291ms
+ duration: 134.524583ms
- id: 7
request:
proto: HTTP/1.1
@@ -268,7 +268,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -278,13 +278,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
+ body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.124375ms
+ duration: 130.529792ms
- id: 8
request:
proto: HTTP/1.1
@@ -303,7 +303,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -313,13 +313,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 151.853834ms
+ duration: 123.908459ms
- id: 9
request:
proto: HTTP/1.1
@@ -338,7 +338,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -348,13 +348,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 142.491709ms
+ duration: 117.885167ms
- id: 10
request:
proto: HTTP/1.1
@@ -373,7 +373,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -383,13 +383,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.912291ms
+ duration: 124.257917ms
- id: 11
request:
proto: HTTP/1.1
@@ -408,7 +408,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -418,13 +418,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.253ms
+ duration: 113.949541ms
- id: 12
request:
proto: HTTP/1.1
@@ -443,7 +443,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -453,13 +453,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.753291ms
+ duration: 113.189333ms
- id: 13
request:
proto: HTTP/1.1
@@ -478,7 +478,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -488,13 +488,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.840834ms
+ duration: 111.223459ms
- id: 14
request:
proto: HTTP/1.1
@@ -513,7 +513,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -523,13 +523,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 166.366333ms
+ duration: 175.699375ms
- id: 15
request:
proto: HTTP/1.1
@@ -548,7 +548,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -564,7 +564,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.455584ms
+ duration: 116.542625ms
- id: 16
request:
proto: HTTP/1.1
@@ -583,7 +583,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI
method: DELETE
response:
proto: HTTP/2.0
@@ -599,7 +599,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 151.031209ms
+ duration: 114.164ms
- id: 17
request:
proto: HTTP/1.1
@@ -618,7 +618,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -628,13 +628,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 140.955125ms
+ duration: 124.817ms
- id: 18
request:
proto: HTTP/1.1
@@ -653,7 +653,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -669,7 +669,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 139.693042ms
+ duration: 132.766958ms
- id: 19
request:
proto: HTTP/1.1
@@ -688,7 +688,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -704,7 +704,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.51275ms
+ duration: 113.59325ms
- id: 20
request:
proto: HTTP/1.1
@@ -723,7 +723,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -733,13 +733,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 138.215584ms
+ duration: 115.60375ms
- id: 21
request:
proto: HTTP/1.1
@@ -758,7 +758,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -768,13 +768,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.0365ms
+ duration: 114.342ms
- id: 22
request:
proto: HTTP/1.1
@@ -793,7 +793,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -803,13 +803,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 181.775042ms
+ duration: 112.035333ms
- id: 23
request:
proto: HTTP/1.1
@@ -828,7 +828,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -838,13 +838,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 173.812583ms
+ duration: 126.724334ms
- id: 24
request:
proto: HTTP/1.1
@@ -863,7 +863,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -879,7 +879,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.026833ms
+ duration: 133.21875ms
- id: 25
request:
proto: HTTP/1.1
@@ -898,7 +898,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -914,7 +914,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.320792ms
+ duration: 110.711875ms
- id: 26
request:
proto: HTTP/1.1
@@ -933,7 +933,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -943,13 +943,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 138.856625ms
+ duration: 129.323917ms
- id: 27
request:
proto: HTTP/1.1
@@ -968,7 +968,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -978,13 +978,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.46075ms
+ duration: 113.33925ms
- id: 28
request:
proto: HTTP/1.1
@@ -1003,7 +1003,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -1013,13 +1013,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.482958ms
+ duration: 108.593042ms
- id: 29
request:
proto: HTTP/1.1
@@ -1038,7 +1038,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -1048,13 +1048,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 136.693584ms
+ duration: 109.682458ms
- id: 30
request:
proto: HTTP/1.1
@@ -1073,7 +1073,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -1089,7 +1089,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.777458ms
+ duration: 114.194959ms
- id: 31
request:
proto: HTTP/1.1
@@ -1108,7 +1108,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -1124,7 +1124,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 221.982416ms
+ duration: 134.386334ms
- id: 32
request:
proto: HTTP/1.1
@@ -1143,7 +1143,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -1153,13 +1153,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 182.451583ms
+ duration: 116.585125ms
- id: 33
request:
proto: HTTP/1.1
@@ -1178,7 +1178,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -1188,13 +1188,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 303.726459ms
+ duration: 126.453167ms
- id: 34
request:
proto: HTTP/1.1
@@ -1213,7 +1213,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -1223,13 +1223,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 141.429458ms
+ duration: 137.037791ms
- id: 35
request:
proto: HTTP/1.1
@@ -1248,7 +1248,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -1258,13 +1258,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 139.503667ms
+ duration: 104.588792ms
- id: 36
request:
proto: HTTP/1.1
@@ -1283,7 +1283,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -1299,7 +1299,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.968917ms
+ duration: 125.775833ms
- id: 37
request:
proto: HTTP/1.1
@@ -1318,7 +1318,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -1334,7 +1334,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.884416ms
+ duration: 109.610125ms
- id: 38
request:
proto: HTTP/1.1
@@ -1353,7 +1353,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -1363,13 +1363,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 151.402917ms
+ duration: 139.305667ms
- id: 39
request:
proto: HTTP/1.1
@@ -1388,7 +1388,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -1398,13 +1398,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 138.914084ms
+ duration: 118.588542ms
- id: 40
request:
proto: HTTP/1.1
@@ -1423,7 +1423,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -1433,13 +1433,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.1405ms
+ duration: 109.179584ms
- id: 41
request:
proto: HTTP/1.1
@@ -1458,7 +1458,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -1474,7 +1474,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 141.076334ms
+ duration: 123.7965ms
- id: 42
request:
proto: HTTP/1.1
@@ -1487,14 +1487,14 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"connection_id":"con_0Rb1HZwTC7D8xCtd"}
+ {"connection_id":"con_cy9fHD6JS7xozwRI"}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections
method: POST
response:
proto: HTTP/2.0
@@ -1504,13 +1504,13 @@ interactions:
trailer: {}
content_length: 227
uncompressed: false
- body: '{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
+ body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 158.254959ms
+ duration: 117.587542ms
- id: 43
request:
proto: HTTP/1.1
@@ -1529,7 +1529,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -1539,13 +1539,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.021791ms
+ duration: 115.039834ms
- id: 44
request:
proto: HTTP/1.1
@@ -1564,7 +1564,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -1574,13 +1574,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 173.064ms
+ duration: 121.270125ms
- id: 45
request:
proto: HTTP/1.1
@@ -1599,7 +1599,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -1609,13 +1609,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 160.150708ms
+ duration: 116.058875ms
- id: 46
request:
proto: HTTP/1.1
@@ -1634,7 +1634,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -1650,7 +1650,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.791583ms
+ duration: 137.627708ms
- id: 47
request:
proto: HTTP/1.1
@@ -1669,7 +1669,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -1679,13 +1679,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.621125ms
+ duration: 115.515125ms
- id: 48
request:
proto: HTTP/1.1
@@ -1704,7 +1704,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -1714,13 +1714,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.753833ms
+ duration: 132.890208ms
- id: 49
request:
proto: HTTP/1.1
@@ -1739,7 +1739,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -1755,7 +1755,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 135.809958ms
+ duration: 116.815125ms
- id: 50
request:
proto: HTTP/1.1
@@ -1774,7 +1774,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -1784,13 +1784,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.052583ms
+ duration: 122.552084ms
- id: 51
request:
proto: HTTP/1.1
@@ -1809,7 +1809,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -1819,13 +1819,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 181.235ms
+ duration: 111.56375ms
- id: 52
request:
proto: HTTP/1.1
@@ -1844,7 +1844,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -1854,13 +1854,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 179.4785ms
+ duration: 118.400375ms
- id: 53
request:
proto: HTTP/1.1
@@ -1879,7 +1879,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -1889,13 +1889,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 167.530042ms
+ duration: 113.723584ms
- id: 54
request:
proto: HTTP/1.1
@@ -1914,7 +1914,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -1924,13 +1924,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.98275ms
+ duration: 115.930417ms
- id: 55
request:
proto: HTTP/1.1
@@ -1949,7 +1949,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -1959,13 +1959,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 159.669958ms
+ duration: 125.361125ms
- id: 56
request:
proto: HTTP/1.1
@@ -1984,7 +1984,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -2000,7 +2000,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 137.331333ms
+ duration: 118.039916ms
- id: 57
request:
proto: HTTP/1.1
@@ -2019,7 +2019,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -2029,13 +2029,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.731708ms
+ duration: 109.640708ms
- id: 58
request:
proto: HTTP/1.1
@@ -2054,7 +2054,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -2064,13 +2064,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 142.934833ms
+ duration: 129.808792ms
- id: 59
request:
proto: HTTP/1.1
@@ -2089,7 +2089,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -2099,13 +2099,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 170.524708ms
+ duration: 121.64525ms
- id: 60
request:
proto: HTTP/1.1
@@ -2124,7 +2124,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -2134,13 +2134,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 137.989584ms
+ duration: 141.869625ms
- id: 61
request:
proto: HTTP/1.1
@@ -2159,7 +2159,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -2169,13 +2169,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.189917ms
+ duration: 130.608167ms
- id: 62
request:
proto: HTTP/1.1
@@ -2194,7 +2194,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -2204,13 +2204,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 140.282041ms
+ duration: 130.410792ms
- id: 63
request:
proto: HTTP/1.1
@@ -2229,7 +2229,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -2245,7 +2245,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 140.731709ms
+ duration: 137.523375ms
- id: 64
request:
proto: HTTP/1.1
@@ -2264,7 +2264,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -2274,13 +2274,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.11225ms
+ duration: 115.893083ms
- id: 65
request:
proto: HTTP/1.1
@@ -2299,7 +2299,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -2309,13 +2309,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.6115ms
+ duration: 116.004208ms
- id: 66
request:
proto: HTTP/1.1
@@ -2334,7 +2334,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -2344,13 +2344,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 138.029416ms
+ duration: 121.562083ms
- id: 67
request:
proto: HTTP/1.1
@@ -2369,7 +2369,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -2379,13 +2379,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 156.137375ms
+ duration: 133.343917ms
- id: 68
request:
proto: HTTP/1.1
@@ -2404,7 +2404,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -2414,13 +2414,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.937042ms
+ duration: 123.183208ms
- id: 69
request:
proto: HTTP/1.1
@@ -2439,7 +2439,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -2449,13 +2449,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.960917ms
+ duration: 155.557416ms
- id: 70
request:
proto: HTTP/1.1
@@ -2474,7 +2474,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -2490,7 +2490,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.13875ms
+ duration: 132.170417ms
- id: 71
request:
proto: HTTP/1.1
@@ -2509,7 +2509,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -2519,13 +2519,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 137.174916ms
+ duration: 111.432542ms
- id: 72
request:
proto: HTTP/1.1
@@ -2544,7 +2544,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -2554,13 +2554,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 155.62075ms
+ duration: 111.275583ms
- id: 73
request:
proto: HTTP/1.1
@@ -2579,7 +2579,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -2589,13 +2589,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 154.980334ms
+ duration: 116.754667ms
- id: 74
request:
proto: HTTP/1.1
@@ -2614,7 +2614,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -2624,13 +2624,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.527875ms
+ duration: 116.125791ms
- id: 75
request:
proto: HTTP/1.1
@@ -2643,14 +2643,14 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"connection_id":"con_sE98596jWyc9vywF"}
+ {"connection_id":"con_ZALw4YS3znUQnlDq"}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections
method: POST
response:
proto: HTTP/2.0
@@ -2660,13 +2660,13 @@ interactions:
trailer: {}
content_length: 208
uncompressed: false
- body: '{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}'
+ body: '{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 152.569542ms
+ duration: 124.00625ms
- id: 76
request:
proto: HTTP/1.1
@@ -2685,7 +2685,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -2695,13 +2695,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.727667ms
+ duration: 117.180792ms
- id: 77
request:
proto: HTTP/1.1
@@ -2720,7 +2720,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -2730,13 +2730,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 133.693167ms
+ duration: 132.752167ms
- id: 78
request:
proto: HTTP/1.1
@@ -2755,7 +2755,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -2765,13 +2765,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 140.185208ms
+ duration: 119.941583ms
- id: 79
request:
proto: HTTP/1.1
@@ -2790,7 +2790,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -2806,7 +2806,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 156.965584ms
+ duration: 111.60075ms
- id: 80
request:
proto: HTTP/1.1
@@ -2825,7 +2825,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -2835,13 +2835,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 141.294709ms
+ duration: 132.494584ms
- id: 81
request:
proto: HTTP/1.1
@@ -2860,7 +2860,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -2870,13 +2870,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 163.29525ms
+ duration: 124.415583ms
- id: 82
request:
proto: HTTP/1.1
@@ -2895,7 +2895,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -2911,7 +2911,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.813042ms
+ duration: 108.656459ms
- id: 83
request:
proto: HTTP/1.1
@@ -2930,7 +2930,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -2940,13 +2940,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 166.396291ms
+ duration: 113.470875ms
- id: 84
request:
proto: HTTP/1.1
@@ -2965,7 +2965,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -2975,13 +2975,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 142.572375ms
+ duration: 120.714708ms
- id: 85
request:
proto: HTTP/1.1
@@ -3000,7 +3000,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -3010,13 +3010,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 151.638166ms
+ duration: 135.124166ms
- id: 86
request:
proto: HTTP/1.1
@@ -3035,7 +3035,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -3045,13 +3045,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 217.435958ms
+ duration: 113.857709ms
- id: 87
request:
proto: HTTP/1.1
@@ -3070,7 +3070,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -3080,13 +3080,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 137.063209ms
+ duration: 133.996292ms
- id: 88
request:
proto: HTTP/1.1
@@ -3105,7 +3105,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -3115,13 +3115,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.843625ms
+ duration: 126.894791ms
- id: 89
request:
proto: HTTP/1.1
@@ -3140,7 +3140,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -3156,7 +3156,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.718041ms
+ duration: 116.142958ms
- id: 90
request:
proto: HTTP/1.1
@@ -3175,7 +3175,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -3185,13 +3185,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.9075ms
+ duration: 112.426083ms
- id: 91
request:
proto: HTTP/1.1
@@ -3210,7 +3210,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -3220,13 +3220,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.734375ms
+ duration: 109.943042ms
- id: 92
request:
proto: HTTP/1.1
@@ -3245,7 +3245,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -3255,13 +3255,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.72975ms
+ duration: 109.886625ms
- id: 93
request:
proto: HTTP/1.1
@@ -3280,7 +3280,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -3290,13 +3290,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.046083ms
+ duration: 114.428208ms
- id: 94
request:
proto: HTTP/1.1
@@ -3315,7 +3315,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -3325,13 +3325,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.709ms
+ duration: 117.454208ms
- id: 95
request:
proto: HTTP/1.1
@@ -3350,7 +3350,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -3360,13 +3360,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 158.534625ms
+ duration: 138.7215ms
- id: 96
request:
proto: HTTP/1.1
@@ -3385,7 +3385,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -3401,7 +3401,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.649708ms
+ duration: 117.493375ms
- id: 97
request:
proto: HTTP/1.1
@@ -3420,7 +3420,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -3430,13 +3430,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.950708ms
+ duration: 108.665791ms
- id: 98
request:
proto: HTTP/1.1
@@ -3455,7 +3455,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -3465,13 +3465,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 140.946458ms
+ duration: 128.875917ms
- id: 99
request:
proto: HTTP/1.1
@@ -3490,7 +3490,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -3500,13 +3500,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.927875ms
+ duration: 110.119792ms
- id: 100
request:
proto: HTTP/1.1
@@ -3525,7 +3525,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -3535,13 +3535,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 164.942958ms
+ duration: 115.372416ms
- id: 101
request:
proto: HTTP/1.1
@@ -3560,7 +3560,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -3570,13 +3570,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 135.974666ms
+ duration: 104.078875ms
- id: 102
request:
proto: HTTP/1.1
@@ -3595,7 +3595,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -3605,13 +3605,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 298.662917ms
+ duration: 143.884292ms
- id: 103
request:
proto: HTTP/1.1
@@ -3630,7 +3630,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -3646,7 +3646,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 134.893875ms
+ duration: 117.206334ms
- id: 104
request:
proto: HTTP/1.1
@@ -3665,7 +3665,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -3675,13 +3675,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 158.257542ms
+ duration: 118.632666ms
- id: 105
request:
proto: HTTP/1.1
@@ -3700,7 +3700,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -3710,13 +3710,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 155.583458ms
+ duration: 124.733584ms
- id: 106
request:
proto: HTTP/1.1
@@ -3735,7 +3735,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -3745,13 +3745,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.441833ms
+ duration: 120.86425ms
- id: 107
request:
proto: HTTP/1.1
@@ -3770,7 +3770,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -3780,13 +3780,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":false,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 155.726666ms
+ duration: 124.104ms
- id: 108
request:
proto: HTTP/1.1
@@ -3805,7 +3805,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_ZALw4YS3znUQnlDq
method: DELETE
response:
proto: HTTP/2.0
@@ -3821,7 +3821,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 149.185542ms
+ duration: 114.506875ms
- id: 109
request:
proto: HTTP/1.1
@@ -3840,7 +3840,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI
method: DELETE
response:
proto: HTTP/2.0
@@ -3856,7 +3856,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 140.608125ms
+ duration: 114.02875ms
- id: 110
request:
proto: HTTP/1.1
@@ -3869,14 +3869,14 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true}
+ {"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections
method: POST
response:
proto: HTTP/2.0
@@ -3884,15 +3884,15 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 226
+ content_length: 207
uncompressed: false
- body: '{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
+ body: '{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 169.282583ms
+ duration: 117.829333ms
- id: 111
request:
proto: HTTP/1.1
@@ -3905,14 +3905,14 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true}
+ {"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections
method: POST
response:
proto: HTTP/2.0
@@ -3920,15 +3920,15 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 207
+ content_length: 226
uncompressed: false
- body: '{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}'
+ body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 148.691708ms
+ duration: 122.010167ms
- id: 112
request:
proto: HTTP/1.1
@@ -3947,7 +3947,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -3957,13 +3957,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.508ms
+ duration: 114.670542ms
- id: 113
request:
proto: HTTP/1.1
@@ -3982,7 +3982,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -3992,13 +3992,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 141.682959ms
+ duration: 108.595709ms
- id: 114
request:
proto: HTTP/1.1
@@ -4017,7 +4017,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -4027,13 +4027,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.91ms
+ duration: 122.049166ms
- id: 115
request:
proto: HTTP/1.1
@@ -4052,7 +4052,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -4068,7 +4068,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 157.089958ms
+ duration: 109.116625ms
- id: 116
request:
proto: HTTP/1.1
@@ -4087,7 +4087,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -4097,13 +4097,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 136.355917ms
+ duration: 108.882542ms
- id: 117
request:
proto: HTTP/1.1
@@ -4122,7 +4122,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -4132,13 +4132,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.933166ms
+ duration: 126.364542ms
- id: 118
request:
proto: HTTP/1.1
@@ -4157,7 +4157,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -4173,7 +4173,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.585583ms
+ duration: 114.428917ms
- id: 119
request:
proto: HTTP/1.1
@@ -4192,7 +4192,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -4202,13 +4202,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 163.845125ms
+ duration: 111.184625ms
- id: 120
request:
proto: HTTP/1.1
@@ -4227,7 +4227,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -4237,13 +4237,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.61675ms
+ duration: 119.84375ms
- id: 121
request:
proto: HTTP/1.1
@@ -4262,7 +4262,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -4272,13 +4272,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.642583ms
+ duration: 118.644208ms
- id: 122
request:
proto: HTTP/1.1
@@ -4297,7 +4297,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -4307,13 +4307,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 156.923375ms
+ duration: 131.510833ms
- id: 123
request:
proto: HTTP/1.1
@@ -4332,7 +4332,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -4342,13 +4342,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 156.516167ms
+ duration: 138.524083ms
- id: 124
request:
proto: HTTP/1.1
@@ -4367,7 +4367,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -4377,13 +4377,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.249041ms
+ duration: 138.1265ms
- id: 125
request:
proto: HTTP/1.1
@@ -4402,7 +4402,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -4418,7 +4418,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 154.74025ms
+ duration: 136.943459ms
- id: 126
request:
proto: HTTP/1.1
@@ -4437,7 +4437,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -4447,13 +4447,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 158.825209ms
+ duration: 117.31925ms
- id: 127
request:
proto: HTTP/1.1
@@ -4472,7 +4472,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -4482,13 +4482,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 142.338667ms
+ duration: 133.742417ms
- id: 128
request:
proto: HTTP/1.1
@@ -4507,7 +4507,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -4517,13 +4517,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 672.076541ms
+ duration: 122.043333ms
- id: 129
request:
proto: HTTP/1.1
@@ -4542,7 +4542,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -4552,13 +4552,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.240208ms
+ duration: 130.288625ms
- id: 130
request:
proto: HTTP/1.1
@@ -4577,7 +4577,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -4587,13 +4587,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 168.104334ms
+ duration: 118.320833ms
- id: 131
request:
proto: HTTP/1.1
@@ -4612,7 +4612,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -4622,13 +4622,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 161.303416ms
+ duration: 121.170583ms
- id: 132
request:
proto: HTTP/1.1
@@ -4647,7 +4647,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -4663,7 +4663,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 138.088709ms
+ duration: 110.667ms
- id: 133
request:
proto: HTTP/1.1
@@ -4682,7 +4682,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -4692,13 +4692,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.46ms
+ duration: 109.960875ms
- id: 134
request:
proto: HTTP/1.1
@@ -4717,7 +4717,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -4727,13 +4727,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.135875ms
+ duration: 125.586875ms
- id: 135
request:
proto: HTTP/1.1
@@ -4752,7 +4752,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -4762,13 +4762,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 139.789666ms
+ duration: 105.999125ms
- id: 136
request:
proto: HTTP/1.1
@@ -4787,7 +4787,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -4797,13 +4797,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.092167ms
+ duration: 147.256125ms
- id: 137
request:
proto: HTTP/1.1
@@ -4822,7 +4822,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -4832,13 +4832,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.70425ms
+ duration: 108.404709ms
- id: 138
request:
proto: HTTP/1.1
@@ -4857,7 +4857,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -4867,13 +4867,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.553083ms
+ duration: 115.102083ms
- id: 139
request:
proto: HTTP/1.1
@@ -4892,7 +4892,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -4908,7 +4908,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.299541ms
+ duration: 117.373833ms
- id: 140
request:
proto: HTTP/1.1
@@ -4927,7 +4927,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -4937,13 +4937,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 135.253541ms
+ duration: 112.130791ms
- id: 141
request:
proto: HTTP/1.1
@@ -4962,7 +4962,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -4972,13 +4972,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 153.170583ms
+ duration: 131.942209ms
- id: 142
request:
proto: HTTP/1.1
@@ -4997,7 +4997,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -5007,13 +5007,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 161.00575ms
+ duration: 110.680625ms
- id: 143
request:
proto: HTTP/1.1
@@ -5032,7 +5032,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -5042,13 +5042,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.032708ms
+ duration: 115.311542ms
- id: 144
request:
proto: HTTP/1.1
@@ -5067,7 +5067,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI
method: DELETE
response:
proto: HTTP/2.0
@@ -5083,7 +5083,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 146.607667ms
+ duration: 116.918ms
- id: 145
request:
proto: HTTP/1.1
@@ -5102,7 +5102,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -5112,13 +5112,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 157.2525ms
+ duration: 111.51075ms
- id: 146
request:
proto: HTTP/1.1
@@ -5137,7 +5137,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -5147,13 +5147,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.692584ms
+ duration: 111.184166ms
- id: 147
request:
proto: HTTP/1.1
@@ -5172,7 +5172,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -5182,13 +5182,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 164.393291ms
+ duration: 132.763458ms
- id: 148
request:
proto: HTTP/1.1
@@ -5207,7 +5207,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -5223,7 +5223,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 153.711417ms
+ duration: 115.228333ms
- id: 149
request:
proto: HTTP/1.1
@@ -5242,7 +5242,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -5252,13 +5252,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.907917ms
+ duration: 113.452167ms
- id: 150
request:
proto: HTTP/1.1
@@ -5277,7 +5277,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -5287,13 +5287,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 137.612958ms
+ duration: 118.989792ms
- id: 151
request:
proto: HTTP/1.1
@@ -5312,7 +5312,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -5328,7 +5328,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 151.409375ms
+ duration: 156.7595ms
- id: 152
request:
proto: HTTP/1.1
@@ -5347,7 +5347,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -5357,13 +5357,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 155.5215ms
+ duration: 127.1075ms
- id: 153
request:
proto: HTTP/1.1
@@ -5382,7 +5382,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -5392,13 +5392,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.816875ms
+ duration: 109.3445ms
- id: 154
request:
proto: HTTP/1.1
@@ -5417,7 +5417,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -5427,13 +5427,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.747042ms
+ duration: 117.754583ms
- id: 155
request:
proto: HTTP/1.1
@@ -5452,7 +5452,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -5462,13 +5462,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 164.033416ms
+ duration: 116.901459ms
- id: 156
request:
proto: HTTP/1.1
@@ -5487,7 +5487,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -5497,13 +5497,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 155.103625ms
+ duration: 110.9805ms
- id: 157
request:
proto: HTTP/1.1
@@ -5522,7 +5522,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -5532,13 +5532,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 162.019667ms
+ duration: 118.461708ms
- id: 158
request:
proto: HTTP/1.1
@@ -5557,7 +5557,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -5573,7 +5573,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.425375ms
+ duration: 124.915708ms
- id: 159
request:
proto: HTTP/1.1
@@ -5592,7 +5592,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -5602,13 +5602,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.111333ms
+ duration: 121.1505ms
- id: 160
request:
proto: HTTP/1.1
@@ -5627,7 +5627,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -5637,13 +5637,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 173.210375ms
+ duration: 111.151958ms
- id: 161
request:
proto: HTTP/1.1
@@ -5662,7 +5662,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -5672,13 +5672,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 160.956833ms
+ duration: 119.693583ms
- id: 162
request:
proto: HTTP/1.1
@@ -5697,7 +5697,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -5707,13 +5707,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 170.918167ms
+ duration: 125.611042ms
- id: 163
request:
proto: HTTP/1.1
@@ -5732,7 +5732,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -5742,13 +5742,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.365792ms
+ duration: 117.053417ms
- id: 164
request:
proto: HTTP/1.1
@@ -5767,7 +5767,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -5777,13 +5777,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 142.002084ms
+ duration: 166.709791ms
- id: 165
request:
proto: HTTP/1.1
@@ -5802,7 +5802,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -5818,7 +5818,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.083542ms
+ duration: 121.345916ms
- id: 166
request:
proto: HTTP/1.1
@@ -5837,7 +5837,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -5847,13 +5847,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 155.530667ms
+ duration: 114.644ms
- id: 167
request:
proto: HTTP/1.1
@@ -5872,7 +5872,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -5882,13 +5882,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.71175ms
+ duration: 121.677792ms
- id: 168
request:
proto: HTTP/1.1
@@ -5907,7 +5907,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -5917,13 +5917,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.024125ms
+ duration: 155.458ms
- id: 169
request:
proto: HTTP/1.1
@@ -5942,7 +5942,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -5952,13 +5952,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 161.035667ms
+ duration: 126.33675ms
- id: 170
request:
proto: HTTP/1.1
@@ -5977,7 +5977,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -5987,13 +5987,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 141.341709ms
+ duration: 110.391ms
- id: 171
request:
proto: HTTP/1.1
@@ -6012,7 +6012,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -6022,13 +6022,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 193.17275ms
+ duration: 123.792583ms
- id: 172
request:
proto: HTTP/1.1
@@ -6047,7 +6047,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -6063,7 +6063,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.780333ms
+ duration: 157.989666ms
- id: 173
request:
proto: HTTP/1.1
@@ -6082,7 +6082,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -6092,13 +6092,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 161.494625ms
+ duration: 116.859125ms
- id: 174
request:
proto: HTTP/1.1
@@ -6117,7 +6117,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -6127,13 +6127,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 161.435416ms
+ duration: 125.60975ms
- id: 175
request:
proto: HTTP/1.1
@@ -6152,7 +6152,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -6162,13 +6162,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.424ms
+ duration: 120.451416ms
- id: 176
request:
proto: HTTP/1.1
@@ -6187,7 +6187,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -6197,13 +6197,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 134.304708ms
+ duration: 116.160542ms
- id: 177
request:
proto: HTTP/1.1
@@ -6222,7 +6222,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -6232,13 +6232,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.439209ms
+ duration: 112.407542ms
- id: 178
request:
proto: HTTP/1.1
@@ -6257,7 +6257,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -6267,13 +6267,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.138708ms
+ duration: 127.549125ms
- id: 179
request:
proto: HTTP/1.1
@@ -6292,7 +6292,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -6308,7 +6308,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.9895ms
+ duration: 121.286ms
- id: 180
request:
proto: HTTP/1.1
@@ -6327,7 +6327,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_ZALw4YS3znUQnlDq
method: DELETE
response:
proto: HTTP/2.0
@@ -6343,7 +6343,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 149.257958ms
+ duration: 113.263416ms
- id: 181
request:
proto: HTTP/1.1
@@ -6362,7 +6362,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -6372,13 +6372,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.881125ms
+ duration: 177.209708ms
- id: 182
request:
proto: HTTP/1.1
@@ -6397,7 +6397,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -6413,7 +6413,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.4995ms
+ duration: 127.729833ms
- id: 183
request:
proto: HTTP/1.1
@@ -6432,7 +6432,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -6448,7 +6448,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 180.497875ms
+ duration: 117.863292ms
- id: 184
request:
proto: HTTP/1.1
@@ -6467,7 +6467,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -6477,13 +6477,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.373208ms
+ duration: 110.809708ms
- id: 185
request:
proto: HTTP/1.1
@@ -6502,7 +6502,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -6512,13 +6512,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.878375ms
+ duration: 118.496333ms
- id: 186
request:
proto: HTTP/1.1
@@ -6537,7 +6537,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -6547,13 +6547,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 139.574125ms
+ duration: 119.675708ms
- id: 187
request:
proto: HTTP/1.1
@@ -6572,7 +6572,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -6582,13 +6582,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 169.073958ms
+ duration: 111.398584ms
- id: 188
request:
proto: HTTP/1.1
@@ -6607,7 +6607,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -6623,7 +6623,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.404541ms
+ duration: 115.885042ms
- id: 189
request:
proto: HTTP/1.1
@@ -6642,7 +6642,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -6658,7 +6658,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 132.59575ms
+ duration: 118.666875ms
- id: 190
request:
proto: HTTP/1.1
@@ -6677,7 +6677,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -6687,13 +6687,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 134.26ms
+ duration: 124.119167ms
- id: 191
request:
proto: HTTP/1.1
@@ -6712,7 +6712,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -6722,13 +6722,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.665916ms
+ duration: 116.075875ms
- id: 192
request:
proto: HTTP/1.1
@@ -6747,7 +6747,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -6757,13 +6757,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 136.423042ms
+ duration: 110.826958ms
- id: 193
request:
proto: HTTP/1.1
@@ -6782,7 +6782,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -6792,13 +6792,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 142.679584ms
+ duration: 111.436125ms
- id: 194
request:
proto: HTTP/1.1
@@ -6817,7 +6817,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -6833,7 +6833,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 138.406042ms
+ duration: 121.990875ms
- id: 195
request:
proto: HTTP/1.1
@@ -6852,7 +6852,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -6868,7 +6868,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 159.037125ms
+ duration: 146.210458ms
- id: 196
request:
proto: HTTP/1.1
@@ -6887,7 +6887,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -6897,13 +6897,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 161.708708ms
+ duration: 114.759375ms
- id: 197
request:
proto: HTTP/1.1
@@ -6922,7 +6922,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -6932,13 +6932,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.973ms
+ duration: 113.745583ms
- id: 198
request:
proto: HTTP/1.1
@@ -6957,7 +6957,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -6967,13 +6967,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 155.240458ms
+ duration: 110.349333ms
- id: 199
request:
proto: HTTP/1.1
@@ -6992,7 +6992,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -7002,13 +7002,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 131.4095ms
+ duration: 118.099417ms
- id: 200
request:
proto: HTTP/1.1
@@ -7027,7 +7027,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -7043,7 +7043,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 140.27ms
+ duration: 112.940792ms
- id: 201
request:
proto: HTTP/1.1
@@ -7062,7 +7062,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -7078,7 +7078,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.003792ms
+ duration: 108.1765ms
- id: 202
request:
proto: HTTP/1.1
@@ -7097,7 +7097,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -7107,13 +7107,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 136.31425ms
+ duration: 123.698459ms
- id: 203
request:
proto: HTTP/1.1
@@ -7132,7 +7132,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -7142,13 +7142,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 194.850084ms
+ duration: 114.633542ms
- id: 204
request:
proto: HTTP/1.1
@@ -7167,7 +7167,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -7177,13 +7177,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 230.094209ms
+ duration: 114.417625ms
- id: 205
request:
proto: HTTP/1.1
@@ -7202,7 +7202,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -7218,7 +7218,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.189708ms
+ duration: 125.88825ms
- id: 206
request:
proto: HTTP/1.1
@@ -7231,14 +7231,14 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"connection_id":"con_sE98596jWyc9vywF","show_as_button":true}
+ {"connection_id":"con_ZALw4YS3znUQnlDq","show_as_button":true}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections
method: POST
response:
proto: HTTP/2.0
@@ -7248,13 +7248,13 @@ interactions:
trailer: {}
content_length: 208
uncompressed: false
- body: '{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}'
+ body: '{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 152.588375ms
+ duration: 134.777458ms
- id: 207
request:
proto: HTTP/1.1
@@ -7273,7 +7273,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -7283,13 +7283,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 161.770709ms
+ duration: 179.841416ms
- id: 208
request:
proto: HTTP/1.1
@@ -7308,7 +7308,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -7318,13 +7318,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 156.158458ms
+ duration: 106.7305ms
- id: 209
request:
proto: HTTP/1.1
@@ -7343,7 +7343,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -7353,13 +7353,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 153.444833ms
+ duration: 128.040334ms
- id: 210
request:
proto: HTTP/1.1
@@ -7378,7 +7378,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -7394,7 +7394,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.725834ms
+ duration: 116.124042ms
- id: 211
request:
proto: HTTP/1.1
@@ -7413,7 +7413,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -7423,13 +7423,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 166.412625ms
+ duration: 133.513875ms
- id: 212
request:
proto: HTTP/1.1
@@ -7448,7 +7448,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -7458,13 +7458,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 135.732ms
+ duration: 130.429625ms
- id: 213
request:
proto: HTTP/1.1
@@ -7483,7 +7483,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -7499,7 +7499,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 236.18975ms
+ duration: 116.115791ms
- id: 214
request:
proto: HTTP/1.1
@@ -7518,7 +7518,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -7528,13 +7528,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 162.401625ms
+ duration: 121.059917ms
- id: 215
request:
proto: HTTP/1.1
@@ -7553,7 +7553,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -7563,13 +7563,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.706833ms
+ duration: 113.760333ms
- id: 216
request:
proto: HTTP/1.1
@@ -7588,7 +7588,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -7598,13 +7598,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 151.652125ms
+ duration: 118.7165ms
- id: 217
request:
proto: HTTP/1.1
@@ -7623,7 +7623,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -7633,13 +7633,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.213833ms
+ duration: 126.332375ms
- id: 218
request:
proto: HTTP/1.1
@@ -7658,7 +7658,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -7668,13 +7668,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.302042ms
+ duration: 125.208834ms
- id: 219
request:
proto: HTTP/1.1
@@ -7693,7 +7693,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -7703,13 +7703,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 155.878542ms
+ duration: 127.145375ms
- id: 220
request:
proto: HTTP/1.1
@@ -7728,7 +7728,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -7744,7 +7744,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.891333ms
+ duration: 112.708333ms
- id: 221
request:
proto: HTTP/1.1
@@ -7763,7 +7763,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -7773,13 +7773,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 153.472083ms
+ duration: 123.583208ms
- id: 222
request:
proto: HTTP/1.1
@@ -7798,7 +7798,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -7808,13 +7808,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.997625ms
+ duration: 142.113ms
- id: 223
request:
proto: HTTP/1.1
@@ -7833,7 +7833,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -7843,13 +7843,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 155.99125ms
+ duration: 117.389708ms
- id: 224
request:
proto: HTTP/1.1
@@ -7868,7 +7868,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -7878,13 +7878,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.380958ms
+ duration: 112.00325ms
- id: 225
request:
proto: HTTP/1.1
@@ -7903,7 +7903,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -7913,13 +7913,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 153.455125ms
+ duration: 138.933125ms
- id: 226
request:
proto: HTTP/1.1
@@ -7938,7 +7938,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -7948,13 +7948,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 155.685041ms
+ duration: 121.057708ms
- id: 227
request:
proto: HTTP/1.1
@@ -7973,7 +7973,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -7989,7 +7989,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.246208ms
+ duration: 122.219041ms
- id: 228
request:
proto: HTTP/1.1
@@ -8008,7 +8008,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -8018,13 +8018,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 151.837041ms
+ duration: 114.564959ms
- id: 229
request:
proto: HTTP/1.1
@@ -8043,7 +8043,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -8053,13 +8053,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 139.025959ms
+ duration: 117.799875ms
- id: 230
request:
proto: HTTP/1.1
@@ -8078,7 +8078,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -8088,13 +8088,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 141.722958ms
+ duration: 111.554625ms
- id: 231
request:
proto: HTTP/1.1
@@ -8113,7 +8113,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -8123,13 +8123,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 154.192ms
+ duration: 116.998667ms
- id: 232
request:
proto: HTTP/1.1
@@ -8148,7 +8148,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -8158,13 +8158,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.073417ms
+ duration: 111.964792ms
- id: 233
request:
proto: HTTP/1.1
@@ -8183,7 +8183,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -8193,13 +8193,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.755333ms
+ duration: 128.937708ms
- id: 234
request:
proto: HTTP/1.1
@@ -8218,7 +8218,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -8234,7 +8234,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 164.859375ms
+ duration: 119.685125ms
- id: 235
request:
proto: HTTP/1.1
@@ -8253,7 +8253,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -8263,13 +8263,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.258917ms
+ duration: 128.764792ms
- id: 236
request:
proto: HTTP/1.1
@@ -8288,7 +8288,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -8298,13 +8298,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 134.257958ms
+ duration: 147.604375ms
- id: 237
request:
proto: HTTP/1.1
@@ -8323,7 +8323,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -8333,13 +8333,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 294.204209ms
+ duration: 108.593583ms
- id: 238
request:
proto: HTTP/1.1
@@ -8358,7 +8358,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -8368,13 +8368,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 157.308708ms
+ duration: 118.337166ms
- id: 239
request:
proto: HTTP/1.1
@@ -8393,7 +8393,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_ZALw4YS3znUQnlDq
method: DELETE
response:
proto: HTTP/2.0
@@ -8409,7 +8409,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 150.6435ms
+ duration: 124.686625ms
- id: 240
request:
proto: HTTP/1.1
@@ -8422,14 +8422,14 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"connection_id":"con_sE98596jWyc9vywF","show_as_button":false}
+ {"connection_id":"con_ZALw4YS3znUQnlDq","show_as_button":false}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections
method: POST
response:
proto: HTTP/2.0
@@ -8439,13 +8439,13 @@ interactions:
trailer: {}
content_length: 209
uncompressed: false
- body: '{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}'
+ body: '{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 144.427625ms
+ duration: 125.622542ms
- id: 241
request:
proto: HTTP/1.1
@@ -8464,7 +8464,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -8474,13 +8474,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 155.106708ms
+ duration: 119.659417ms
- id: 242
request:
proto: HTTP/1.1
@@ -8499,7 +8499,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -8509,13 +8509,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.797916ms
+ duration: 111.4665ms
- id: 243
request:
proto: HTTP/1.1
@@ -8534,7 +8534,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -8544,13 +8544,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 188.123958ms
+ duration: 111.79425ms
- id: 244
request:
proto: HTTP/1.1
@@ -8569,7 +8569,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -8585,7 +8585,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 159.149334ms
+ duration: 109.915292ms
- id: 245
request:
proto: HTTP/1.1
@@ -8604,7 +8604,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -8614,13 +8614,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.604417ms
+ duration: 109.739833ms
- id: 246
request:
proto: HTTP/1.1
@@ -8639,7 +8639,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -8649,13 +8649,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 141.895291ms
+ duration: 118.925167ms
- id: 247
request:
proto: HTTP/1.1
@@ -8674,7 +8674,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -8690,7 +8690,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 153.091583ms
+ duration: 133.80825ms
- id: 248
request:
proto: HTTP/1.1
@@ -8709,7 +8709,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -8719,13 +8719,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 157.305292ms
+ duration: 114.660167ms
- id: 249
request:
proto: HTTP/1.1
@@ -8744,7 +8744,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -8754,13 +8754,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 154.67325ms
+ duration: 135.200708ms
- id: 250
request:
proto: HTTP/1.1
@@ -8779,7 +8779,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -8789,13 +8789,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 156.027459ms
+ duration: 107.5545ms
- id: 251
request:
proto: HTTP/1.1
@@ -8814,7 +8814,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -8824,13 +8824,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 172.992375ms
+ duration: 118.915917ms
- id: 252
request:
proto: HTTP/1.1
@@ -8849,7 +8849,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -8859,13 +8859,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.86925ms
+ duration: 111.682083ms
- id: 253
request:
proto: HTTP/1.1
@@ -8884,7 +8884,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -8894,13 +8894,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 139.361042ms
+ duration: 118.95125ms
- id: 254
request:
proto: HTTP/1.1
@@ -8919,7 +8919,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -8935,7 +8935,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 137.136458ms
+ duration: 221.282792ms
- id: 255
request:
proto: HTTP/1.1
@@ -8954,7 +8954,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -8964,13 +8964,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 137.231375ms
+ duration: 162.190459ms
- id: 256
request:
proto: HTTP/1.1
@@ -8989,7 +8989,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -8999,13 +8999,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.159708ms
+ duration: 147.84625ms
- id: 257
request:
proto: HTTP/1.1
@@ -9024,7 +9024,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -9034,13 +9034,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 164.609959ms
+ duration: 112.999875ms
- id: 258
request:
proto: HTTP/1.1
@@ -9059,7 +9059,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -9069,13 +9069,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.655416ms
+ duration: 116.90225ms
- id: 259
request:
proto: HTTP/1.1
@@ -9094,7 +9094,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -9104,13 +9104,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 141.570916ms
+ duration: 117.192875ms
- id: 260
request:
proto: HTTP/1.1
@@ -9129,7 +9129,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -9139,13 +9139,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.309125ms
+ duration: 125.3965ms
- id: 261
request:
proto: HTTP/1.1
@@ -9164,7 +9164,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -9180,7 +9180,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 140.705542ms
+ duration: 111.6775ms
- id: 262
request:
proto: HTTP/1.1
@@ -9199,7 +9199,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -9209,13 +9209,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.657542ms
+ duration: 115.061291ms
- id: 263
request:
proto: HTTP/1.1
@@ -9234,7 +9234,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -9244,13 +9244,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.328083ms
+ duration: 120.294833ms
- id: 264
request:
proto: HTTP/1.1
@@ -9269,7 +9269,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -9279,13 +9279,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.881583ms
+ duration: 112.886459ms
- id: 265
request:
proto: HTTP/1.1
@@ -9304,7 +9304,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -9314,13 +9314,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 156.010625ms
+ duration: 117.565875ms
- id: 266
request:
proto: HTTP/1.1
@@ -9339,7 +9339,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -9349,13 +9349,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.938083ms
+ duration: 111.477291ms
- id: 267
request:
proto: HTTP/1.1
@@ -9374,7 +9374,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -9384,13 +9384,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.556334ms
+ duration: 118.44725ms
- id: 268
request:
proto: HTTP/1.1
@@ -9409,7 +9409,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -9425,7 +9425,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 138.419416ms
+ duration: 128.904792ms
- id: 269
request:
proto: HTTP/1.1
@@ -9444,7 +9444,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -9454,13 +9454,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.053625ms
+ duration: 136.08ms
- id: 270
request:
proto: HTTP/1.1
@@ -9479,7 +9479,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -9489,13 +9489,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 194.450667ms
+ duration: 139.850667ms
- id: 271
request:
proto: HTTP/1.1
@@ -9514,7 +9514,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -9524,13 +9524,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.783917ms
+ duration: 117.238833ms
- id: 272
request:
proto: HTTP/1.1
@@ -9549,7 +9549,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -9559,13 +9559,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.838167ms
+ duration: 108.880459ms
- id: 273
request:
proto: HTTP/1.1
@@ -9584,7 +9584,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -9594,13 +9594,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 140.0725ms
+ duration: 115.627875ms
- id: 274
request:
proto: HTTP/1.1
@@ -9619,7 +9619,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -9629,13 +9629,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":false,"show_as_button":false,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 140.284416ms
+ duration: 117.023625ms
- id: 275
request:
proto: HTTP/1.1
@@ -9654,7 +9654,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -9670,7 +9670,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.936625ms
+ duration: 119.134458ms
- id: 276
request:
proto: HTTP/1.1
@@ -9689,7 +9689,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_ZALw4YS3znUQnlDq
method: DELETE
response:
proto: HTTP/2.0
@@ -9705,7 +9705,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 139.165041ms
+ duration: 115.325416ms
- id: 277
request:
proto: HTTP/1.1
@@ -9724,7 +9724,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -9734,13 +9734,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.69825ms
+ duration: 123.226959ms
- id: 278
request:
proto: HTTP/1.1
@@ -9759,7 +9759,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -9775,7 +9775,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 140.583209ms
+ duration: 135.705167ms
- id: 279
request:
proto: HTTP/1.1
@@ -9794,7 +9794,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -9810,7 +9810,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.279625ms
+ duration: 135.225042ms
- id: 280
request:
proto: HTTP/1.1
@@ -9829,7 +9829,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -9839,13 +9839,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.051792ms
+ duration: 413.709625ms
- id: 281
request:
proto: HTTP/1.1
@@ -9864,7 +9864,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -9874,13 +9874,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.196833ms
+ duration: 117.251333ms
- id: 282
request:
proto: HTTP/1.1
@@ -9899,7 +9899,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -9909,13 +9909,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 156.808959ms
+ duration: 112.774958ms
- id: 283
request:
proto: HTTP/1.1
@@ -9934,7 +9934,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -9944,13 +9944,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.447625ms
+ duration: 113.089667ms
- id: 284
request:
proto: HTTP/1.1
@@ -9969,7 +9969,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -9985,7 +9985,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 155.724125ms
+ duration: 118.322459ms
- id: 285
request:
proto: HTTP/1.1
@@ -10004,7 +10004,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -10020,7 +10020,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.463959ms
+ duration: 126.992834ms
- id: 286
request:
proto: HTTP/1.1
@@ -10039,7 +10039,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -10049,13 +10049,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.515875ms
+ duration: 115.930458ms
- id: 287
request:
proto: HTTP/1.1
@@ -10074,7 +10074,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -10084,13 +10084,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.11425ms
+ duration: 120.445167ms
- id: 288
request:
proto: HTTP/1.1
@@ -10109,7 +10109,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -10119,13 +10119,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 161.36975ms
+ duration: 114.3375ms
- id: 289
request:
proto: HTTP/1.1
@@ -10144,7 +10144,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -10154,13 +10154,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 156.250083ms
+ duration: 127.335166ms
- id: 290
request:
proto: HTTP/1.1
@@ -10179,7 +10179,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -10195,7 +10195,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 137.7805ms
+ duration: 109.941083ms
- id: 291
request:
proto: HTTP/1.1
@@ -10214,7 +10214,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -10230,7 +10230,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 158.238708ms
+ duration: 118.343209ms
- id: 292
request:
proto: HTTP/1.1
@@ -10249,7 +10249,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -10259,13 +10259,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.246208ms
+ duration: 121.446833ms
- id: 293
request:
proto: HTTP/1.1
@@ -10284,7 +10284,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -10294,13 +10294,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.9875ms
+ duration: 129.760209ms
- id: 294
request:
proto: HTTP/1.1
@@ -10319,7 +10319,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -10329,13 +10329,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.877667ms
+ duration: 110.813916ms
- id: 295
request:
proto: HTTP/1.1
@@ -10354,7 +10354,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -10364,13 +10364,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 156.607458ms
+ duration: 111.846667ms
- id: 296
request:
proto: HTTP/1.1
@@ -10389,7 +10389,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -10405,7 +10405,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 138.23075ms
+ duration: 116.448042ms
- id: 297
request:
proto: HTTP/1.1
@@ -10424,7 +10424,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -10440,7 +10440,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.200792ms
+ duration: 113.830791ms
- id: 298
request:
proto: HTTP/1.1
@@ -10459,7 +10459,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -10469,13 +10469,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.373917ms
+ duration: 114.407042ms
- id: 299
request:
proto: HTTP/1.1
@@ -10494,7 +10494,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -10504,13 +10504,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 157.78575ms
+ duration: 138.373333ms
- id: 300
request:
proto: HTTP/1.1
@@ -10529,7 +10529,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -10539,13 +10539,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 140.826583ms
+ duration: 118.4175ms
- id: 301
request:
proto: HTTP/1.1
@@ -10564,7 +10564,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -10580,7 +10580,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 137.549875ms
+ duration: 126.744958ms
- id: 302
request:
proto: HTTP/1.1
@@ -10593,14 +10593,14 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":true}
+ {"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections
method: POST
response:
proto: HTTP/2.0
@@ -10610,13 +10610,13 @@ interactions:
trailer: {}
content_length: 225
uncompressed: false
- body: '{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
+ body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 156.105833ms
+ duration: 132.357666ms
- id: 303
request:
proto: HTTP/1.1
@@ -10635,7 +10635,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -10645,13 +10645,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.151541ms
+ duration: 125.482291ms
- id: 304
request:
proto: HTTP/1.1
@@ -10670,7 +10670,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -10680,13 +10680,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 161.503917ms
+ duration: 111.317541ms
- id: 305
request:
proto: HTTP/1.1
@@ -10705,7 +10705,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -10715,13 +10715,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.053792ms
+ duration: 126.179333ms
- id: 306
request:
proto: HTTP/1.1
@@ -10740,7 +10740,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -10756,7 +10756,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 138.006583ms
+ duration: 111.559625ms
- id: 307
request:
proto: HTTP/1.1
@@ -10775,7 +10775,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -10785,13 +10785,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.260291ms
+ duration: 110.236541ms
- id: 308
request:
proto: HTTP/1.1
@@ -10810,7 +10810,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -10820,13 +10820,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.398167ms
+ duration: 119.838417ms
- id: 309
request:
proto: HTTP/1.1
@@ -10845,7 +10845,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -10861,7 +10861,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.457208ms
+ duration: 121.569167ms
- id: 310
request:
proto: HTTP/1.1
@@ -10880,7 +10880,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -10890,13 +10890,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 163.330083ms
+ duration: 122.733458ms
- id: 311
request:
proto: HTTP/1.1
@@ -10915,7 +10915,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -10925,13 +10925,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 134.926167ms
+ duration: 120.980125ms
- id: 312
request:
proto: HTTP/1.1
@@ -10950,7 +10950,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -10960,13 +10960,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.678375ms
+ duration: 114.520709ms
- id: 313
request:
proto: HTTP/1.1
@@ -10985,7 +10985,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -10995,13 +10995,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 138.704334ms
+ duration: 116.087458ms
- id: 314
request:
proto: HTTP/1.1
@@ -11020,7 +11020,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -11030,13 +11030,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.75325ms
+ duration: 108.2605ms
- id: 315
request:
proto: HTTP/1.1
@@ -11055,7 +11055,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -11065,13 +11065,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.955958ms
+ duration: 116.568083ms
- id: 316
request:
proto: HTTP/1.1
@@ -11090,7 +11090,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -11106,7 +11106,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 137.859208ms
+ duration: 159.907833ms
- id: 317
request:
proto: HTTP/1.1
@@ -11125,7 +11125,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -11135,13 +11135,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.442167ms
+ duration: 111.08525ms
- id: 318
request:
proto: HTTP/1.1
@@ -11160,7 +11160,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -11170,13 +11170,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 161.755625ms
+ duration: 125.358792ms
- id: 319
request:
proto: HTTP/1.1
@@ -11195,7 +11195,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -11205,13 +11205,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 139.266625ms
+ duration: 113.814167ms
- id: 320
request:
proto: HTTP/1.1
@@ -11230,7 +11230,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -11240,13 +11240,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.177916ms
+ duration: 132.601958ms
- id: 321
request:
proto: HTTP/1.1
@@ -11265,7 +11265,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -11275,13 +11275,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 134.251375ms
+ duration: 108.459875ms
- id: 322
request:
proto: HTTP/1.1
@@ -11300,7 +11300,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -11310,13 +11310,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 174.941833ms
+ duration: 120.025083ms
- id: 323
request:
proto: HTTP/1.1
@@ -11335,7 +11335,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -11351,7 +11351,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 141.101458ms
+ duration: 113.23175ms
- id: 324
request:
proto: HTTP/1.1
@@ -11370,7 +11370,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -11380,13 +11380,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 142.653958ms
+ duration: 116.363375ms
- id: 325
request:
proto: HTTP/1.1
@@ -11405,7 +11405,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -11415,13 +11415,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 157.809167ms
+ duration: 149.78525ms
- id: 326
request:
proto: HTTP/1.1
@@ -11440,7 +11440,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -11450,13 +11450,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.601292ms
+ duration: 114.603208ms
- id: 327
request:
proto: HTTP/1.1
@@ -11475,7 +11475,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -11485,13 +11485,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.717334ms
+ duration: 117.54775ms
- id: 328
request:
proto: HTTP/1.1
@@ -11510,7 +11510,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -11520,13 +11520,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.945042ms
+ duration: 111.480834ms
- id: 329
request:
proto: HTTP/1.1
@@ -11545,7 +11545,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -11555,13 +11555,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.571ms
+ duration: 118.707042ms
- id: 330
request:
proto: HTTP/1.1
@@ -11580,7 +11580,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -11596,7 +11596,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.231958ms
+ duration: 130.746292ms
- id: 331
request:
proto: HTTP/1.1
@@ -11615,7 +11615,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -11625,13 +11625,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 155.355666ms
+ duration: 112.79175ms
- id: 332
request:
proto: HTTP/1.1
@@ -11650,7 +11650,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -11660,13 +11660,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.587625ms
+ duration: 117.697625ms
- id: 333
request:
proto: HTTP/1.1
@@ -11685,7 +11685,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -11695,13 +11695,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.064792ms
+ duration: 120.660125ms
- id: 334
request:
proto: HTTP/1.1
@@ -11720,7 +11720,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -11730,13 +11730,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 153.662583ms
+ duration: 118.257208ms
- id: 335
request:
proto: HTTP/1.1
@@ -11755,7 +11755,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI
method: DELETE
response:
proto: HTTP/2.0
@@ -11771,7 +11771,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 143.86625ms
+ duration: 109.042125ms
- id: 336
request:
proto: HTTP/1.1
@@ -11784,14 +11784,14 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false}
+ {"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections
method: POST
response:
proto: HTTP/2.0
@@ -11801,13 +11801,13 @@ interactions:
trailer: {}
content_length: 226
uncompressed: false
- body: '{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
+ body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 141.221125ms
+ duration: 119.414042ms
- id: 337
request:
proto: HTTP/1.1
@@ -11826,7 +11826,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -11836,13 +11836,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.762083ms
+ duration: 122.352458ms
- id: 338
request:
proto: HTTP/1.1
@@ -11861,7 +11861,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -11871,13 +11871,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.235291ms
+ duration: 108.152167ms
- id: 339
request:
proto: HTTP/1.1
@@ -11896,7 +11896,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -11906,13 +11906,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.35575ms
+ duration: 114.022166ms
- id: 340
request:
proto: HTTP/1.1
@@ -11931,7 +11931,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -11947,7 +11947,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.726833ms
+ duration: 131.370708ms
- id: 341
request:
proto: HTTP/1.1
@@ -11966,7 +11966,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -11976,13 +11976,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 142.506334ms
+ duration: 124.129209ms
- id: 342
request:
proto: HTTP/1.1
@@ -12001,7 +12001,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -12011,13 +12011,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 151.632416ms
+ duration: 216.978833ms
- id: 343
request:
proto: HTTP/1.1
@@ -12036,7 +12036,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -12052,7 +12052,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 136.726041ms
+ duration: 118.114083ms
- id: 344
request:
proto: HTTP/1.1
@@ -12071,7 +12071,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -12081,13 +12081,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.001708ms
+ duration: 124.559625ms
- id: 345
request:
proto: HTTP/1.1
@@ -12106,7 +12106,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -12116,13 +12116,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.977375ms
+ duration: 128.804209ms
- id: 346
request:
proto: HTTP/1.1
@@ -12141,7 +12141,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -12151,13 +12151,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.288708ms
+ duration: 114.906959ms
- id: 347
request:
proto: HTTP/1.1
@@ -12176,7 +12176,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -12186,13 +12186,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 141.97675ms
+ duration: 120.417959ms
- id: 348
request:
proto: HTTP/1.1
@@ -12211,7 +12211,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -12221,13 +12221,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.366625ms
+ duration: 117.16075ms
- id: 349
request:
proto: HTTP/1.1
@@ -12246,7 +12246,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -12256,13 +12256,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.020375ms
+ duration: 127.933958ms
- id: 350
request:
proto: HTTP/1.1
@@ -12281,7 +12281,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -12297,7 +12297,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 137.857167ms
+ duration: 112.969125ms
- id: 351
request:
proto: HTTP/1.1
@@ -12316,7 +12316,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -12326,13 +12326,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 142.404ms
+ duration: 130.961875ms
- id: 352
request:
proto: HTTP/1.1
@@ -12351,7 +12351,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -12361,13 +12361,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.382958ms
+ duration: 124.302375ms
- id: 353
request:
proto: HTTP/1.1
@@ -12386,7 +12386,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -12396,13 +12396,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.365333ms
+ duration: 144.384041ms
- id: 354
request:
proto: HTTP/1.1
@@ -12421,7 +12421,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -12431,13 +12431,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.031417ms
+ duration: 117.407208ms
- id: 355
request:
proto: HTTP/1.1
@@ -12456,7 +12456,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -12466,13 +12466,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 160.739417ms
+ duration: 114.216375ms
- id: 356
request:
proto: HTTP/1.1
@@ -12491,7 +12491,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -12501,13 +12501,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.414292ms
+ duration: 124.601291ms
- id: 357
request:
proto: HTTP/1.1
@@ -12526,7 +12526,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -12542,7 +12542,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 144.504084ms
+ duration: 117.801625ms
- id: 358
request:
proto: HTTP/1.1
@@ -12561,7 +12561,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -12571,13 +12571,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.608ms
+ duration: 131.403166ms
- id: 359
request:
proto: HTTP/1.1
@@ -12596,7 +12596,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -12606,13 +12606,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 215.166667ms
+ duration: 119.280917ms
- id: 360
request:
proto: HTTP/1.1
@@ -12631,7 +12631,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -12641,13 +12641,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.794875ms
+ duration: 112.58125ms
- id: 361
request:
proto: HTTP/1.1
@@ -12666,7 +12666,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -12676,13 +12676,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 223.198667ms
+ duration: 123.753375ms
- id: 362
request:
proto: HTTP/1.1
@@ -12701,7 +12701,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -12711,13 +12711,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 141.696292ms
+ duration: 295.931792ms
- id: 363
request:
proto: HTTP/1.1
@@ -12736,7 +12736,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -12746,13 +12746,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.174ms
+ duration: 134.2235ms
- id: 364
request:
proto: HTTP/1.1
@@ -12771,7 +12771,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -12787,7 +12787,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 141.065916ms
+ duration: 115.208458ms
- id: 365
request:
proto: HTTP/1.1
@@ -12806,7 +12806,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -12816,13 +12816,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.133834ms
+ duration: 115.820417ms
- id: 366
request:
proto: HTTP/1.1
@@ -12841,7 +12841,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -12851,13 +12851,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.042791ms
+ duration: 228.333958ms
- id: 367
request:
proto: HTTP/1.1
@@ -12876,7 +12876,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -12886,13 +12886,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 174.135584ms
+ duration: 119.808875ms
- id: 368
request:
proto: HTTP/1.1
@@ -12911,7 +12911,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -12921,13 +12921,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.906042ms
+ duration: 122.953375ms
- id: 369
request:
proto: HTTP/1.1
@@ -12946,7 +12946,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -12956,13 +12956,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 140.805458ms
+ duration: 113.958334ms
- id: 370
request:
proto: HTTP/1.1
@@ -12981,7 +12981,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -12991,13 +12991,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 151.893125ms
+ duration: 119.7865ms
- id: 371
request:
proto: HTTP/1.1
@@ -13016,7 +13016,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -13032,7 +13032,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 182.287125ms
+ duration: 112.609875ms
- id: 372
request:
proto: HTTP/1.1
@@ -13051,7 +13051,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI
method: DELETE
response:
proto: HTTP/2.0
@@ -13067,7 +13067,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 315.221ms
+ duration: 113.638583ms
- id: 373
request:
proto: HTTP/1.1
@@ -13086,7 +13086,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -13096,13 +13096,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 153.266916ms
+ duration: 108.900042ms
- id: 374
request:
proto: HTTP/1.1
@@ -13121,7 +13121,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -13137,7 +13137,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 160.245125ms
+ duration: 115.510542ms
- id: 375
request:
proto: HTTP/1.1
@@ -13156,7 +13156,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -13172,7 +13172,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.418208ms
+ duration: 130.46625ms
- id: 376
request:
proto: HTTP/1.1
@@ -13191,7 +13191,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -13201,13 +13201,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.958ms
+ duration: 116.5635ms
- id: 377
request:
proto: HTTP/1.1
@@ -13226,7 +13226,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -13236,13 +13236,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 157.546375ms
+ duration: 140.570709ms
- id: 378
request:
proto: HTTP/1.1
@@ -13261,7 +13261,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -13271,13 +13271,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 159.591459ms
+ duration: 122.075958ms
- id: 379
request:
proto: HTTP/1.1
@@ -13296,7 +13296,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -13306,13 +13306,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 142.081792ms
+ duration: 108.203166ms
- id: 380
request:
proto: HTTP/1.1
@@ -13331,7 +13331,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -13347,7 +13347,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 153.251916ms
+ duration: 114.017375ms
- id: 381
request:
proto: HTTP/1.1
@@ -13366,7 +13366,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -13382,7 +13382,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.811791ms
+ duration: 118.922417ms
- id: 382
request:
proto: HTTP/1.1
@@ -13401,7 +13401,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -13411,13 +13411,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 151.7395ms
+ duration: 112.697791ms
- id: 383
request:
proto: HTTP/1.1
@@ -13436,7 +13436,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -13446,13 +13446,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 141.23275ms
+ duration: 123.25725ms
- id: 384
request:
proto: HTTP/1.1
@@ -13471,7 +13471,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -13481,13 +13481,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.643959ms
+ duration: 110.396917ms
- id: 385
request:
proto: HTTP/1.1
@@ -13506,7 +13506,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -13516,13 +13516,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 153.933458ms
+ duration: 113.105167ms
- id: 386
request:
proto: HTTP/1.1
@@ -13541,7 +13541,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -13557,7 +13557,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.913875ms
+ duration: 161.419541ms
- id: 387
request:
proto: HTTP/1.1
@@ -13576,7 +13576,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -13592,7 +13592,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.091917ms
+ duration: 121.806625ms
- id: 388
request:
proto: HTTP/1.1
@@ -13611,7 +13611,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -13621,13 +13621,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.073708ms
+ duration: 114.156667ms
- id: 389
request:
proto: HTTP/1.1
@@ -13646,7 +13646,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -13656,13 +13656,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 161.641834ms
+ duration: 109.2305ms
- id: 390
request:
proto: HTTP/1.1
@@ -13681,7 +13681,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -13691,13 +13691,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 140.536792ms
+ duration: 109.613042ms
- id: 391
request:
proto: HTTP/1.1
@@ -13716,7 +13716,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -13726,13 +13726,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 137.541208ms
+ duration: 117.129792ms
- id: 392
request:
proto: HTTP/1.1
@@ -13751,7 +13751,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -13767,7 +13767,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 151.067375ms
+ duration: 117.690291ms
- id: 393
request:
proto: HTTP/1.1
@@ -13786,7 +13786,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -13802,7 +13802,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.32825ms
+ duration: 128.158667ms
- id: 394
request:
proto: HTTP/1.1
@@ -13821,7 +13821,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -13831,13 +13831,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.808ms
+ duration: 111.98475ms
- id: 395
request:
proto: HTTP/1.1
@@ -13856,7 +13856,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -13866,13 +13866,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.310125ms
+ duration: 110.325667ms
- id: 396
request:
proto: HTTP/1.1
@@ -13891,7 +13891,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -13901,13 +13901,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 161.121834ms
+ duration: 118.029375ms
- id: 397
request:
proto: HTTP/1.1
@@ -13920,14 +13920,14 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true}
+ {"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections
method: POST
response:
proto: HTTP/2.0
@@ -13937,13 +13937,13 @@ interactions:
trailer: {}
content_length: 226
uncompressed: false
- body: '{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
+ body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 153.457792ms
+ duration: 117.722375ms
- id: 398
request:
proto: HTTP/1.1
@@ -13962,7 +13962,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -13972,13 +13972,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
+ body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 141.292667ms
+ duration: 110.664417ms
- id: 399
request:
proto: HTTP/1.1
@@ -13991,14 +13991,14 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true}
+ {"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections
method: POST
response:
proto: HTTP/2.0
@@ -14008,13 +14008,13 @@ interactions:
trailer: {}
content_length: 207
uncompressed: false
- body: '{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}'
+ body: '{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 152.616ms
+ duration: 135.638375ms
- id: 400
request:
proto: HTTP/1.1
@@ -14033,7 +14033,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -14043,13 +14043,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}'
+ body: '{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 140.703875ms
+ duration: 113.217292ms
- id: 401
request:
proto: HTTP/1.1
@@ -14068,7 +14068,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -14078,13 +14078,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.525875ms
+ duration: 116.641208ms
- id: 402
request:
proto: HTTP/1.1
@@ -14103,7 +14103,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -14113,13 +14113,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 151.391834ms
+ duration: 111.614209ms
- id: 403
request:
proto: HTTP/1.1
@@ -14138,7 +14138,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -14148,13 +14148,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.558541ms
+ duration: 115.38875ms
- id: 404
request:
proto: HTTP/1.1
@@ -14173,7 +14173,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -14183,13 +14183,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
+ body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 146.827875ms
+ duration: 119.018208ms
- id: 405
request:
proto: HTTP/1.1
@@ -14208,7 +14208,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -14218,13 +14218,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}'
+ body: '{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.794333ms
+ duration: 118.995209ms
- id: 406
request:
proto: HTTP/1.1
@@ -14243,7 +14243,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -14253,13 +14253,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.554583ms
+ duration: 117.596916ms
- id: 407
request:
proto: HTTP/1.1
@@ -14278,7 +14278,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -14288,13 +14288,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 156.947375ms
+ duration: 119.347625ms
- id: 408
request:
proto: HTTP/1.1
@@ -14313,7 +14313,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -14323,13 +14323,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 154.220542ms
+ duration: 121.382958ms
- id: 409
request:
proto: HTTP/1.1
@@ -14348,7 +14348,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -14364,7 +14364,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 150.879167ms
+ duration: 124.722417ms
- id: 410
request:
proto: HTTP/1.1
@@ -14383,7 +14383,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -14393,13 +14393,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 178.95275ms
+ duration: 112.794167ms
- id: 411
request:
proto: HTTP/1.1
@@ -14418,7 +14418,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -14428,13 +14428,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 152.539959ms
+ duration: 116.083917ms
- id: 412
request:
proto: HTTP/1.1
@@ -14453,7 +14453,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -14463,13 +14463,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 141.151833ms
+ duration: 115.839333ms
- id: 413
request:
proto: HTTP/1.1
@@ -14488,7 +14488,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -14498,13 +14498,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 145.249ms
+ duration: 123.42775ms
- id: 414
request:
proto: HTTP/1.1
@@ -14523,7 +14523,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -14533,13 +14533,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
+ body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 160.378625ms
+ duration: 146.779417ms
- id: 415
request:
proto: HTTP/1.1
@@ -14558,7 +14558,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -14568,13 +14568,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 148.749583ms
+ duration: 109.413875ms
- id: 416
request:
proto: HTTP/1.1
@@ -14593,7 +14593,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -14603,13 +14603,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}'
+ body: '{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.078167ms
+ duration: 120.942542ms
- id: 417
request:
proto: HTTP/1.1
@@ -14628,7 +14628,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -14638,13 +14638,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.648333ms
+ duration: 130.354416ms
- id: 418
request:
proto: HTTP/1.1
@@ -14663,7 +14663,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -14679,7 +14679,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 153.447208ms
+ duration: 144.48275ms
- id: 419
request:
proto: HTTP/1.1
@@ -14698,7 +14698,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -14708,13 +14708,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 136.346375ms
+ duration: 111.527167ms
- id: 420
request:
proto: HTTP/1.1
@@ -14733,7 +14733,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -14743,13 +14743,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.555917ms
+ duration: 115.12975ms
- id: 421
request:
proto: HTTP/1.1
@@ -14768,7 +14768,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -14784,7 +14784,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.988459ms
+ duration: 113.92525ms
- id: 422
request:
proto: HTTP/1.1
@@ -14803,7 +14803,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -14813,13 +14813,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_0Rb1HZwTC7D8xCtd","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-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_cy9fHD6JS7xozwRI","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-DB-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 323.076417ms
+ duration: 120.83875ms
- id: 423
request:
proto: HTTP/1.1
@@ -14838,7 +14838,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -14848,13 +14848,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"con_sE98596jWyc9vywF","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
+ body: '{"id":"con_ZALw4YS3znUQnlDq","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","is_domain_connection":false,"show_as_button":false,"display_name":"testaccorganizationconnections","enabled_clients":[],"realms":["Acceptance-Test-Enterprise-Connection-testaccorganizationconnections"]}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 161.786541ms
+ duration: 120.322083ms
- id: 424
request:
proto: HTTP/1.1
@@ -14873,7 +14873,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -14883,13 +14883,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 136.718208ms
+ duration: 130.803458ms
- id: 425
request:
proto: HTTP/1.1
@@ -14908,7 +14908,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI
method: GET
response:
proto: HTTP/2.0
@@ -14918,13 +14918,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
+ body: '{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 143.549417ms
+ duration: 121.662709ms
- id: 426
request:
proto: HTTP/1.1
@@ -14943,7 +14943,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -14953,13 +14953,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 149.512375ms
+ duration: 128.573417ms
- id: 427
request:
proto: HTTP/1.1
@@ -14978,7 +14978,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_ZALw4YS3znUQnlDq
method: GET
response:
proto: HTTP/2.0
@@ -14988,13 +14988,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}'
+ body: '{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 138.161167ms
+ duration: 121.764625ms
- id: 428
request:
proto: HTTP/1.1
@@ -15013,7 +15013,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: GET
response:
proto: HTTP/2.0
@@ -15023,13 +15023,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"org_iG8DgVtQv3ndkL6A","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
+ body: '{"id":"org_86e2tgHA8J23MXeO","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.978917ms
+ duration: 120.714208ms
- id: 429
request:
proto: HTTP/1.1
@@ -15048,7 +15048,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections?include_totals=true&page=0&per_page=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections?include_totals=true&page=0&per_page=100
method: GET
response:
proto: HTTP/2.0
@@ -15058,13 +15058,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"enabled_connections":[{"connection_id":"con_0Rb1HZwTC7D8xCtd","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_sE98596jWyc9vywF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
+ body: '{"enabled_connections":[{"connection_id":"con_cy9fHD6JS7xozwRI","assign_membership_on_login":true,"is_signup_enabled":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-DB-Connection-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_ZALw4YS3znUQnlDq","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Enterprise-Connection-testaccorganizationconnections","strategy":"okta"}}],"start":0,"limit":2,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 147.062875ms
+ duration: 124.091084ms
- id: 430
request:
proto: HTTP/1.1
@@ -15083,7 +15083,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100
method: GET
response:
proto: HTTP/2.0
@@ -15099,7 +15099,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 138.293292ms
+ duration: 113.523333ms
- id: 431
request:
proto: HTTP/1.1
@@ -15118,7 +15118,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_ZALw4YS3znUQnlDq
method: DELETE
response:
proto: HTTP/2.0
@@ -15134,7 +15134,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 150.603958ms
+ duration: 118.28775ms
- id: 432
request:
proto: HTTP/1.1
@@ -15153,7 +15153,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_ZALw4YS3znUQnlDq
method: DELETE
response:
proto: HTTP/2.0
@@ -15169,7 +15169,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 150.622167ms
+ duration: 140.289375ms
- id: 433
request:
proto: HTTP/1.1
@@ -15188,7 +15188,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI
method: DELETE
response:
proto: HTTP/2.0
@@ -15204,7 +15204,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 141.41625ms
+ duration: 122.596709ms
- id: 434
request:
proto: HTTP/1.1
@@ -15223,7 +15223,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A/enabled_connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO/enabled_connections/con_cy9fHD6JS7xozwRI
method: DELETE
response:
proto: HTTP/2.0
@@ -15239,7 +15239,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 211.897875ms
+ duration: 114.15425ms
- id: 435
request:
proto: HTTP/1.1
@@ -15258,7 +15258,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_iG8DgVtQv3ndkL6A
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_86e2tgHA8J23MXeO
method: DELETE
response:
proto: HTTP/2.0
@@ -15274,7 +15274,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 142.054ms
+ duration: 121.222708ms
- id: 436
request:
proto: HTTP/1.1
@@ -15293,7 +15293,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_sE98596jWyc9vywF
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_ZALw4YS3znUQnlDq
method: DELETE
response:
proto: HTTP/2.0
@@ -15303,13 +15303,13 @@ interactions:
trailer: {}
content_length: 41
uncompressed: false
- body: '{"deleted_at":"2024-06-17T17:13:12.481Z"}'
+ body: '{"deleted_at":"2024-07-08T20:05:15.526Z"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 202 Accepted
code: 202
- duration: 162.002709ms
+ duration: 149.51975ms
- id: 437
request:
proto: HTTP/1.1
@@ -15328,7 +15328,7 @@ interactions:
- application/json
User-Agent:
- Go-Auth0/1.7.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_0Rb1HZwTC7D8xCtd
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_cy9fHD6JS7xozwRI
method: DELETE
response:
proto: HTTP/2.0
@@ -15338,10 +15338,10 @@ interactions:
trailer: {}
content_length: 41
uncompressed: false
- body: '{"deleted_at":"2024-06-17T17:13:12.666Z"}'
+ body: '{"deleted_at":"2024-07-08T20:05:15.694Z"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 202 Accepted
code: 202
- duration: 157.629833ms
+ duration: 125.576583ms
diff --git a/test/data/recordings/TestAccSCIMConfiguration.yaml b/test/data/recordings/TestAccSCIMConfiguration.yaml
new file mode 100644
index 000000000..f4446f8b6
--- /dev/null
+++ b/test/data/recordings/TestAccSCIMConfiguration.yaml
@@ -0,0 +1,1408 @@
+---
+version: 2
+interactions:
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xxxxxxxxxxxxxxxx/scim-configuration
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"statusCode":404,"error":"Not Found","message":"The connection does not exist","errorCode":"inexistent_connection"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 404 Not Found
+ code: 404
+ duration: 232.29625ms
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 158
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ {"name":"Acceptance-Test-Non-SCIM-Connection-TestAccSCIMConfiguration","display_name":"Acceptance-Test-Non-SCIM-TestAccSCIMConfiguration","strategy":"auth0"}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0/1.8.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: 448
+ uncompressed: false
+ body: '{"id":"con_LjpuhLN7TudbLvJT","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Non-SCIM-Connection-TestAccSCIMConfiguration","is_domain_connection":false,"display_name":"Acceptance-Test-Non-SCIM-TestAccSCIMConfiguration","enabled_clients":[],"realms":["Acceptance-Test-Non-SCIM-Connection-TestAccSCIMConfiguration"]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 201 Created
+ code: 201
+ duration: 224.032292ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LjpuhLN7TudbLvJT
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"con_LjpuhLN7TudbLvJT","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Non-SCIM-Connection-TestAccSCIMConfiguration","is_domain_connection":false,"display_name":"Acceptance-Test-Non-SCIM-TestAccSCIMConfiguration","enabled_clients":[],"realms":["Acceptance-Test-Non-SCIM-Connection-TestAccSCIMConfiguration"]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 260.203583ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LjpuhLN7TudbLvJT/scim-configuration
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"statusCode":404,"error":"Not Found","message":"scim strategy not enabled"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 404 Not Found
+ code: 404
+ duration: 244.838667ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LjpuhLN7TudbLvJT
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"con_LjpuhLN7TudbLvJT","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Non-SCIM-Connection-TestAccSCIMConfiguration","is_domain_connection":false,"display_name":"Acceptance-Test-Non-SCIM-TestAccSCIMConfiguration","enabled_clients":[],"realms":["Acceptance-Test-Non-SCIM-Connection-TestAccSCIMConfiguration"]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 246.823417ms
+ - id: 5
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 455
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ {"name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","display_name":"Acceptance-Test-SCIM-TestAccSCIMConfiguration","strategy":"okta","options":{"client_id":"1234567","client_secret":"1234567","authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","userinfo_endpoint":null,"token_endpoint":"https://example.okta.com/oauth2/v1/token"}}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0/1.8.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: 761
+ uncompressed: false
+ body: '{"id":"con_qiOVg5E84TQLWQC5","options":{"client_id":"1234567","client_secret":"1234567","authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","userinfo_endpoint":null,"token_endpoint":"https://example.okta.com/oauth2/v1/token","schema_version":"oidc-V4","type":"back_channel","attribute_map":{"mapping_mode":"basic_profile"},"connection_settings":{"pkce":"auto"}},"strategy":"okta","name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SCIM-TestAccSCIMConfiguration","enabled_clients":[],"realms":["Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration"]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 201 Created
+ code: 201
+ duration: 314.66475ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_LjpuhLN7TudbLvJT
+ 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-07-17T18:27:43.762Z"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 202 Accepted
+ code: 202
+ duration: 314.728459ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"con_qiOVg5E84TQLWQC5","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SCIM-TestAccSCIMConfiguration","enabled_clients":[],"realms":["Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration"]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 205.551875ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5/scim-configuration
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: false
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_qiOVg5E84TQLWQC5","connection_name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","strategy":"okta","mapping":[{"scim":"userName","auth0":"preferred_username"},{"scim":"emails[primary eq true].value","auth0":"email"},{"scim":"externalId","auth0":"app_metadata.external_id"},{"scim":"active","auth0":"blocked"},{"scim":"displayName","auth0":"name"},{"scim":"name.givenName","auth0":"given_name"},{"scim":"name.familyName","auth0":"family_name"},{"scim":"name.middleName","auth0":"app_metadata.middle_name"},{"scim":"name.honorificPrefix","auth0":"app_metadata.honorific_prefix"},{"scim":"name.honorificSuffix","auth0":"app_metadata.honorific_suffix"},{"scim":"nickName","auth0":"nickname"},{"scim":"photos[type eq \"photo\"].value","auth0":"picture"},{"scim":"phoneNumbers[primary eq true].value","auth0":"app_metadata.primary_phone_number"},{"scim":"phoneNumbers[type eq \"mobile\"].value","auth0":"app_metadata.mobile_phone_number"},{"scim":"addresses[type eq \"work\"].streetAddress","auth0":"app_metadata.street_address"},{"scim":"addresses[type eq \"work\"].locality","auth0":"app_metadata.city"},{"scim":"addresses[type eq \"work\"].region","auth0":"app_metadata.state"},{"scim":"addresses[type eq \"work\"].postalCode","auth0":"app_metadata.postal_code"},{"scim":"addresses[type eq \"work\"].formatted","auth0":"app_metadata.postal_address"},{"scim":"addresses[type eq \"work\"].country","auth0":"app_metadata.country"},{"scim":"profileUrl","auth0":"app_metadata.profile_url"},{"scim":"userType","auth0":"app_metadata.user_type"},{"scim":"title","auth0":"app_metadata.title"},{"scim":"preferredLanguage","auth0":"app_metadata.language"},{"scim":"locale","auth0":"app_metadata.locale"},{"scim":"timezone","auth0":"app_metadata.timezone"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.employeeNumber","auth0":"app_metadata.employee_id"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.costCenter","auth0":"app_metadata.cost_center"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.organization","auth0":"app_metadata.organization"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.division","auth0":"app_metadata.division"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.department","auth0":"app_metadata.department"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.manager","auth0":"app_metadata.manager"}],"updated_on":"2024-07-17T18:27:44.297Z","created_at":"2024-07-17T18:27:44.297Z","user_id_attribute":"externalId"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 201 Created
+ code: 201
+ duration: 237.649792ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5/scim-configuration
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_qiOVg5E84TQLWQC5","connection_name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","strategy":"okta","mapping":[{"scim":"userName","auth0":"preferred_username"},{"scim":"emails[primary eq true].value","auth0":"email"},{"scim":"externalId","auth0":"app_metadata.external_id"},{"scim":"active","auth0":"blocked"},{"scim":"displayName","auth0":"name"},{"scim":"name.givenName","auth0":"given_name"},{"scim":"name.familyName","auth0":"family_name"},{"scim":"name.middleName","auth0":"app_metadata.middle_name"},{"scim":"name.honorificPrefix","auth0":"app_metadata.honorific_prefix"},{"scim":"name.honorificSuffix","auth0":"app_metadata.honorific_suffix"},{"scim":"nickName","auth0":"nickname"},{"scim":"photos[type eq \"photo\"].value","auth0":"picture"},{"scim":"phoneNumbers[primary eq true].value","auth0":"app_metadata.primary_phone_number"},{"scim":"phoneNumbers[type eq \"mobile\"].value","auth0":"app_metadata.mobile_phone_number"},{"scim":"addresses[type eq \"work\"].streetAddress","auth0":"app_metadata.street_address"},{"scim":"addresses[type eq \"work\"].locality","auth0":"app_metadata.city"},{"scim":"addresses[type eq \"work\"].region","auth0":"app_metadata.state"},{"scim":"addresses[type eq \"work\"].postalCode","auth0":"app_metadata.postal_code"},{"scim":"addresses[type eq \"work\"].formatted","auth0":"app_metadata.postal_address"},{"scim":"addresses[type eq \"work\"].country","auth0":"app_metadata.country"},{"scim":"profileUrl","auth0":"app_metadata.profile_url"},{"scim":"userType","auth0":"app_metadata.user_type"},{"scim":"title","auth0":"app_metadata.title"},{"scim":"preferredLanguage","auth0":"app_metadata.language"},{"scim":"locale","auth0":"app_metadata.locale"},{"scim":"timezone","auth0":"app_metadata.timezone"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.employeeNumber","auth0":"app_metadata.employee_id"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.costCenter","auth0":"app_metadata.cost_center"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.organization","auth0":"app_metadata.organization"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.division","auth0":"app_metadata.division"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.department","auth0":"app_metadata.department"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.manager","auth0":"app_metadata.manager"}],"updated_on":"2024-07-17T18:27:44.297Z","created_at":"2024-07-17T18:27:44.297Z","user_id_attribute":"externalId"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 293.6415ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"con_qiOVg5E84TQLWQC5","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SCIM-TestAccSCIMConfiguration","enabled_clients":[],"realms":["Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration"]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 215.382042ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5/scim-configuration
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_qiOVg5E84TQLWQC5","connection_name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","strategy":"okta","mapping":[{"scim":"userName","auth0":"preferred_username"},{"scim":"emails[primary eq true].value","auth0":"email"},{"scim":"externalId","auth0":"app_metadata.external_id"},{"scim":"active","auth0":"blocked"},{"scim":"displayName","auth0":"name"},{"scim":"name.givenName","auth0":"given_name"},{"scim":"name.familyName","auth0":"family_name"},{"scim":"name.middleName","auth0":"app_metadata.middle_name"},{"scim":"name.honorificPrefix","auth0":"app_metadata.honorific_prefix"},{"scim":"name.honorificSuffix","auth0":"app_metadata.honorific_suffix"},{"scim":"nickName","auth0":"nickname"},{"scim":"photos[type eq \"photo\"].value","auth0":"picture"},{"scim":"phoneNumbers[primary eq true].value","auth0":"app_metadata.primary_phone_number"},{"scim":"phoneNumbers[type eq \"mobile\"].value","auth0":"app_metadata.mobile_phone_number"},{"scim":"addresses[type eq \"work\"].streetAddress","auth0":"app_metadata.street_address"},{"scim":"addresses[type eq \"work\"].locality","auth0":"app_metadata.city"},{"scim":"addresses[type eq \"work\"].region","auth0":"app_metadata.state"},{"scim":"addresses[type eq \"work\"].postalCode","auth0":"app_metadata.postal_code"},{"scim":"addresses[type eq \"work\"].formatted","auth0":"app_metadata.postal_address"},{"scim":"addresses[type eq \"work\"].country","auth0":"app_metadata.country"},{"scim":"profileUrl","auth0":"app_metadata.profile_url"},{"scim":"userType","auth0":"app_metadata.user_type"},{"scim":"title","auth0":"app_metadata.title"},{"scim":"preferredLanguage","auth0":"app_metadata.language"},{"scim":"locale","auth0":"app_metadata.locale"},{"scim":"timezone","auth0":"app_metadata.timezone"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.employeeNumber","auth0":"app_metadata.employee_id"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.costCenter","auth0":"app_metadata.cost_center"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.organization","auth0":"app_metadata.organization"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.division","auth0":"app_metadata.division"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.department","auth0":"app_metadata.department"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.manager","auth0":"app_metadata.manager"}],"updated_on":"2024-07-17T18:27:44.297Z","created_at":"2024-07-17T18:27:44.297Z","user_id_attribute":"externalId"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 313.026791ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"con_qiOVg5E84TQLWQC5","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SCIM-TestAccSCIMConfiguration","enabled_clients":[],"realms":["Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration"]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 216.812125ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5/scim-configuration
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_qiOVg5E84TQLWQC5","connection_name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","strategy":"okta","mapping":[{"scim":"userName","auth0":"preferred_username"},{"scim":"emails[primary eq true].value","auth0":"email"},{"scim":"externalId","auth0":"app_metadata.external_id"},{"scim":"active","auth0":"blocked"},{"scim":"displayName","auth0":"name"},{"scim":"name.givenName","auth0":"given_name"},{"scim":"name.familyName","auth0":"family_name"},{"scim":"name.middleName","auth0":"app_metadata.middle_name"},{"scim":"name.honorificPrefix","auth0":"app_metadata.honorific_prefix"},{"scim":"name.honorificSuffix","auth0":"app_metadata.honorific_suffix"},{"scim":"nickName","auth0":"nickname"},{"scim":"photos[type eq \"photo\"].value","auth0":"picture"},{"scim":"phoneNumbers[primary eq true].value","auth0":"app_metadata.primary_phone_number"},{"scim":"phoneNumbers[type eq \"mobile\"].value","auth0":"app_metadata.mobile_phone_number"},{"scim":"addresses[type eq \"work\"].streetAddress","auth0":"app_metadata.street_address"},{"scim":"addresses[type eq \"work\"].locality","auth0":"app_metadata.city"},{"scim":"addresses[type eq \"work\"].region","auth0":"app_metadata.state"},{"scim":"addresses[type eq \"work\"].postalCode","auth0":"app_metadata.postal_code"},{"scim":"addresses[type eq \"work\"].formatted","auth0":"app_metadata.postal_address"},{"scim":"addresses[type eq \"work\"].country","auth0":"app_metadata.country"},{"scim":"profileUrl","auth0":"app_metadata.profile_url"},{"scim":"userType","auth0":"app_metadata.user_type"},{"scim":"title","auth0":"app_metadata.title"},{"scim":"preferredLanguage","auth0":"app_metadata.language"},{"scim":"locale","auth0":"app_metadata.locale"},{"scim":"timezone","auth0":"app_metadata.timezone"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.employeeNumber","auth0":"app_metadata.employee_id"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.costCenter","auth0":"app_metadata.cost_center"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.organization","auth0":"app_metadata.organization"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.division","auth0":"app_metadata.division"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.department","auth0":"app_metadata.department"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.manager","auth0":"app_metadata.manager"}],"updated_on":"2024-07-17T18:27:44.297Z","created_at":"2024-07-17T18:27:44.297Z","user_id_attribute":"externalId"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 252.208083ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5/scim-configuration
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_qiOVg5E84TQLWQC5","connection_name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","strategy":"okta","mapping":[{"scim":"userName","auth0":"preferred_username"},{"scim":"emails[primary eq true].value","auth0":"email"},{"scim":"externalId","auth0":"app_metadata.external_id"},{"scim":"active","auth0":"blocked"},{"scim":"displayName","auth0":"name"},{"scim":"name.givenName","auth0":"given_name"},{"scim":"name.familyName","auth0":"family_name"},{"scim":"name.middleName","auth0":"app_metadata.middle_name"},{"scim":"name.honorificPrefix","auth0":"app_metadata.honorific_prefix"},{"scim":"name.honorificSuffix","auth0":"app_metadata.honorific_suffix"},{"scim":"nickName","auth0":"nickname"},{"scim":"photos[type eq \"photo\"].value","auth0":"picture"},{"scim":"phoneNumbers[primary eq true].value","auth0":"app_metadata.primary_phone_number"},{"scim":"phoneNumbers[type eq \"mobile\"].value","auth0":"app_metadata.mobile_phone_number"},{"scim":"addresses[type eq \"work\"].streetAddress","auth0":"app_metadata.street_address"},{"scim":"addresses[type eq \"work\"].locality","auth0":"app_metadata.city"},{"scim":"addresses[type eq \"work\"].region","auth0":"app_metadata.state"},{"scim":"addresses[type eq \"work\"].postalCode","auth0":"app_metadata.postal_code"},{"scim":"addresses[type eq \"work\"].formatted","auth0":"app_metadata.postal_address"},{"scim":"addresses[type eq \"work\"].country","auth0":"app_metadata.country"},{"scim":"profileUrl","auth0":"app_metadata.profile_url"},{"scim":"userType","auth0":"app_metadata.user_type"},{"scim":"title","auth0":"app_metadata.title"},{"scim":"preferredLanguage","auth0":"app_metadata.language"},{"scim":"locale","auth0":"app_metadata.locale"},{"scim":"timezone","auth0":"app_metadata.timezone"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.employeeNumber","auth0":"app_metadata.employee_id"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.costCenter","auth0":"app_metadata.cost_center"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.organization","auth0":"app_metadata.organization"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.division","auth0":"app_metadata.division"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.department","auth0":"app_metadata.department"},{"scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.manager","auth0":"app_metadata.manager"}],"updated_on":"2024-07-17T18:27:44.297Z","created_at":"2024-07-17T18:27:44.297Z","user_id_attribute":"externalId"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 268.976708ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5/scim-configuration/default-mapping
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"mapping":[{"auth0":"preferred_username","scim":"userName"},{"auth0":"email","scim":"emails[primary eq true].value"},{"auth0":"app_metadata.external_id","scim":"externalId"},{"auth0":"blocked","scim":"active"},{"auth0":"name","scim":"displayName"},{"auth0":"given_name","scim":"name.givenName"},{"auth0":"family_name","scim":"name.familyName"},{"auth0":"app_metadata.middle_name","scim":"name.middleName"},{"auth0":"app_metadata.honorific_prefix","scim":"name.honorificPrefix"},{"auth0":"app_metadata.honorific_suffix","scim":"name.honorificSuffix"},{"auth0":"nickname","scim":"nickName"},{"auth0":"picture","scim":"photos[type eq \"photo\"].value"},{"auth0":"app_metadata.primary_phone_number","scim":"phoneNumbers[primary eq true].value"},{"auth0":"app_metadata.mobile_phone_number","scim":"phoneNumbers[type eq \"mobile\"].value"},{"auth0":"app_metadata.street_address","scim":"addresses[type eq \"work\"].streetAddress"},{"auth0":"app_metadata.city","scim":"addresses[type eq \"work\"].locality"},{"auth0":"app_metadata.state","scim":"addresses[type eq \"work\"].region"},{"auth0":"app_metadata.postal_code","scim":"addresses[type eq \"work\"].postalCode"},{"auth0":"app_metadata.postal_address","scim":"addresses[type eq \"work\"].formatted"},{"auth0":"app_metadata.country","scim":"addresses[type eq \"work\"].country"},{"auth0":"app_metadata.profile_url","scim":"profileUrl"},{"auth0":"app_metadata.user_type","scim":"userType"},{"auth0":"app_metadata.title","scim":"title"},{"auth0":"app_metadata.language","scim":"preferredLanguage"},{"auth0":"app_metadata.locale","scim":"locale"},{"auth0":"app_metadata.timezone","scim":"timezone"},{"auth0":"app_metadata.employee_id","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.employeeNumber"},{"auth0":"app_metadata.cost_center","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.costCenter"},{"auth0":"app_metadata.organization","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.organization"},{"auth0":"app_metadata.division","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.division"},{"auth0":"app_metadata.department","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.department"},{"auth0":"app_metadata.manager","scim":"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User.manager"}]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 231.159375ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5/scim-configuration
+ 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: 328.67125ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5/scim-configuration
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"statusCode":404,"error":"Not Found","message":"Not Found"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 404 Not Found
+ code: 404
+ duration: 215.8985ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"con_qiOVg5E84TQLWQC5","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SCIM-TestAccSCIMConfiguration","enabled_clients":[],"realms":["Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration"]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 333.74475ms
+ - id: 19
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 133
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ {"user_id_attribute":"test_attribute","mapping":[{"auth0":"attr_auth0_1","scim":"scim_1"},{"auth0":"attr_auth0_2","scim":"scim_2"}]}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0/1.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5/scim-configuration
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 410
+ uncompressed: false
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_qiOVg5E84TQLWQC5","connection_name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","strategy":"okta","mapping":[{"scim":"scim_1","auth0":"attr_auth0_1"},{"scim":"scim_2","auth0":"attr_auth0_2"}],"updated_on":"2024-07-17T18:27:49.770Z","created_at":"2024-07-17T18:27:49.770Z","user_id_attribute":"test_attribute"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 201 Created
+ code: 201
+ duration: 286.612208ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5/scim-configuration
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_qiOVg5E84TQLWQC5","connection_name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","strategy":"okta","mapping":[{"scim":"scim_1","auth0":"attr_auth0_1"},{"scim":"scim_2","auth0":"attr_auth0_2"}],"updated_on":"2024-07-17T18:27:49.770Z","created_at":"2024-07-17T18:27:49.770Z","user_id_attribute":"test_attribute"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 211.081833ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"con_qiOVg5E84TQLWQC5","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SCIM-TestAccSCIMConfiguration","enabled_clients":[],"realms":["Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration"]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 328.226209ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5/scim-configuration
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_qiOVg5E84TQLWQC5","connection_name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","strategy":"okta","mapping":[{"scim":"scim_1","auth0":"attr_auth0_1"},{"scim":"scim_2","auth0":"attr_auth0_2"}],"updated_on":"2024-07-17T18:27:49.770Z","created_at":"2024-07-17T18:27:49.770Z","user_id_attribute":"test_attribute"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 208.361333ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"con_qiOVg5E84TQLWQC5","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SCIM-TestAccSCIMConfiguration","enabled_clients":[],"realms":["Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration"]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 225.161292ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5/scim-configuration
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_qiOVg5E84TQLWQC5","connection_name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","strategy":"okta","mapping":[{"scim":"scim_1","auth0":"attr_auth0_1"},{"scim":"scim_2","auth0":"attr_auth0_2"}],"updated_on":"2024-07-17T18:27:49.770Z","created_at":"2024-07-17T18:27:49.770Z","user_id_attribute":"test_attribute"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 237.979875ms
+ - id: 25
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 88
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ {"user_id_attribute":"test_attribute","mapping":[{"auth0":"attr_auth0","scim":"scim"}]}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0/1.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5/scim-configuration
+ method: PATCH
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_qiOVg5E84TQLWQC5","connection_name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","strategy":"okta","mapping":[{"scim":"scim","auth0":"attr_auth0"}],"updated_on":"2024-07-17T18:27:52.595Z","created_at":"2024-07-17T18:27:49.770Z","user_id_attribute":"test_attribute"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 353.7985ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5/scim-configuration
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_qiOVg5E84TQLWQC5","connection_name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","strategy":"okta","mapping":[{"scim":"scim","auth0":"attr_auth0"}],"updated_on":"2024-07-17T18:27:52.595Z","created_at":"2024-07-17T18:27:49.770Z","user_id_attribute":"test_attribute"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 217.921667ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"con_qiOVg5E84TQLWQC5","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SCIM-TestAccSCIMConfiguration","enabled_clients":[],"realms":["Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration"]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 220.837708ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5/scim-configuration
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_qiOVg5E84TQLWQC5","connection_name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","strategy":"okta","mapping":[{"scim":"scim","auth0":"attr_auth0"}],"updated_on":"2024-07-17T18:27:52.595Z","created_at":"2024-07-17T18:27:49.770Z","user_id_attribute":"test_attribute"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 221.667625ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"con_qiOVg5E84TQLWQC5","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SCIM-TestAccSCIMConfiguration","enabled_clients":[],"realms":["Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration"]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 235.049708ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5/scim-configuration
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_qiOVg5E84TQLWQC5","connection_name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","strategy":"okta","mapping":[{"scim":"scim","auth0":"attr_auth0"}],"updated_on":"2024-07-17T18:27:52.595Z","created_at":"2024-07-17T18:27:49.770Z","user_id_attribute":"test_attribute"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 220.020708ms
+ - id: 31
+ 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: |
+ {"user_id_attribute":"modified_test_attribute","mapping":[{"auth0":"attr_auth0","scim":"scim"}]}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0/1.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5/scim-configuration
+ method: PATCH
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_qiOVg5E84TQLWQC5","connection_name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","strategy":"okta","mapping":[{"scim":"scim","auth0":"attr_auth0"}],"updated_on":"2024-07-17T18:27:55.590Z","created_at":"2024-07-17T18:27:49.770Z","user_id_attribute":"modified_test_attribute"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 228.995292ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5/scim-configuration
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_qiOVg5E84TQLWQC5","connection_name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","strategy":"okta","mapping":[{"scim":"scim","auth0":"attr_auth0"}],"updated_on":"2024-07-17T18:27:55.590Z","created_at":"2024-07-17T18:27:49.770Z","user_id_attribute":"modified_test_attribute"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 212.305ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"con_qiOVg5E84TQLWQC5","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SCIM-TestAccSCIMConfiguration","enabled_clients":[],"realms":["Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration"]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 218.38325ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5/scim-configuration
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_qiOVg5E84TQLWQC5","connection_name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","strategy":"okta","mapping":[{"scim":"scim","auth0":"attr_auth0"}],"updated_on":"2024-07-17T18:27:55.590Z","created_at":"2024-07-17T18:27:49.770Z","user_id_attribute":"modified_test_attribute"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 219.429375ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5/scim-configuration
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"tenant_name":"terraform-provider-auth0-dev","connection_id":"con_qiOVg5E84TQLWQC5","connection_name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","strategy":"okta","mapping":[{"scim":"scim","auth0":"attr_auth0"}],"updated_on":"2024-07-17T18:27:55.590Z","created_at":"2024-07-17T18:27:49.770Z","user_id_attribute":"modified_test_attribute"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 212.043416ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"con_qiOVg5E84TQLWQC5","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SCIM-TestAccSCIMConfiguration","enabled_clients":[],"realms":["Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration"]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 227.826541ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5/scim-configuration
+ 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: 358.406833ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"con_qiOVg5E84TQLWQC5","options":{"type":"back_channel","issuer":"https://example.okta.com","jwks_uri":"https://example.okta.com/oauth2/v1/keys","client_id":"1234567","attribute_map":{"mapping_mode":"basic_profile"},"client_secret":"1234567","schema_version":"oidc-V4","token_endpoint":"https://example.okta.com/oauth2/v1/token","userinfo_endpoint":null,"connection_settings":{"pkce":"auto"},"authorization_endpoint":"https://example.okta.com/oauth2/v1/authorize"},"strategy":"okta","name":"Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration","is_domain_connection":false,"show_as_button":false,"display_name":"Acceptance-Test-SCIM-TestAccSCIMConfiguration","enabled_clients":[],"realms":["Acceptance-Test-SCIM-Connection-TestAccSCIMConfiguration"]}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 195.3705ms
+ - 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.8.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qiOVg5E84TQLWQC5
+ 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-07-17T18:27:59.263Z"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 202 Accepted
+ code: 202
+ duration: 224.335541ms