From 8a6f238f6b1f54c550d3e64376cbcc237ab441c9 Mon Sep 17 00:00:00 2001 From: Kunal Dawar Date: Tue, 8 Oct 2024 15:34:15 +0530 Subject: [PATCH] Fix: Ensure Removal of Insertion Points in Resource API --- .../auth0/prompt/resource_screen_partial.go | 5 + .../prompt/resource_screen_partial_test.go | 40 +- .../TestAccPromptScreenPartial.yaml | 1312 +++++++++++++---- 3 files changed, 1033 insertions(+), 324 deletions(-) diff --git a/internal/auth0/prompt/resource_screen_partial.go b/internal/auth0/prompt/resource_screen_partial.go index 12a19a01..604db094 100644 --- a/internal/auth0/prompt/resource_screen_partial.go +++ b/internal/auth0/prompt/resource_screen_partial.go @@ -114,6 +114,11 @@ func updatePromptScreenPartial(ctx context.Context, data *schema.ResourceData, m promptPartial := expandPromptScreenPartial(data) for screenName, insertionPoints := range *promptPartial { if existingInsertionPoints, exists := (*existingPromptScreenPartial)[screenName]; exists { + for insertionPoint := range existingInsertionPoints { + if _, found := insertionPoints[insertionPoint]; !found { + delete(existingInsertionPoints, insertionPoint) + } + } for insertionPoint, content := range insertionPoints { existingInsertionPoints[insertionPoint] = content } diff --git a/internal/auth0/prompt/resource_screen_partial_test.go b/internal/auth0/prompt/resource_screen_partial_test.go index 2f49f24e..7ef99c91 100644 --- a/internal/auth0/prompt/resource_screen_partial_test.go +++ b/internal/auth0/prompt/resource_screen_partial_test.go @@ -54,8 +54,21 @@ resource "auth0_prompt_screen_partial" "login" { } } ` -const testAccPromptScreenPartialUpdate = testAccPromptScreenPartialCreate + testAccPromptScreenPartialCreate2 +const testAccPromptScreenPartialRemoveInsertionPoint = testAccPromptScreenPartialWithoutScreenPartial + ` +resource "auth0_prompt_screen_partial" "login_passwordless_email_code" { + depends_on = [ auth0_branding.my_brand ] + prompt_type = "login-passwordless" + screen_name = "login-passwordless-email-code" + insertion_points { + form_content_start = "
Form Content Start
" + form_content_end = "
Form Content End
" + } +} +` + +const testAccPromptScreenPartialUpdate = testAccPromptScreenPartialCreate + testAccPromptScreenPartialCreate2 +const testAccPromptScreenPartialRemoveInsertionPoints = testAccPromptScreenPartialRemoveInsertionPoint + testAccPromptScreenPartialCreate2 const testAccPromptScreenPartialDelete = testAccGivenACustomDomain + testGivenABrandingTemplate + testAccPromptScreenPartialCreate2 const testAccPromptScreenPartialData = ` @@ -93,6 +106,31 @@ func TestAccPromptScreenPartial(t *testing.T) { resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login_passwordless_email_code", "screen_name", "login-passwordless-email-code"), resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login_passwordless_email_code", "insertion_points.0.form_content_start", "
Form Content Start
"), resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login_passwordless_email_code", "insertion_points.0.form_content_end", "
Form Content End
"), + resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login_passwordless_email_code", "insertion_points.0.form_footer_start", "
Form Footer Start
"), + resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login_passwordless_email_code", "insertion_points.0.form_footer_end", "
Form Footer End
"), + resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login_passwordless_sms_otp", "prompt_type", "login-passwordless"), + resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login_passwordless_sms_otp", "screen_name", "login-passwordless-sms-otp"), + resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login_passwordless_sms_otp", "insertion_points.0.form_content_start", "
Form Content Start
"), + resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login_passwordless_sms_otp", "insertion_points.0.form_content_end", "
Form Content End
"), + resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login", "prompt_type", "login"), + resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login", "screen_name", "login"), + resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login", "insertion_points.0.form_content_start", "
Form Content Start
"), + resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login", "insertion_points.0.form_content_end", "
Form Content End
"), + resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login", "insertion_points.0.form_footer_start", "
Form Footer Start
"), + resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login", "insertion_points.0.form_footer_end", "
Form Footer End
"), + resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login", "insertion_points.0.secondary_actions_start", "
Secondary Actions Start
"), + resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login", "insertion_points.0.secondary_actions_end", "
Secondary Actions End
"), + ), + }, + { + Config: testAccPromptScreenPartialRemoveInsertionPoints, + Check: resource.ComposeTestCheckFunc( + resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login_passwordless_email_code", "prompt_type", "login-passwordless"), + resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login_passwordless_email_code", "screen_name", "login-passwordless-email-code"), + resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login_passwordless_email_code", "insertion_points.0.form_content_start", "
Form Content Start
"), + resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login_passwordless_email_code", "insertion_points.0.form_content_end", "
Form Content End
"), + resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login_passwordless_email_code", "insertion_points.0.form_footer_start", ""), + resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login_passwordless_email_code", "insertion_points.0.form_footer_end", ""), resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login_passwordless_sms_otp", "prompt_type", "login-passwordless"), resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login_passwordless_sms_otp", "screen_name", "login-passwordless-sms-otp"), resource.TestCheckResourceAttr("auth0_prompt_screen_partial.login_passwordless_sms_otp", "insertion_points.0.form_content_start", "
Form Content Start
"), diff --git a/test/data/recordings/TestAccPromptScreenPartial.yaml b/test/data/recordings/TestAccPromptScreenPartial.yaml index 03b618c4..1f85c965 100644 --- a/test/data/recordings/TestAccPromptScreenPartial.yaml +++ b/test/data/recordings/TestAccPromptScreenPartial.yaml @@ -6,7 +6,7 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 57 + content_length: 70 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains method: POST response: @@ -28,15 +28,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 310 + content_length: 336 uncompressed: false - body: '{"custom_domain_id":"cd_QBuj75MT8QrXvNIJ","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-qbuj75mt8qrxvnij.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}' + body: '{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 1.412644084s + duration: 950.278542ms - id: 1 request: proto: HTTP/1.1 @@ -54,8 +54,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains/cd_QBuj75MT8QrXvNIJ + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains/cd_Yw0VSNt4k2zCAec6 method: GET response: proto: HTTP/2.0 @@ -65,13 +65,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"custom_domain_id":"cd_QBuj75MT8QrXvNIJ","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-qbuj75mt8qrxvnij.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}' + body: '{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 336.599542ms + duration: 316.526083ms - id: 2 request: proto: HTTP/1.1 @@ -89,7 +89,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains method: GET response: @@ -100,13 +100,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"custom_domain_id":"cd_QBuj75MT8QrXvNIJ","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-qbuj75mt8qrxvnij.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' + body: '[{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 268.495459ms + duration: 332.480417ms - id: 3 request: proto: HTTP/1.1 @@ -125,7 +125,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding/templates/universal-login method: PUT response: @@ -142,7 +142,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 7.087487s + duration: 1.310482667s - id: 4 request: proto: HTTP/1.1 @@ -160,7 +160,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding method: GET response: @@ -177,7 +177,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 260.534916ms + duration: 391.393916ms - id: 5 request: proto: HTTP/1.1 @@ -195,7 +195,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains method: GET response: @@ -206,13 +206,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"custom_domain_id":"cd_QBuj75MT8QrXvNIJ","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-qbuj75mt8qrxvnij.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' + body: '[{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 267.934833ms + duration: 407.032583ms - id: 6 request: proto: HTTP/1.1 @@ -230,7 +230,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding/templates/universal-login method: GET response: @@ -247,7 +247,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 341.352625ms + duration: 457.971667ms - id: 7 request: proto: HTTP/1.1 @@ -265,7 +265,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/signup/partials method: GET response: @@ -282,7 +282,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.948042ms + duration: 498.661791ms - id: 8 request: proto: HTTP/1.1 @@ -301,7 +301,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/signup/partials method: PUT response: @@ -318,7 +318,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.374875ms + duration: 290.072625ms - id: 9 request: proto: HTTP/1.1 @@ -336,7 +336,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/signup/partials method: GET response: @@ -353,7 +353,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.696166ms + duration: 308.423917ms - id: 10 request: proto: HTTP/1.1 @@ -371,8 +371,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains/cd_QBuj75MT8QrXvNIJ + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains/cd_Yw0VSNt4k2zCAec6 method: GET response: proto: HTTP/2.0 @@ -382,13 +382,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"custom_domain_id":"cd_QBuj75MT8QrXvNIJ","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-qbuj75mt8qrxvnij.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}' + body: '{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 268.835042ms + duration: 286.817125ms - id: 11 request: proto: HTTP/1.1 @@ -406,7 +406,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding method: GET response: @@ -423,7 +423,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.220333ms + duration: 301.879916ms - id: 12 request: proto: HTTP/1.1 @@ -441,7 +441,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains method: GET response: @@ -452,13 +452,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"custom_domain_id":"cd_QBuj75MT8QrXvNIJ","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-qbuj75mt8qrxvnij.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' + body: '[{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 263.141167ms + duration: 294.442ms - id: 13 request: proto: HTTP/1.1 @@ -476,7 +476,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding/templates/universal-login method: GET response: @@ -493,7 +493,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 424.692166ms + duration: 341.54325ms - id: 14 request: proto: HTTP/1.1 @@ -511,7 +511,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/signup/partials method: GET response: @@ -528,7 +528,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 271.003584ms + duration: 285.8545ms - id: 15 request: proto: HTTP/1.1 @@ -546,8 +546,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains/cd_QBuj75MT8QrXvNIJ + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains/cd_Yw0VSNt4k2zCAec6 method: GET response: proto: HTTP/2.0 @@ -557,13 +557,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"custom_domain_id":"cd_QBuj75MT8QrXvNIJ","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-qbuj75mt8qrxvnij.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}' + body: '{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.928625ms + duration: 277.421792ms - id: 16 request: proto: HTTP/1.1 @@ -581,7 +581,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding method: GET response: @@ -598,7 +598,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 269.959458ms + duration: 278.573209ms - id: 17 request: proto: HTTP/1.1 @@ -616,7 +616,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains method: GET response: @@ -627,13 +627,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"custom_domain_id":"cd_QBuj75MT8QrXvNIJ","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-qbuj75mt8qrxvnij.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' + body: '[{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.729167ms + duration: 275.826791ms - id: 18 request: proto: HTTP/1.1 @@ -651,7 +651,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding/templates/universal-login method: GET response: @@ -668,7 +668,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 323.652042ms + duration: 340.331542ms - id: 19 request: proto: HTTP/1.1 @@ -686,7 +686,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/signup/partials method: GET response: @@ -703,7 +703,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.646791ms + duration: 311.563583ms - id: 20 request: proto: HTTP/1.1 @@ -721,7 +721,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials method: GET response: @@ -730,34 +730,34 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2 - uncompressed: false - body: '{}' + content_length: -1 + uncompressed: true + body: '{"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.872291ms + duration: 285.606833ms - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 316 + content_length: 489 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"login-passwordless-email-code":{"form-content-end":"\u003cdiv\u003eForm Content End\u003c/div\u003e","form-content-start":"\u003cdiv\u003eForm Content Start\u003c/div\u003e","form-footer-end":"\u003cdiv\u003eForm Footer End\u003c/div\u003e","form-footer-start":"\u003cdiv\u003eForm Footer Start\u003c/div\u003e"}} + {"login-passwordless-email-code":{"form-content-end":"\u003cdiv\u003eForm Content End\u003c/div\u003e","form-content-start":"\u003cdiv\u003eForm Content Start\u003c/div\u003e","form-footer-end":"\u003cdiv\u003eForm Footer End\u003c/div\u003e","form-footer-start":"\u003cdiv\u003eForm Footer Start\u003c/div\u003e"},"login-passwordless-sms-otp":{"form-content-end":"\u003cdiv\u003eForm Content End\u003c/div\u003e","form-content-start":"\u003cdiv\u003eForm Content Start\u003c/div\u003e"}} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials method: PUT response: @@ -768,13 +768,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"login-passwordless-email-code":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
","form-footer-end":"
Form Footer End
","form-footer-start":"
Form Footer Start
"}}' + body: '{"login-passwordless-email-code":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
","form-footer-end":"
Form Footer End
","form-footer-start":"
Form Footer Start
"},"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 271.715958ms + duration: 312.894958ms - id: 22 request: proto: HTTP/1.1 @@ -792,7 +792,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials method: GET response: @@ -803,13 +803,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"login-passwordless-email-code":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
"}}' + body: '{"login-passwordless-email-code":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
"},"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 256.22275ms + duration: 397.509ms - id: 23 request: proto: HTTP/1.1 @@ -827,8 +827,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains/cd_QBuj75MT8QrXvNIJ + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains/cd_Yw0VSNt4k2zCAec6 method: GET response: proto: HTTP/2.0 @@ -838,13 +838,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"custom_domain_id":"cd_QBuj75MT8QrXvNIJ","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-qbuj75mt8qrxvnij.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}' + body: '{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 266.200333ms + duration: 275.3235ms - id: 24 request: proto: HTTP/1.1 @@ -862,7 +862,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding method: GET response: @@ -879,7 +879,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 271.767625ms + duration: 278.386875ms - id: 25 request: proto: HTTP/1.1 @@ -897,7 +897,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains method: GET response: @@ -908,13 +908,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"custom_domain_id":"cd_QBuj75MT8QrXvNIJ","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-qbuj75mt8qrxvnij.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' + body: '[{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 273.803208ms + duration: 282.814042ms - id: 26 request: proto: HTTP/1.1 @@ -932,7 +932,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding/templates/universal-login method: GET response: @@ -949,7 +949,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 347.179917ms + duration: 337.851917ms - id: 27 request: proto: HTTP/1.1 @@ -967,8 +967,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/signup/partials + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials method: GET response: proto: HTTP/2.0 @@ -976,15 +976,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2 - uncompressed: false - body: '{}' + content_length: -1 + uncompressed: true + body: '{"login-passwordless-email-code":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
"},"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 318.08ms + duration: 279.588375ms - id: 28 request: proto: HTTP/1.1 @@ -1002,8 +1002,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/signup/partials method: GET response: proto: HTTP/2.0 @@ -1011,15 +1011,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"login-passwordless-email-code":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
"}}' + content_length: 2 + uncompressed: false + body: '{}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 318.08625ms + duration: 290.399375ms - id: 29 request: proto: HTTP/1.1 @@ -1037,8 +1037,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains/cd_QBuj75MT8QrXvNIJ + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains/cd_Yw0VSNt4k2zCAec6 method: GET response: proto: HTTP/2.0 @@ -1048,13 +1048,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"custom_domain_id":"cd_QBuj75MT8QrXvNIJ","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-qbuj75mt8qrxvnij.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}' + body: '{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 263.638042ms + duration: 326.820834ms - id: 30 request: proto: HTTP/1.1 @@ -1072,7 +1072,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding method: GET response: @@ -1089,7 +1089,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 272.211625ms + duration: 289.456791ms - id: 31 request: proto: HTTP/1.1 @@ -1107,7 +1107,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains method: GET response: @@ -1118,13 +1118,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"custom_domain_id":"cd_QBuj75MT8QrXvNIJ","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-qbuj75mt8qrxvnij.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' + body: '[{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 268.406125ms + duration: 283.88575ms - id: 32 request: proto: HTTP/1.1 @@ -1142,7 +1142,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding/templates/universal-login method: GET response: @@ -1159,7 +1159,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 325.40825ms + duration: 347.586709ms - id: 33 request: proto: HTTP/1.1 @@ -1177,8 +1177,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/signup/partials + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials method: GET response: proto: HTTP/2.0 @@ -1186,15 +1186,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2 - uncompressed: false - body: '{}' + content_length: -1 + uncompressed: true + body: '{"login-passwordless-email-code":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
"},"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.77275ms + duration: 304.177ms - id: 34 request: proto: HTTP/1.1 @@ -1212,8 +1212,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/signup/partials method: GET response: proto: HTTP/2.0 @@ -1221,15 +1221,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"login-passwordless-email-code":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
"}}' + content_length: 2 + uncompressed: false + body: '{}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.366333ms + duration: 539.852958ms - id: 35 request: proto: HTTP/1.1 @@ -1247,7 +1247,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials method: GET response: @@ -1258,13 +1258,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"login-passwordless-email-code":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
"}}' + body: '{"login-passwordless-email-code":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
"},"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 261.9695ms + duration: 306.814208ms - id: 36 request: proto: HTTP/1.1 @@ -1282,7 +1282,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login/partials method: GET response: @@ -1291,15 +1291,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"login":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
","secondary-actions-end":"
Secondary Actions End
","secondary-actions-start":"
Secondary Actions Start
"}}' + content_length: 2 + uncompressed: false + body: '{}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.048125ms + duration: 317.832708ms - id: 37 request: proto: HTTP/1.1 @@ -1318,7 +1318,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials method: PUT response: @@ -1335,7 +1335,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.928292ms + duration: 313.411959ms - id: 38 request: proto: HTTP/1.1 @@ -1354,7 +1354,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login/partials method: PUT response: @@ -1371,7 +1371,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.301541ms + duration: 329.054417ms - id: 39 request: proto: HTTP/1.1 @@ -1389,8 +1389,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login/partials method: GET response: proto: HTTP/2.0 @@ -1400,13 +1400,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"login-passwordless-email-code":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
"},"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' + body: '{"login":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
","secondary-actions-end":"
Secondary Actions End
","secondary-actions-start":"
Secondary Actions Start
"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 261.81ms + duration: 256.939834ms - id: 40 request: proto: HTTP/1.1 @@ -1424,8 +1424,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login/partials + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials method: GET response: proto: HTTP/2.0 @@ -1435,13 +1435,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"login":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
","secondary-actions-end":"
Secondary Actions End
","secondary-actions-start":"
Secondary Actions Start
"}}' + body: '{"login-passwordless-email-code":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
"},"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.189833ms + duration: 309.398209ms - id: 41 request: proto: HTTP/1.1 @@ -1459,8 +1459,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains/cd_QBuj75MT8QrXvNIJ + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains/cd_Yw0VSNt4k2zCAec6 method: GET response: proto: HTTP/2.0 @@ -1470,13 +1470,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"custom_domain_id":"cd_QBuj75MT8QrXvNIJ","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-qbuj75mt8qrxvnij.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}' + body: '{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.603375ms + duration: 279.500042ms - id: 42 request: proto: HTTP/1.1 @@ -1494,7 +1494,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding method: GET response: @@ -1511,7 +1511,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.679917ms + duration: 251.741042ms - id: 43 request: proto: HTTP/1.1 @@ -1529,7 +1529,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains method: GET response: @@ -1540,13 +1540,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"custom_domain_id":"cd_QBuj75MT8QrXvNIJ","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-qbuj75mt8qrxvnij.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' + body: '[{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 272.015125ms + duration: 394.748083ms - id: 44 request: proto: HTTP/1.1 @@ -1564,7 +1564,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding/templates/universal-login method: GET response: @@ -1581,7 +1581,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.899916ms + duration: 316.06275ms - id: 45 request: proto: HTTP/1.1 @@ -1599,8 +1599,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login/partials + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials method: GET response: proto: HTTP/2.0 @@ -1610,13 +1610,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"login":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
","secondary-actions-end":"
Secondary Actions End
","secondary-actions-start":"
Secondary Actions Start
"}}' + body: '{"login-passwordless-email-code":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
"},"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.614375ms + duration: 273.568208ms - id: 46 request: proto: HTTP/1.1 @@ -1634,8 +1634,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login/partials method: GET response: proto: HTTP/2.0 @@ -1645,13 +1645,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"login-passwordless-email-code":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
"},"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' + body: '{"login":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
","secondary-actions-end":"
Secondary Actions End
","secondary-actions-start":"
Secondary Actions Start
"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.777084ms + duration: 290.382167ms - id: 47 request: proto: HTTP/1.1 @@ -1669,7 +1669,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/signup/partials method: GET response: @@ -1686,7 +1686,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 257.369084ms + duration: 297.844625ms - id: 48 request: proto: HTTP/1.1 @@ -1704,7 +1704,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials method: GET response: @@ -1721,7 +1721,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 252.844333ms + duration: 316.689416ms - id: 49 request: proto: HTTP/1.1 @@ -1739,8 +1739,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains/cd_QBuj75MT8QrXvNIJ + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains/cd_Yw0VSNt4k2zCAec6 method: GET response: proto: HTTP/2.0 @@ -1750,13 +1750,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"custom_domain_id":"cd_QBuj75MT8QrXvNIJ","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-qbuj75mt8qrxvnij.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}' + body: '{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.960542ms + duration: 334.534ms - id: 50 request: proto: HTTP/1.1 @@ -1774,8 +1774,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding method: GET response: proto: HTTP/2.0 @@ -1785,13 +1785,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"login-passwordless-email-code":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
"},"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' + body: '{"colors":{"page_background":"#FF4F40","primary":"#2A2E35"},"favicon_url":"https://example.com/favicon.png","font":{"url":"https://example.com/font.woff"},"logo_url":"https://example.com/logo.png"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.765958ms + duration: 282.574416ms - id: 51 request: proto: HTTP/1.1 @@ -1809,8 +1809,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/signup/partials + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains method: GET response: proto: HTTP/2.0 @@ -1818,15 +1818,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2 - uncompressed: false - body: '{}' + content_length: -1 + uncompressed: true + body: '[{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.573875ms + duration: 278.480583ms - id: 52 request: proto: HTTP/1.1 @@ -1844,8 +1844,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding/templates/universal-login method: GET response: proto: HTTP/2.0 @@ -1855,13 +1855,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"colors":{"page_background":"#FF4F40","primary":"#2A2E35"},"favicon_url":"https://example.com/favicon.png","font":{"url":"https://example.com/font.woff"},"logo_url":"https://example.com/logo.png"}' + body: '{"body":"{%- auth0:head -%}{%- auth0:widget -%}"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 260.969917ms + duration: 321.792125ms - id: 53 request: proto: HTTP/1.1 @@ -1879,8 +1879,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials method: GET response: proto: HTTP/2.0 @@ -1890,13 +1890,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"custom_domain_id":"cd_QBuj75MT8QrXvNIJ","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-qbuj75mt8qrxvnij.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' + body: '{"login-passwordless-email-code":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
"},"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 264.714334ms + duration: 280.522834ms - id: 54 request: proto: HTTP/1.1 @@ -1914,8 +1914,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding/templates/universal-login + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/signup/partials method: GET response: proto: HTTP/2.0 @@ -1923,15 +1923,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"body":"{%- auth0:head -%}{%- auth0:widget -%}"}' + content_length: 2 + uncompressed: false + body: '{}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 327.019083ms + duration: 289.145792ms - id: 55 request: proto: HTTP/1.1 @@ -1949,7 +1949,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login/partials method: GET response: @@ -1966,7 +1966,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 257.512125ms + duration: 292.097084ms - id: 56 request: proto: HTTP/1.1 @@ -1984,7 +1984,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials method: GET response: @@ -2001,7 +2001,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 272.775916ms + duration: 439.308583ms - id: 57 request: proto: HTTP/1.1 @@ -2019,7 +2019,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials method: GET response: @@ -2036,63 +2036,63 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 250.89ms + duration: 307.414667ms - id: 58 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 351 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + {"login-passwordless-email-code":{"form-content-end":"\u003cdiv\u003eForm Content End\u003c/div\u003e","form-content-start":"\u003cdiv\u003eForm Content Start\u003c/div\u003e"},"login-passwordless-sms-otp":{"form-content-end":"\u003cdiv\u003eForm Content End\u003c/div\u003e","form-content-start":"\u003cdiv\u003eForm Content Start\u003c/div\u003e"}} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/signup/partials - method: GET + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2 - uncompressed: false - body: '{}' + content_length: -1 + uncompressed: true + body: '{"login-passwordless-email-code":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"},"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 265.42125ms + duration: 308.14325ms - id: 59 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 175 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {"login-passwordless-sms-otp":{"form-content-end":"\u003cdiv\u003eForm Content End\u003c/div\u003e","form-content-start":"\u003cdiv\u003eForm Content Start\u003c/div\u003e"}} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials - method: PUT + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -2101,49 +2101,48 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' + body: '{"login-passwordless-email-code":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"},"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.437708ms + duration: 283.539667ms - id: 60 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 3 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/signup/partials - method: PUT + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains/cd_Yw0VSNt4k2zCAec6 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2 - uncompressed: false - body: '{}' + content_length: -1 + uncompressed: true + body: '{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.417625ms + duration: 275.19375ms - id: 61 request: proto: HTTP/1.1 @@ -2161,8 +2160,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains/cd_QBuj75MT8QrXvNIJ + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding method: GET response: proto: HTTP/2.0 @@ -2172,13 +2171,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"custom_domain_id":"cd_QBuj75MT8QrXvNIJ","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-qbuj75mt8qrxvnij.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}' + body: '{"colors":{"page_background":"#FF4F40","primary":"#2A2E35"},"favicon_url":"https://example.com/favicon.png","font":{"url":"https://example.com/font.woff"},"logo_url":"https://example.com/logo.png"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.126125ms + duration: 274.736667ms - id: 62 request: proto: HTTP/1.1 @@ -2196,8 +2195,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains method: GET response: proto: HTTP/2.0 @@ -2207,13 +2206,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"colors":{"page_background":"#FF4F40","primary":"#2A2E35"},"favicon_url":"https://example.com/favicon.png","font":{"url":"https://example.com/font.woff"},"logo_url":"https://example.com/logo.png"}' + body: '[{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 253.24625ms + duration: 284.4845ms - id: 63 request: proto: HTTP/1.1 @@ -2231,8 +2230,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding/templates/universal-login method: GET response: proto: HTTP/2.0 @@ -2242,13 +2241,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"custom_domain_id":"cd_QBuj75MT8QrXvNIJ","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-qbuj75mt8qrxvnij.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' + body: '{"body":"{%- auth0:head -%}{%- auth0:widget -%}"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 256.410125ms + duration: 331.887833ms - id: 64 request: proto: HTTP/1.1 @@ -2266,8 +2265,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding/templates/universal-login + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials method: GET response: proto: HTTP/2.0 @@ -2277,13 +2276,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"body":"{%- auth0:head -%}{%- auth0:widget -%}"}' + body: '{"login-passwordless-email-code":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"},"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 331.221875ms + duration: 305.912042ms - id: 65 request: proto: HTTP/1.1 @@ -2301,8 +2300,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login/partials + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/signup/partials method: GET response: proto: HTTP/2.0 @@ -2310,15 +2309,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"login":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
","secondary-actions-end":"
Secondary Actions End
","secondary-actions-start":"
Secondary Actions Start
"}}' + content_length: 2 + uncompressed: false + body: '{}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 265.661042ms + duration: 305.514583ms - id: 66 request: proto: HTTP/1.1 @@ -2336,8 +2335,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login/partials method: GET response: proto: HTTP/2.0 @@ -2347,13 +2346,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' + body: '{"login":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
","secondary-actions-end":"
Secondary Actions End
","secondary-actions-start":"
Secondary Actions Start
"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.681584ms + duration: 305.9795ms - id: 67 request: proto: HTTP/1.1 @@ -2371,7 +2370,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials method: GET response: @@ -2382,13 +2381,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' + body: '{"login-passwordless-email-code":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"},"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.809708ms + duration: 306.012833ms - id: 68 request: proto: HTTP/1.1 @@ -2406,8 +2405,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/signup/partials method: GET response: proto: HTTP/2.0 @@ -2415,15 +2414,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' + content_length: 2 + uncompressed: false + body: '{}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.7045ms + duration: 368.186125ms - id: 69 request: proto: HTTP/1.1 @@ -2441,8 +2440,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains/cd_Yw0VSNt4k2zCAec6 method: GET response: proto: HTTP/2.0 @@ -2452,13 +2451,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"colors":{"page_background":"#FF4F40","primary":"#2A2E35"},"favicon_url":"https://example.com/favicon.png","font":{"url":"https://example.com/font.woff"},"logo_url":"https://example.com/logo.png"}' + body: '{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.722792ms + duration: 369.688416ms - id: 70 request: proto: HTTP/1.1 @@ -2476,8 +2475,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains/cd_QBuj75MT8QrXvNIJ + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials method: GET response: proto: HTTP/2.0 @@ -2487,13 +2486,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"custom_domain_id":"cd_QBuj75MT8QrXvNIJ","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-qbuj75mt8qrxvnij.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}' + body: '{"login-passwordless-email-code":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"},"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.293917ms + duration: 415.575625ms - id: 71 request: proto: HTTP/1.1 @@ -2511,8 +2510,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login/partials + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding method: GET response: proto: HTTP/2.0 @@ -2522,13 +2521,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"login":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
","secondary-actions-end":"
Secondary Actions End
","secondary-actions-start":"
Secondary Actions Start
"}}' + body: '{"colors":{"page_background":"#FF4F40","primary":"#2A2E35"},"favicon_url":"https://example.com/favicon.png","font":{"url":"https://example.com/font.woff"},"logo_url":"https://example.com/logo.png"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.937958ms + duration: 277.950042ms - id: 72 request: proto: HTTP/1.1 @@ -2546,7 +2545,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains method: GET response: @@ -2557,13 +2556,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"custom_domain_id":"cd_QBuj75MT8QrXvNIJ","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-qbuj75mt8qrxvnij.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' + body: '[{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.481083ms + duration: 389.868542ms - id: 73 request: proto: HTTP/1.1 @@ -2581,7 +2580,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding/templates/universal-login method: GET response: @@ -2598,7 +2597,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 325.453709ms + duration: 350.821ms - id: 74 request: proto: HTTP/1.1 @@ -2616,7 +2615,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login/partials method: GET response: @@ -2633,7 +2632,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 272.8615ms + duration: 298.514458ms - id: 75 request: proto: HTTP/1.1 @@ -2651,7 +2650,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials method: GET response: @@ -2662,70 +2661,68 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' + body: '{"login-passwordless-email-code":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"},"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 315.305416ms + duration: 299.875292ms - id: 76 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 3 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login/partials - method: PUT + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2 - uncompressed: false - body: '{}' + content_length: -1 + uncompressed: true + body: '{"login-passwordless-email-code":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"},"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 383.445084ms + duration: 275.459416ms - id: 77 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 3 + content_length: 0 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: | - {} + body: "" form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials - method: PUT + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/signup/partials + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -2740,27 +2737,28 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 340.74075ms + duration: 290.502167ms - id: 78 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 175 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + {"login-passwordless-sms-otp":{"form-content-end":"\u003cdiv\u003eForm Content End\u003c/div\u003e","form-content-start":"\u003cdiv\u003eForm Content Start\u003c/div\u003e"}} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains - method: GET + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials + method: PUT response: proto: HTTP/2.0 proto_major: 2 @@ -2769,48 +2767,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '[{"custom_domain_id":"cd_QBuj75MT8QrXvNIJ","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-qbuj75mt8qrxvnij.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' + body: '{"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.142792ms + duration: 283.839416ms - id: 79 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 3 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + {} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding/templates/universal-login - method: DELETE + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/signup/partials + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2 uncompressed: false - body: "" + body: '{}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 607.110834ms + status: 200 OK + code: 200 + duration: 295.022ms - id: 80 request: proto: HTTP/1.1 @@ -2828,24 +2827,24 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains/cd_QBuj75MT8QrXvNIJ - method: DELETE + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains/cd_Yw0VSNt4k2zCAec6 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 911.111625ms + status: 200 OK + code: 200 + duration: 279.445125ms - id: 81 request: proto: HTTP/1.1 @@ -2863,8 +2862,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding method: GET response: proto: HTTP/2.0 @@ -2872,15 +2871,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2 - uncompressed: false - body: '{}' + content_length: -1 + uncompressed: true + body: '{"colors":{"page_background":"#FF4F40","primary":"#2A2E35"},"favicon_url":"https://example.com/favicon.png","font":{"url":"https://example.com/font.woff"},"logo_url":"https://example.com/logo.png"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 263.959166ms + duration: 281.221208ms - id: 82 request: proto: HTTP/1.1 @@ -2898,7 +2897,674 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.10.0 + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 274.033083ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding/templates/universal-login + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"body":"{%- auth0:head -%}{%- auth0:widget -%}"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 314.272334ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login/partials + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"login":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
","secondary-actions-end":"
Secondary Actions End
","secondary-actions-start":"
Secondary Actions Start
"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 275.435958ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 298.711291ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains/cd_Yw0VSNt4k2zCAec6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 291.686292ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"colors":{"page_background":"#FF4F40","primary":"#2A2E35"},"favicon_url":"https://example.com/favicon.png","font":{"url":"https://example.com/font.woff"},"logo_url":"https://example.com/logo.png"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 298.123375ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 300.466125ms + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 300.191083ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login/partials + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"login":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
","secondary-actions-end":"
Secondary Actions End
","secondary-actions-start":"
Secondary Actions Start
"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 304.046583ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 258.969459ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding/templates/universal-login + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"body":"{%- auth0:head -%}{%- auth0:widget -%}"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 308.902291ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login/partials + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"login":{"form-footer-end":"
Form Footer End
","form-content-end":"
Form Content End
","form-footer-start":"
Form Footer Start
","form-content-start":"
Form Content Start
","secondary-actions-end":"
Secondary Actions End
","secondary-actions-start":"
Secondary Actions Start
"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 282.522083ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"login-passwordless-sms-otp":{"form-content-end":"
Form Content End
","form-content-start":"
Form Content Start
"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 369.357583ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 3 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login/partials + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2 + uncompressed: false + body: '{}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 299.777375ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 3 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials + method: PUT + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2 + uncompressed: false + body: '{}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 316.805625ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '[{"custom_domain_id":"cd_Yw0VSNt4k2zCAec6","domain":"auth.terraform-provider-auth0.com","primary":true,"status":"pending_verification","type":"auth0_managed_certs","verification":{"methods":[{"name":"CNAME","record":"terraform-provider-auth0-dev-cd-yw0vsnt4k2zcaec6.edge.tenants.us.auth0.com","domain":"auth.terraform-provider-auth0.com"}]},"tls_policy":"recommended"}]' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 277.295875ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/branding/templates/universal-login + 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: 391.77775ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/custom-domains/cd_Yw0VSNt4k2zCAec6 + 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: 1.398036667s + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.11.0 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2 + uncompressed: false + body: '{}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 312.286583ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.11.0 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/prompts/login-passwordless/partials method: GET response: @@ -2915,4 +3581,4 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.083625ms + duration: 399.651458ms