diff --git a/internal/services/tem/domain_test.go b/internal/services/tem/domain_test.go
index 48f3ae324..8a5314298 100644
--- a/internal/services/tem/domain_test.go
+++ b/internal/services/tem/domain_test.go
@@ -73,6 +73,7 @@ func TestAccDomain_Tos(t *testing.T) {
func TestAccDomain_Autoconfig(t *testing.T) {
tt := acctest.NewTestTools(t)
defer tt.Cleanup()
+ subDomainName := "test-autoconfig"
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { acctest.PreCheck(t) },
@@ -81,8 +82,14 @@ func TestAccDomain_Autoconfig(t *testing.T) {
Steps: []resource.TestStep{
{
Config: fmt.Sprintf(`
+
+ resource "scaleway_domain_zone" "test" {
+ domain = "%s"
+ subdomain = "%s"
+ }
+
resource scaleway_tem_domain cr01 {
- name = "%s"
+ name = scaleway_domain_zone.test.id
accept_tos = true
autoconfig = true
}
@@ -93,13 +100,13 @@ func TestAccDomain_Autoconfig(t *testing.T) {
timeout = 3600
}
- `, domainNameValidation),
+ `, domainNameValidation, subDomainName),
Check: resource.ComposeTestCheckFunc(
isDomainPresent(tt, "scaleway_tem_domain.cr01"),
- resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "name", domainNameValidation),
+ resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "name", subDomainName+"."+domainNameValidation),
resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "autoconfig", "true"),
resource.TestCheckResourceAttrSet("scaleway_tem_domain.cr01", "dmarc_config"),
- resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "dmarc_name", "_dmarc"),
+ resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "dmarc_name", "_dmarc"+"."+subDomainName),
resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "last_error", ""), // last_error is deprecated
acctest.CheckResourceAttrUUID("scaleway_tem_domain.cr01", "id"),
resource.TestCheckResourceAttr("scaleway_tem_domain_validation.valid", "validated", "true"),
@@ -112,6 +119,7 @@ func TestAccDomain_Autoconfig(t *testing.T) {
func TestAccDomain_AutoconfigUpdate(t *testing.T) {
tt := acctest.NewTestTools(t)
defer tt.Cleanup()
+ subDomainName := "test-autoconfig-update"
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { acctest.PreCheck(t) },
@@ -120,41 +128,45 @@ func TestAccDomain_AutoconfigUpdate(t *testing.T) {
Steps: []resource.TestStep{
{
Config: fmt.Sprintf(`
+ resource "scaleway_domain_zone" "test" {
+ domain = "%s"
+ subdomain = "%s"
+ }
+
resource scaleway_tem_domain cr01 {
- name = "%s"
+ name = scaleway_domain_zone.test.id
accept_tos = true
autoconfig = false
}
- `, domainNameValidation),
+ `, domainNameValidation, subDomainName),
Check: resource.ComposeTestCheckFunc(
isDomainPresent(tt, "scaleway_tem_domain.cr01"),
- resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "name", domainNameValidation),
+ resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "name", subDomainName+"."+domainNameValidation),
resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "autoconfig", "false"),
resource.TestCheckResourceAttrSet("scaleway_tem_domain.cr01", "dmarc_config"),
- resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "dmarc_name", "_dmarc"),
+ resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "dmarc_name", "_dmarc"+"."+subDomainName),
resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "last_error", ""), // last_error is deprecated
acctest.CheckResourceAttrUUID("scaleway_tem_domain.cr01", "id"),
),
},
{
Config: fmt.Sprintf(`
+ resource "scaleway_domain_zone" "test" {
+ domain = "%s"
+ subdomain = "%s"
+ }
+
resource scaleway_tem_domain cr01 {
- name = "%s"
+ name = scaleway_domain_zone.test.id
accept_tos = true
autoconfig = true
}
- resource scaleway_tem_domain_validation valid {
- domain_id = scaleway_tem_domain.cr01.id
- region = scaleway_tem_domain.cr01.region
- timeout = 3600
- }
- `, domainNameValidation),
+ `, domainNameValidation, subDomainName),
Check: resource.ComposeTestCheckFunc(
isDomainPresent(tt, "scaleway_tem_domain.cr01"),
resource.TestCheckResourceAttr("scaleway_tem_domain.cr01", "autoconfig", "true"),
- resource.TestCheckResourceAttr("scaleway_tem_domain_validation.valid", "validated", "true"),
),
},
},
diff --git a/internal/services/tem/domain_validation_test.go b/internal/services/tem/domain_validation_test.go
index 977f9bf7f..ec4a64228 100644
--- a/internal/services/tem/domain_validation_test.go
+++ b/internal/services/tem/domain_validation_test.go
@@ -13,6 +13,7 @@ const domainNameValidation = "scaleway-terraform.com"
func TestAccDomainValidation_NoValidation(t *testing.T) {
tt := acctest.NewTestTools(t)
defer tt.Cleanup()
+ subDomainName := "validation-no-validation"
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { acctest.PreCheck(t) },
@@ -21,8 +22,14 @@ func TestAccDomainValidation_NoValidation(t *testing.T) {
Steps: []resource.TestStep{
{
Config: fmt.Sprintf(`
+
+ resource "scaleway_domain_zone" "test" {
+ domain = "%s"
+ subdomain = "%s"
+ }
+
resource scaleway_tem_domain cr01 {
- name = "%s"
+ name = scaleway_domain_zone.test.id
accept_tos = true
}
@@ -31,7 +38,7 @@ func TestAccDomainValidation_NoValidation(t *testing.T) {
region = scaleway_tem_domain.cr01.region
timeout = 1
}
- `, domainNameValidation),
+ `, domainNameValidation, subDomainName),
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr("scaleway_tem_domain_validation.valid", "validated", "false"),
),
@@ -43,6 +50,7 @@ func TestAccDomainValidation_NoValidation(t *testing.T) {
func TestAccDomainValidation_Validation(t *testing.T) {
tt := acctest.NewTestTools(t)
defer tt.Cleanup()
+ subDomainName := "validation-validation"
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { acctest.PreCheck(t) },
@@ -51,8 +59,14 @@ func TestAccDomainValidation_Validation(t *testing.T) {
Steps: []resource.TestStep{
{
Config: fmt.Sprintf(`
+
+ resource "scaleway_domain_zone" "test" {
+ domain = "%s"
+ subdomain = "%s"
+ }
+
resource scaleway_tem_domain cr01 {
- name = "%s"
+ name = scaleway_domain_zone.test.id
accept_tos = true
autoconfig = true
}
@@ -62,7 +76,7 @@ func TestAccDomainValidation_Validation(t *testing.T) {
region = scaleway_tem_domain.cr01.region
timeout = 3600
}
- `, domainNameValidation),
+ `, domainNameValidation, subDomainName),
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr("scaleway_tem_domain_validation.valid", "validated", "true"),
),
diff --git a/internal/services/tem/testdata/data-source-domain-basic.cassette.yaml b/internal/services/tem/testdata/data-source-domain-basic.cassette.yaml
index 28a7ea1a3..98a611c7f 100644
--- a/internal/services/tem/testdata/data-source-domain-basic.cassette.yaml
+++ b/internal/services/tem/testdata/data-source-domain-basic.cassette.yaml
@@ -6,19 +6,19 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 111
+ content_length: 130
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"terraform-ds.test.local","accept_tos":true}'
+ body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"terraform-ds.test.local","accept_tos":true,"autoconfig":false}'
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains
method: POST
response:
@@ -27,20 +27,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1132
+ content_length: 1173
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.256307361Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud; ruf=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:02.020370798Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1132"
+ - "1173"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:51 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -48,10 +48,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5341a802-5788-4bbb-bcde-95879416e3c5
+ - 939e2582-514d-47ea-9ae6-51891ea27221
status: 200 OK
code: 200
- duration: 299.982913ms
+ duration: 529.135935ms
- id: 1
request:
proto: HTTP/1.1
@@ -67,8 +67,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6516a91c-c751-47e5-8970-8ab331f09c91
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c
method: GET
response:
proto: HTTP/2.0
@@ -76,20 +76,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1129
+ content_length: 1173
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud; ruf=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:02.043968598Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1129"
+ - "1173"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:51 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -97,10 +97,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1fdc9477-3039-4a24-8c59-bc8f1db2bf04
+ - 9d0763fe-fdf8-4d4d-9560-ff92b76939bf
status: 200 OK
code: 200
- duration: 30.755013ms
+ duration: 56.346579ms
- id: 2
request:
proto: HTTP/1.1
@@ -116,8 +116,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=terraform-ds.test.local
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c
method: GET
response:
proto: HTTP/2.0
@@ -125,20 +125,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 971
+ content_length: 1173
uncompressed: false
- body: '{"domains":[{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}],"total_count":1}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:02.121253892Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "971"
+ - "1173"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:51 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -146,10 +146,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 203816e6-e198-4443-b181-b95aaf6420b3
+ - 30af1551-d398-4ac0-a922-723d5d98ffa9
status: 200 OK
code: 200
- duration: 59.836902ms
+ duration: 21.710575ms
- id: 3
request:
proto: HTTP/1.1
@@ -165,8 +165,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6516a91c-c751-47e5-8970-8ab331f09c91
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=terraform-ds.test.local
method: GET
response:
proto: HTTP/2.0
@@ -174,20 +174,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1129
+ content_length: 1204
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud; ruf=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:02.243328063Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}],"total_count":1}'
headers:
Content-Length:
- - "1129"
+ - "1204"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:51 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -195,10 +195,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f8563237-7d60-4822-b694-5d7581a16b21
+ - 15cf8d9b-f754-4462-a9f0-8b325f5393d8
status: 200 OK
code: 200
- duration: 74.687761ms
+ duration: 144.181043ms
- id: 4
request:
proto: HTTP/1.1
@@ -214,8 +214,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6516a91c-c751-47e5-8970-8ab331f09c91
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c
method: GET
response:
proto: HTTP/2.0
@@ -223,20 +223,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1129
+ content_length: 1173
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud; ruf=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:02.266652109Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1129"
+ - "1173"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:51 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -244,10 +244,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5e262d51-5445-4faf-a42f-2bb535b5f229
+ - 4052eb12-77ef-4998-a04c-75ea4374c81c
status: 200 OK
code: 200
- duration: 44.56721ms
+ duration: 24.404118ms
- id: 5
request:
proto: HTTP/1.1
@@ -263,8 +263,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6516a91c-c751-47e5-8970-8ab331f09c91
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c
method: GET
response:
proto: HTTP/2.0
@@ -272,20 +272,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1129
+ content_length: 1173
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud; ruf=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:02.421180533Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1129"
+ - "1173"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:51 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -293,10 +293,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 842b888f-8032-4bdd-bfe0-84e0893404be
+ - a98e9940-c50a-42a5-91f8-55d66c058b4b
status: 200 OK
code: 200
- duration: 53.551594ms
+ duration: 31.772765ms
- id: 6
request:
proto: HTTP/1.1
@@ -312,8 +312,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6516a91c-c751-47e5-8970-8ab331f09c91
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c
method: GET
response:
proto: HTTP/2.0
@@ -321,20 +321,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1129
+ content_length: 1173
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud; ruf=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:02.449860852Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1129"
+ - "1173"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:51 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -342,10 +342,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8e5da8f2-467d-460c-9a3b-4f0a57598bbe
+ - c63d44da-3041-4a51-97b6-a4023c4ac281
status: 200 OK
code: 200
- duration: 30.555081ms
+ duration: 22.889439ms
- id: 7
request:
proto: HTTP/1.1
@@ -361,8 +361,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6516a91c-c751-47e5-8970-8ab331f09c91
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c
method: GET
response:
proto: HTTP/2.0
@@ -370,20 +370,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1129
+ content_length: 1173
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud; ruf=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:02.602178401Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1129"
+ - "1173"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:52 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -391,10 +391,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2f3d7c0d-238f-42b8-b4d1-1920c6d41088
+ - 18a30c9a-bfde-43d0-9f30-9fa59e2eff46
status: 200 OK
code: 200
- duration: 27.180064ms
+ duration: 23.041731ms
- id: 8
request:
proto: HTTP/1.1
@@ -410,7 +410,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=terraform-ds.test.local
method: GET
response:
@@ -419,20 +419,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 971
+ content_length: 1204
uncompressed: false
- body: '{"domains":[{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}],"total_count":1}'
+ body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:02.667442191Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}],"total_count":1}'
headers:
Content-Length:
- - "971"
+ - "1204"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:52 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -440,10 +440,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d5a2fe10-b335-4f69-bdad-c92dd02a96c7
+ - 9e348d1b-e1d4-4d99-8e16-b388476e2a76
status: 200 OK
code: 200
- duration: 31.351373ms
+ duration: 91.910437ms
- id: 9
request:
proto: HTTP/1.1
@@ -459,8 +459,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6516a91c-c751-47e5-8970-8ab331f09c91
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c
method: GET
response:
proto: HTTP/2.0
@@ -468,20 +468,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1129
+ content_length: 1173
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud; ruf=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:02.694631303Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1129"
+ - "1173"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:52 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -489,10 +489,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0bddcb4d-7b2a-4b4c-aa61-91d2b3bba5b6
+ - 9c87ed09-b39c-424b-a0ef-a9db4ad0aa4a
status: 200 OK
code: 200
- duration: 26.787595ms
+ duration: 22.811585ms
- id: 10
request:
proto: HTTP/1.1
@@ -508,8 +508,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6516a91c-c751-47e5-8970-8ab331f09c91
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c
method: GET
response:
proto: HTTP/2.0
@@ -517,20 +517,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1129
+ content_length: 1173
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud; ruf=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:03.135645333Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1129"
+ - "1173"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:52 GMT
+ - Fri, 20 Sep 2024 13:01:03 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -538,10 +538,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ac469410-7874-417b-b2ba-50f6b6dba82d
+ - c78f5bb3-91d0-4dc7-9ede-13a07b3ff9ab
status: 200 OK
code: 200
- duration: 33.676449ms
+ duration: 224.373746ms
- id: 11
request:
proto: HTTP/1.1
@@ -557,8 +557,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6516a91c-c751-47e5-8970-8ab331f09c91
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c
method: GET
response:
proto: HTTP/2.0
@@ -566,20 +566,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1129
+ content_length: 1173
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud; ruf=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:03.163302970Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1129"
+ - "1173"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:52 GMT
+ - Fri, 20 Sep 2024 13:01:03 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -587,10 +587,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 20bf55ae-e83c-4149-bb91-0331f9ebaa1b
+ - 12e1c242-ab0c-4610-9b48-4babb7c2212a
status: 200 OK
code: 200
- duration: 36.432458ms
+ duration: 53.102727ms
- id: 12
request:
proto: HTTP/1.1
@@ -606,7 +606,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=terraform-ds.test.local
method: GET
response:
@@ -615,20 +615,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 971
+ content_length: 1204
uncompressed: false
- body: '{"domains":[{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}],"total_count":1}'
+ body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:03.329440826Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}],"total_count":1}'
headers:
Content-Length:
- - "971"
+ - "1204"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:52 GMT
+ - Fri, 20 Sep 2024 13:01:03 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -636,10 +636,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c2713901-1dc1-4f01-b919-fc3baa4880ea
+ - 9f5a90d8-258e-45cd-9b2c-83dc2f2596aa
status: 200 OK
code: 200
- duration: 56.828622ms
+ duration: 188.437146ms
- id: 13
request:
proto: HTTP/1.1
@@ -655,8 +655,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6516a91c-c751-47e5-8970-8ab331f09c91
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c
method: GET
response:
proto: HTTP/2.0
@@ -664,20 +664,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1129
+ content_length: 1173
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud; ruf=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:03.351745348Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1129"
+ - "1173"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:52 GMT
+ - Fri, 20 Sep 2024 13:01:03 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -685,10 +685,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4b029eb9-537a-4d31-98a5-35ecaa5cd737
+ - 82b020bb-c09b-4db7-beeb-62737475885d
status: 200 OK
code: 200
- duration: 54.836981ms
+ duration: 21.750537ms
- id: 14
request:
proto: HTTP/1.1
@@ -704,7 +704,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=terraform-ds.test.local
method: GET
response:
@@ -713,20 +713,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 971
+ content_length: 1204
uncompressed: false
- body: '{"domains":[{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}],"total_count":1}'
+ body: '{"domains":[{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:03.622625691Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}],"total_count":1}'
headers:
Content-Length:
- - "971"
+ - "1204"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:53 GMT
+ - Fri, 20 Sep 2024 13:01:03 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -734,10 +734,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 300f330c-e70b-476a-9d35-cc1989f09d84
+ - 309bdb5c-9754-47ce-9426-1941e9953297
status: 200 OK
code: 200
- duration: 56.27715ms
+ duration: 153.870014ms
- id: 15
request:
proto: HTTP/1.1
@@ -753,8 +753,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6516a91c-c751-47e5-8970-8ab331f09c91
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c
method: GET
response:
proto: HTTP/2.0
@@ -762,20 +762,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1129
+ content_length: 1173
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud; ruf=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:03.639433156Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1129"
+ - "1173"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:53 GMT
+ - Fri, 20 Sep 2024 13:01:03 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -783,10 +783,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 78e6e94d-2010-4eae-bc3d-b755ca7cd3d4
+ - 93240611-8c4a-489d-b8c6-a10196b0cb63
status: 200 OK
code: 200
- duration: 64.040824ms
+ duration: 172.322093ms
- id: 16
request:
proto: HTTP/1.1
@@ -802,8 +802,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6516a91c-c751-47e5-8970-8ab331f09c91
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c
method: GET
response:
proto: HTTP/2.0
@@ -811,20 +811,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1129
+ content_length: 1173
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud; ruf=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:03.649881649Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1129"
+ - "1173"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:53 GMT
+ - Fri, 20 Sep 2024 13:01:03 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -832,10 +832,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 19b41b1f-37a7-4905-bab5-3f00b42a66c4
+ - 185cad2d-a957-4a6c-a999-8a971185c7c4
status: 200 OK
code: 200
- duration: 26.504547ms
+ duration: 59.670147ms
- id: 17
request:
proto: HTTP/1.1
@@ -851,8 +851,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6516a91c-c751-47e5-8970-8ab331f09c91
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c
method: GET
response:
proto: HTTP/2.0
@@ -860,20 +860,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1129
+ content_length: 1173
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud; ruf=mailto:797e772f-b030-4c29-b767-67ead8d821a9@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-ds","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:04.207739006Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1129"
+ - "1173"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:53 GMT
+ - Fri, 20 Sep 2024 13:01:04 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -881,10 +881,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 37ead2d4-4ff0-477a-bd62-e4650d69aad7
+ - adc39bf3-2d76-4891-b15d-a91262234e61
status: 200 OK
code: 200
- duration: 30.948667ms
+ duration: 195.691198ms
- id: 18
request:
proto: HTTP/1.1
@@ -902,8 +902,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6516a91c-c751-47e5-8970-8ab331f09c91/revoke
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c/revoke
method: POST
response:
proto: HTTP/2.0
@@ -911,20 +911,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 941
+ content_length: 979
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-04-10T13:29:54.242277452Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-20T13:01:04.876039127Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "941"
+ - "979"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:54 GMT
+ - Fri, 20 Sep 2024 13:01:04 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -932,10 +932,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9722f6a8-eb80-4c72-bbf2-1b70aa570a21
+ - 12f7aafd-229d-4f3f-9b56-00794311778a
status: 200 OK
code: 200
- duration: 416.634143ms
+ duration: 670.567403ms
- id: 19
request:
proto: HTTP/1.1
@@ -951,8 +951,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6516a91c-c751-47e5-8970-8ab331f09c91
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c
method: GET
response:
proto: HTTP/2.0
@@ -960,20 +960,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 938
+ content_length: 1132
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-04-10T13:29:54.242277Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:05.052441037Z","status":"excellent"},"revoked_at":"2024-09-20T13:01:04.876039Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "938"
+ - "1132"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:54 GMT
+ - Fri, 20 Sep 2024 13:01:05 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -981,10 +981,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 90ede6fc-1dc2-4614-812b-51bff93dfb53
+ - 47564954-9492-48e5-b9b7-d37d17180353
status: 200 OK
code: 200
- duration: 55.946594ms
+ duration: 197.207827ms
- id: 20
request:
proto: HTTP/1.1
@@ -1002,8 +1002,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6516a91c-c751-47e5-8970-8ab331f09c91/revoke
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c/revoke
method: POST
response:
proto: HTTP/2.0
@@ -1011,20 +1011,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 938
+ content_length: 976
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-04-10T13:29:54.242277Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-20T13:01:04.876039Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "938"
+ - "976"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:54 GMT
+ - Fri, 20 Sep 2024 13:01:05 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1032,10 +1032,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 21232e68-5db3-424c-ab1f-d4c140135b50
+ - d8571cbf-e6c8-43de-9f04-cc355bb56d33
status: 200 OK
code: 200
- duration: 60.21511ms
+ duration: 64.44296ms
- id: 21
request:
proto: HTTP/1.1
@@ -1051,8 +1051,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6516a91c-c751-47e5-8970-8ab331f09c91
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c
method: GET
response:
proto: HTTP/2.0
@@ -1060,20 +1060,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 938
+ content_length: 1132
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-04-10T13:29:54.242277Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:05.223145908Z","status":"excellent"},"revoked_at":"2024-09-20T13:01:04.876039Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "938"
+ - "1132"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:54 GMT
+ - Fri, 20 Sep 2024 13:01:05 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1081,10 +1081,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ee048627-d472-4847-a912-199d6c3ac2fe
+ - c83154ee-dce0-4abc-9b72-fa72eb65d979
status: 200 OK
code: 200
- duration: 30.447714ms
+ duration: 24.536238ms
- id: 22
request:
proto: HTTP/1.1
@@ -1102,8 +1102,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6516a91c-c751-47e5-8970-8ab331f09c91/revoke
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c/revoke
method: POST
response:
proto: HTTP/2.0
@@ -1111,20 +1111,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 938
+ content_length: 976
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-04-10T13:29:54.242277Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-20T13:01:04.876039Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "938"
+ - "976"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:54 GMT
+ - Fri, 20 Sep 2024 13:01:05 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1132,10 +1132,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3cb1e89f-ab54-4646-9af2-d7f2dd5f9310
+ - 2d520d9d-3921-4dbb-8ae5-ff9c43d09324
status: 200 OK
code: 200
- duration: 52.653693ms
+ duration: 84.86753ms
- id: 23
request:
proto: HTTP/1.1
@@ -1151,8 +1151,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6516a91c-c751-47e5-8970-8ab331f09c91
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c
method: GET
response:
proto: HTTP/2.0
@@ -1160,20 +1160,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 938
+ content_length: 1132
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-04-10T13:29:54.242277Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:05.330298641Z","status":"excellent"},"revoked_at":"2024-09-20T13:01:04.876039Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "938"
+ - "1132"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:54 GMT
+ - Fri, 20 Sep 2024 13:01:05 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1181,10 +1181,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9afe216b-01eb-425a-bc03-5efbb7745c6c
+ - e8cea170-ade8-4a2f-95e7-17723e38bd63
status: 200 OK
code: 200
- duration: 57.965828ms
+ duration: 21.376522ms
- id: 24
request:
proto: HTTP/1.1
@@ -1202,8 +1202,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6516a91c-c751-47e5-8970-8ab331f09c91/revoke
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c/revoke
method: POST
response:
proto: HTTP/2.0
@@ -1211,20 +1211,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 938
+ content_length: 976
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-04-10T13:29:54.242277Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-20T13:01:04.876039Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "938"
+ - "976"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:54 GMT
+ - Fri, 20 Sep 2024 13:01:05 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1232,10 +1232,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2bcfacdb-b4f2-4761-b976-e2704a363906
+ - 4ed6034e-1cbf-41c6-97b8-de713b9ecf47
status: 200 OK
code: 200
- duration: 25.195955ms
+ duration: 22.508556ms
- id: 25
request:
proto: HTTP/1.1
@@ -1251,8 +1251,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6516a91c-c751-47e5-8970-8ab331f09c91
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/716b423b-4801-4f1a-86f4-d89b9576664c
method: GET
response:
proto: HTTP/2.0
@@ -1260,20 +1260,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 938
+ content_length: 1132
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.256307Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0U4HyMkTJ5gP0c8kZk65afiCaxEI8+8bbTQebdEFVK8GTCKVxiKd0hN3DXDAfTJiZE2ZiYa3UcOmQANErrutg/CcCYAC4IVSNlv9fBKTRW/915zgRaw4t77ldbZOJpKvXTSP3wBgZwj7FzgvasLMyr6XtgxFdRTi0mBngN3hP5omtvvNBujeVtwRufnBvq70OsbHhYr8XYxDrCVacaTe69PF6QYjBdlibwK+4XgCcaUJ/1X8mFD4qgghcur4wNIP90uJZsLoqbGCSfET6rHU/x7mw+z23iPN3aPWn5h71gWWH+8E4b4/c4Wu9L2mjht+QA9Oh2l84FMBISnXT946UQIDAQAB","id":"6516a91c-c751-47e5-8970-8ab331f09c91","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-04-10T13:29:54.242277Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.983093Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyqstL2/AIrF8r6b4gIUA4jCOnLQjxuNzsOt/XOH3CxLWt4jx0PUq8g1/8T+lCqnhDHD5jNUKfSTwnZS6mdpgIoyX/VRB7qbNrLsiYjL1obu5XcVS0QTUtKMB3Z8HF2e9mGk4ds6WsYZzRuC0uI936V6zANe7OvTi1Q183YZy/AlYUkRhu4qtlvOXSwkkF7t1qYD2M9HN3lGEc3zN3hpgP9B2jCQaZN/Rcfgd/0l2yF9S2wfmavsjrBcN8ygnMJXXieHyrhDtM4dp2lWwn1qMkE3p8n+bxcqAFjDdykCkaMXamLsZd/B0UqG3GsDl7yQBBr7ckmGZ0iGl6FkGCdDXbwIDAQAB","id":"716b423b-4801-4f1a-86f4-d89b9576664c","last_error":null,"last_valid_at":null,"name":"terraform-ds.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:05.525138788Z","status":"excellent"},"revoked_at":"2024-09-20T13:01:04.876039Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "938"
+ - "1132"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:54 GMT
+ - Fri, 20 Sep 2024 13:01:05 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1281,7 +1281,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bfb8ae6c-8041-4023-90c1-0dd5e5be87fb
+ - 92ab91a1-4083-4be4-a9b7-38dfa302072a
status: 200 OK
code: 200
- duration: 46.671039ms
+ duration: 174.288085ms
diff --git a/internal/services/tem/testdata/data-source-domain-reputation.cassette.yaml b/internal/services/tem/testdata/data-source-domain-reputation.cassette.yaml
index fc6457a1b..6a38329cd 100644
--- a/internal/services/tem/testdata/data-source-domain-reputation.cassette.yaml
+++ b/internal/services/tem/testdata/data-source-domain-reputation.cassette.yaml
@@ -16,7 +16,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=test.scaleway-terraform.com
method: GET
response:
@@ -25,20 +25,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1240
+ content_length: 1574
uncompressed: false
- body: '{"domains":[{"created_at":"2024-04-10T13:24:21.147103Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr/tg7KhtPiB62NCTyMGMPeB4apucEO3IPRbgPMsnrFF2thjbweWym/JudVPS27fhKHDLSDbEFtI6vm8Q9ek68P6fnSbdb3w8+Ep5ibKgprRArak44WREizScmMGbrrKGlGvMHfg0hEf1/5MSNOwxQGF2sHQPMh2EOo+iJnjZUuJ37xp7idPzhaZTDnfVmM+5of1hF6aoOHa0j0V14pHvUz5+6+aWTtkxaY0tBu9AuFH8BcdvCtlbxdrG3D/+QZivGGT/K6KIA0L+5cjgCcVaRbRO2cxQMBAdbYMlm8jWUA+Avo/+ymuCeG2kH6k0gkoqIycAEdIvvf24lWscGMXVnwIDAQAB","id":"2ae851aa-8d71-4cc8-beeb-7e277c310ce6","last_error":"failed lookup for TXT record on the DMARC selector \"_dmarc.test.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-04-10T13:28:10.152230Z","name":"test.scaleway-terraform.com","next_check_at":"2024-04-11T13:32:46.152230Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-04-10T13:28:10.828367Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}],"total_count":1}'
+ body: '{"domains":[{"autoconfig":false,"created_at":"2024-06-19T12:32:14.322793Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArg/nHma2hlOo5qO1Lel+G7/CvVoZq1Li7ne5862GmxKa77/rx4NLN7bW7dRkuoZI766wXTKGDxpOro5Z1IzLcwqu9rDZbMWpP819BYAAsDEp/eeE9ZLTbTAQm664E7JX3WKjwiOLHDNiHPyLEAoFCOun21Zj3SqFCw20RnoP1QzQ9986hEVyEJrVClMKdovDQlZ7/kZ4CmeM+Ll7EiM49x72RfYLf0O/4P/CoI5eDy6Q0UWpIBhjBMT6dWB7a3kZGHLPM2LBDJtCH8FEfWAOX1VT22X/p4Wx0SXcWf2nYzUuzttZ7W4ILKdnx2PXeME4WJjiN6ziudW/qO9W3E3UPQIDAQAB","id":"93db00e3-9a97-4b53-9fd2-30ccd6dd4044","last_error":"failed lookup for TXT SPF record: nxdomain\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.test.scaleway-terraform.com\": nxdomain\nfailed lookup for MX record on the domain: nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-06-24T15:03:30.236948Z","name":"test.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":100,"previous_scored_at":"2024-09-12T14:26:53.515523Z","score":100,"scored_at":"2024-09-19T15:06:44.236424Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"invalid"}],"total_count":1}'
headers:
Content-Length:
- - "1240"
+ - "1574"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:49 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -46,10 +46,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a5c2b7ed-766d-4aa6-b03c-b764d32759a5
+ - 344b5f90-327b-4d00-a17d-47691c52f88c
status: 200 OK
code: 200
- duration: 106.820334ms
+ duration: 252.169695ms
- id: 1
request:
proto: HTTP/1.1
@@ -65,8 +65,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/2ae851aa-8d71-4cc8-beeb-7e277c310ce6
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/93db00e3-9a97-4b53-9fd2-30ccd6dd4044
method: GET
response:
proto: HTTP/2.0
@@ -74,20 +74,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1398
+ content_length: 1543
uncompressed: false
- body: '{"created_at":"2024-04-10T13:24:21.147103Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr/tg7KhtPiB62NCTyMGMPeB4apucEO3IPRbgPMsnrFF2thjbweWym/JudVPS27fhKHDLSDbEFtI6vm8Q9ek68P6fnSbdb3w8+Ep5ibKgprRArak44WREizScmMGbrrKGlGvMHfg0hEf1/5MSNOwxQGF2sHQPMh2EOo+iJnjZUuJ37xp7idPzhaZTDnfVmM+5of1hF6aoOHa0j0V14pHvUz5+6+aWTtkxaY0tBu9AuFH8BcdvCtlbxdrG3D/+QZivGGT/K6KIA0L+5cjgCcVaRbRO2cxQMBAdbYMlm8jWUA+Avo/+ymuCeG2kH6k0gkoqIycAEdIvvf24lWscGMXVnwIDAQAB","id":"2ae851aa-8d71-4cc8-beeb-7e277c310ce6","last_error":"failed lookup for TXT record on the DMARC selector \"_dmarc.test.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-04-10T13:28:10.152230Z","name":"test.scaleway-terraform.com","next_check_at":"2024-04-11T13:32:46.152230Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud; ruf=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-04-10T13:28:10.828367Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"autoconfig":false,"created_at":"2024-06-19T12:32:14.322793Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArg/nHma2hlOo5qO1Lel+G7/CvVoZq1Li7ne5862GmxKa77/rx4NLN7bW7dRkuoZI766wXTKGDxpOro5Z1IzLcwqu9rDZbMWpP819BYAAsDEp/eeE9ZLTbTAQm664E7JX3WKjwiOLHDNiHPyLEAoFCOun21Zj3SqFCw20RnoP1QzQ9986hEVyEJrVClMKdovDQlZ7/kZ4CmeM+Ll7EiM49x72RfYLf0O/4P/CoI5eDy6Q0UWpIBhjBMT6dWB7a3kZGHLPM2LBDJtCH8FEfWAOX1VT22X/p4Wx0SXcWf2nYzUuzttZ7W4ILKdnx2PXeME4WJjiN6ziudW/qO9W3E3UPQIDAQAB","id":"93db00e3-9a97-4b53-9fd2-30ccd6dd4044","last_error":"failed lookup for TXT SPF record: nxdomain\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.test.scaleway-terraform.com\": nxdomain\nfailed lookup for MX record on the domain: nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-06-24T15:03:30.236948Z","name":"test.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":100,"previous_scored_at":"2024-09-12T14:26:53.515523Z","score":100,"scored_at":"2024-09-19T15:06:44.236424Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"invalid"}'
headers:
Content-Length:
- - "1398"
+ - "1543"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:50 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -95,10 +95,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 40aef776-7aa5-4f6a-b7e9-068e14d5f745
+ - a992ca54-982b-4a6f-b2b7-9406e69ecd15
status: 200 OK
code: 200
- duration: 160.334113ms
+ duration: 50.620691ms
- id: 2
request:
proto: HTTP/1.1
@@ -114,7 +114,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=test.scaleway-terraform.com
method: GET
response:
@@ -123,20 +123,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1240
+ content_length: 1574
uncompressed: false
- body: '{"domains":[{"created_at":"2024-04-10T13:24:21.147103Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr/tg7KhtPiB62NCTyMGMPeB4apucEO3IPRbgPMsnrFF2thjbweWym/JudVPS27fhKHDLSDbEFtI6vm8Q9ek68P6fnSbdb3w8+Ep5ibKgprRArak44WREizScmMGbrrKGlGvMHfg0hEf1/5MSNOwxQGF2sHQPMh2EOo+iJnjZUuJ37xp7idPzhaZTDnfVmM+5of1hF6aoOHa0j0V14pHvUz5+6+aWTtkxaY0tBu9AuFH8BcdvCtlbxdrG3D/+QZivGGT/K6KIA0L+5cjgCcVaRbRO2cxQMBAdbYMlm8jWUA+Avo/+ymuCeG2kH6k0gkoqIycAEdIvvf24lWscGMXVnwIDAQAB","id":"2ae851aa-8d71-4cc8-beeb-7e277c310ce6","last_error":"failed lookup for TXT record on the DMARC selector \"_dmarc.test.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-04-10T13:28:10.152230Z","name":"test.scaleway-terraform.com","next_check_at":"2024-04-11T13:32:46.152230Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-04-10T13:28:10.828367Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}],"total_count":1}'
+ body: '{"domains":[{"autoconfig":false,"created_at":"2024-06-19T12:32:14.322793Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArg/nHma2hlOo5qO1Lel+G7/CvVoZq1Li7ne5862GmxKa77/rx4NLN7bW7dRkuoZI766wXTKGDxpOro5Z1IzLcwqu9rDZbMWpP819BYAAsDEp/eeE9ZLTbTAQm664E7JX3WKjwiOLHDNiHPyLEAoFCOun21Zj3SqFCw20RnoP1QzQ9986hEVyEJrVClMKdovDQlZ7/kZ4CmeM+Ll7EiM49x72RfYLf0O/4P/CoI5eDy6Q0UWpIBhjBMT6dWB7a3kZGHLPM2LBDJtCH8FEfWAOX1VT22X/p4Wx0SXcWf2nYzUuzttZ7W4ILKdnx2PXeME4WJjiN6ziudW/qO9W3E3UPQIDAQAB","id":"93db00e3-9a97-4b53-9fd2-30ccd6dd4044","last_error":"failed lookup for TXT SPF record: nxdomain\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.test.scaleway-terraform.com\": nxdomain\nfailed lookup for MX record on the domain: nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-06-24T15:03:30.236948Z","name":"test.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":100,"previous_scored_at":"2024-09-12T14:26:53.515523Z","score":100,"scored_at":"2024-09-19T15:06:44.236424Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"invalid"}],"total_count":1}'
headers:
Content-Length:
- - "1240"
+ - "1574"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:50 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -144,10 +144,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dbf8ce99-20e9-414d-9ad6-887ced8911a7
+ - ba48e327-e926-4052-9237-672d3d5e3546
status: 200 OK
code: 200
- duration: 62.614511ms
+ duration: 150.505318ms
- id: 3
request:
proto: HTTP/1.1
@@ -163,8 +163,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/2ae851aa-8d71-4cc8-beeb-7e277c310ce6
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/93db00e3-9a97-4b53-9fd2-30ccd6dd4044
method: GET
response:
proto: HTTP/2.0
@@ -172,20 +172,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1398
+ content_length: 1543
uncompressed: false
- body: '{"created_at":"2024-04-10T13:24:21.147103Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr/tg7KhtPiB62NCTyMGMPeB4apucEO3IPRbgPMsnrFF2thjbweWym/JudVPS27fhKHDLSDbEFtI6vm8Q9ek68P6fnSbdb3w8+Ep5ibKgprRArak44WREizScmMGbrrKGlGvMHfg0hEf1/5MSNOwxQGF2sHQPMh2EOo+iJnjZUuJ37xp7idPzhaZTDnfVmM+5of1hF6aoOHa0j0V14pHvUz5+6+aWTtkxaY0tBu9AuFH8BcdvCtlbxdrG3D/+QZivGGT/K6KIA0L+5cjgCcVaRbRO2cxQMBAdbYMlm8jWUA+Avo/+ymuCeG2kH6k0gkoqIycAEdIvvf24lWscGMXVnwIDAQAB","id":"2ae851aa-8d71-4cc8-beeb-7e277c310ce6","last_error":"failed lookup for TXT record on the DMARC selector \"_dmarc.test.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-04-10T13:28:10.152230Z","name":"test.scaleway-terraform.com","next_check_at":"2024-04-11T13:32:46.152230Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud; ruf=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-04-10T13:28:10.828367Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"autoconfig":false,"created_at":"2024-06-19T12:32:14.322793Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArg/nHma2hlOo5qO1Lel+G7/CvVoZq1Li7ne5862GmxKa77/rx4NLN7bW7dRkuoZI766wXTKGDxpOro5Z1IzLcwqu9rDZbMWpP819BYAAsDEp/eeE9ZLTbTAQm664E7JX3WKjwiOLHDNiHPyLEAoFCOun21Zj3SqFCw20RnoP1QzQ9986hEVyEJrVClMKdovDQlZ7/kZ4CmeM+Ll7EiM49x72RfYLf0O/4P/CoI5eDy6Q0UWpIBhjBMT6dWB7a3kZGHLPM2LBDJtCH8FEfWAOX1VT22X/p4Wx0SXcWf2nYzUuzttZ7W4ILKdnx2PXeME4WJjiN6ziudW/qO9W3E3UPQIDAQAB","id":"93db00e3-9a97-4b53-9fd2-30ccd6dd4044","last_error":"failed lookup for TXT SPF record: nxdomain\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.test.scaleway-terraform.com\": nxdomain\nfailed lookup for MX record on the domain: nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-06-24T15:03:30.236948Z","name":"test.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":100,"previous_scored_at":"2024-09-12T14:26:53.515523Z","score":100,"scored_at":"2024-09-19T15:06:44.236424Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"invalid"}'
headers:
Content-Length:
- - "1398"
+ - "1543"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:50 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -193,10 +193,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f3a6ec69-bb26-4172-a824-7ed1532d701f
+ - fa45b7aa-a4cf-4a5b-805f-975f41a71832
status: 200 OK
code: 200
- duration: 135.920227ms
+ duration: 38.699281ms
- id: 4
request:
proto: HTTP/1.1
@@ -212,8 +212,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/2ae851aa-8d71-4cc8-beeb-7e277c310ce6
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/93db00e3-9a97-4b53-9fd2-30ccd6dd4044
method: GET
response:
proto: HTTP/2.0
@@ -221,20 +221,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1398
+ content_length: 1543
uncompressed: false
- body: '{"created_at":"2024-04-10T13:24:21.147103Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr/tg7KhtPiB62NCTyMGMPeB4apucEO3IPRbgPMsnrFF2thjbweWym/JudVPS27fhKHDLSDbEFtI6vm8Q9ek68P6fnSbdb3w8+Ep5ibKgprRArak44WREizScmMGbrrKGlGvMHfg0hEf1/5MSNOwxQGF2sHQPMh2EOo+iJnjZUuJ37xp7idPzhaZTDnfVmM+5of1hF6aoOHa0j0V14pHvUz5+6+aWTtkxaY0tBu9AuFH8BcdvCtlbxdrG3D/+QZivGGT/K6KIA0L+5cjgCcVaRbRO2cxQMBAdbYMlm8jWUA+Avo/+ymuCeG2kH6k0gkoqIycAEdIvvf24lWscGMXVnwIDAQAB","id":"2ae851aa-8d71-4cc8-beeb-7e277c310ce6","last_error":"failed lookup for TXT record on the DMARC selector \"_dmarc.test.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-04-10T13:28:10.152230Z","name":"test.scaleway-terraform.com","next_check_at":"2024-04-11T13:32:46.152230Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud; ruf=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-04-10T13:28:10.828367Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"autoconfig":false,"created_at":"2024-06-19T12:32:14.322793Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArg/nHma2hlOo5qO1Lel+G7/CvVoZq1Li7ne5862GmxKa77/rx4NLN7bW7dRkuoZI766wXTKGDxpOro5Z1IzLcwqu9rDZbMWpP819BYAAsDEp/eeE9ZLTbTAQm664E7JX3WKjwiOLHDNiHPyLEAoFCOun21Zj3SqFCw20RnoP1QzQ9986hEVyEJrVClMKdovDQlZ7/kZ4CmeM+Ll7EiM49x72RfYLf0O/4P/CoI5eDy6Q0UWpIBhjBMT6dWB7a3kZGHLPM2LBDJtCH8FEfWAOX1VT22X/p4Wx0SXcWf2nYzUuzttZ7W4ILKdnx2PXeME4WJjiN6ziudW/qO9W3E3UPQIDAQAB","id":"93db00e3-9a97-4b53-9fd2-30ccd6dd4044","last_error":"failed lookup for TXT SPF record: nxdomain\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.test.scaleway-terraform.com\": nxdomain\nfailed lookup for MX record on the domain: nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-06-24T15:03:30.236948Z","name":"test.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":100,"previous_scored_at":"2024-09-12T14:26:53.515523Z","score":100,"scored_at":"2024-09-19T15:06:44.236424Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"invalid"}'
headers:
Content-Length:
- - "1398"
+ - "1543"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:50 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -242,10 +242,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 28a80fbc-f984-4f6c-96f9-45b3b96cde95
+ - 73fd2272-4e5b-4e96-a5b2-55f02a2e94dc
status: 200 OK
code: 200
- duration: 66.201642ms
+ duration: 25.265667ms
- id: 5
request:
proto: HTTP/1.1
@@ -261,7 +261,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=test.scaleway-terraform.com
method: GET
response:
@@ -270,20 +270,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1240
+ content_length: 1574
uncompressed: false
- body: '{"domains":[{"created_at":"2024-04-10T13:24:21.147103Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr/tg7KhtPiB62NCTyMGMPeB4apucEO3IPRbgPMsnrFF2thjbweWym/JudVPS27fhKHDLSDbEFtI6vm8Q9ek68P6fnSbdb3w8+Ep5ibKgprRArak44WREizScmMGbrrKGlGvMHfg0hEf1/5MSNOwxQGF2sHQPMh2EOo+iJnjZUuJ37xp7idPzhaZTDnfVmM+5of1hF6aoOHa0j0V14pHvUz5+6+aWTtkxaY0tBu9AuFH8BcdvCtlbxdrG3D/+QZivGGT/K6KIA0L+5cjgCcVaRbRO2cxQMBAdbYMlm8jWUA+Avo/+ymuCeG2kH6k0gkoqIycAEdIvvf24lWscGMXVnwIDAQAB","id":"2ae851aa-8d71-4cc8-beeb-7e277c310ce6","last_error":"failed lookup for TXT record on the DMARC selector \"_dmarc.test.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-04-10T13:28:10.152230Z","name":"test.scaleway-terraform.com","next_check_at":"2024-04-11T13:32:46.152230Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-04-10T13:28:10.828367Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}],"total_count":1}'
+ body: '{"domains":[{"autoconfig":false,"created_at":"2024-06-19T12:32:14.322793Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArg/nHma2hlOo5qO1Lel+G7/CvVoZq1Li7ne5862GmxKa77/rx4NLN7bW7dRkuoZI766wXTKGDxpOro5Z1IzLcwqu9rDZbMWpP819BYAAsDEp/eeE9ZLTbTAQm664E7JX3WKjwiOLHDNiHPyLEAoFCOun21Zj3SqFCw20RnoP1QzQ9986hEVyEJrVClMKdovDQlZ7/kZ4CmeM+Ll7EiM49x72RfYLf0O/4P/CoI5eDy6Q0UWpIBhjBMT6dWB7a3kZGHLPM2LBDJtCH8FEfWAOX1VT22X/p4Wx0SXcWf2nYzUuzttZ7W4ILKdnx2PXeME4WJjiN6ziudW/qO9W3E3UPQIDAQAB","id":"93db00e3-9a97-4b53-9fd2-30ccd6dd4044","last_error":"failed lookup for TXT SPF record: nxdomain\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.test.scaleway-terraform.com\": nxdomain\nfailed lookup for MX record on the domain: nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-06-24T15:03:30.236948Z","name":"test.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":100,"previous_scored_at":"2024-09-12T14:26:53.515523Z","score":100,"scored_at":"2024-09-19T15:06:44.236424Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"invalid"}],"total_count":1}'
headers:
Content-Length:
- - "1240"
+ - "1574"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:51 GMT
+ - Fri, 20 Sep 2024 13:01:03 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -291,10 +291,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3078a075-adcc-412d-814d-e8fa5d6301fe
+ - 8b3c32fc-9d53-425c-b05d-36da62075663
status: 200 OK
code: 200
- duration: 53.029034ms
+ duration: 209.928048ms
- id: 6
request:
proto: HTTP/1.1
@@ -310,8 +310,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/2ae851aa-8d71-4cc8-beeb-7e277c310ce6
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/93db00e3-9a97-4b53-9fd2-30ccd6dd4044
method: GET
response:
proto: HTTP/2.0
@@ -319,20 +319,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1398
+ content_length: 1543
uncompressed: false
- body: '{"created_at":"2024-04-10T13:24:21.147103Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr/tg7KhtPiB62NCTyMGMPeB4apucEO3IPRbgPMsnrFF2thjbweWym/JudVPS27fhKHDLSDbEFtI6vm8Q9ek68P6fnSbdb3w8+Ep5ibKgprRArak44WREizScmMGbrrKGlGvMHfg0hEf1/5MSNOwxQGF2sHQPMh2EOo+iJnjZUuJ37xp7idPzhaZTDnfVmM+5of1hF6aoOHa0j0V14pHvUz5+6+aWTtkxaY0tBu9AuFH8BcdvCtlbxdrG3D/+QZivGGT/K6KIA0L+5cjgCcVaRbRO2cxQMBAdbYMlm8jWUA+Avo/+ymuCeG2kH6k0gkoqIycAEdIvvf24lWscGMXVnwIDAQAB","id":"2ae851aa-8d71-4cc8-beeb-7e277c310ce6","last_error":"failed lookup for TXT record on the DMARC selector \"_dmarc.test.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-04-10T13:28:10.152230Z","name":"test.scaleway-terraform.com","next_check_at":"2024-04-11T13:32:46.152230Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud; ruf=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-04-10T13:28:10.828367Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"autoconfig":false,"created_at":"2024-06-19T12:32:14.322793Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArg/nHma2hlOo5qO1Lel+G7/CvVoZq1Li7ne5862GmxKa77/rx4NLN7bW7dRkuoZI766wXTKGDxpOro5Z1IzLcwqu9rDZbMWpP819BYAAsDEp/eeE9ZLTbTAQm664E7JX3WKjwiOLHDNiHPyLEAoFCOun21Zj3SqFCw20RnoP1QzQ9986hEVyEJrVClMKdovDQlZ7/kZ4CmeM+Ll7EiM49x72RfYLf0O/4P/CoI5eDy6Q0UWpIBhjBMT6dWB7a3kZGHLPM2LBDJtCH8FEfWAOX1VT22X/p4Wx0SXcWf2nYzUuzttZ7W4ILKdnx2PXeME4WJjiN6ziudW/qO9W3E3UPQIDAQAB","id":"93db00e3-9a97-4b53-9fd2-30ccd6dd4044","last_error":"failed lookup for TXT SPF record: nxdomain\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.test.scaleway-terraform.com\": nxdomain\nfailed lookup for MX record on the domain: nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-06-24T15:03:30.236948Z","name":"test.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":100,"previous_scored_at":"2024-09-12T14:26:53.515523Z","score":100,"scored_at":"2024-09-19T15:06:44.236424Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"invalid"}'
headers:
Content-Length:
- - "1398"
+ - "1543"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:51 GMT
+ - Fri, 20 Sep 2024 13:01:03 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -340,10 +340,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ad2d3450-b4e9-4b16-8a53-3804a09b7456
+ - 9518b57f-1f89-41d6-9e0e-aa5ce462e4da
status: 200 OK
code: 200
- duration: 30.476883ms
+ duration: 47.824737ms
- id: 7
request:
proto: HTTP/1.1
@@ -359,7 +359,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=test.scaleway-terraform.com
method: GET
response:
@@ -368,20 +368,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1240
+ content_length: 1574
uncompressed: false
- body: '{"domains":[{"created_at":"2024-04-10T13:24:21.147103Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr/tg7KhtPiB62NCTyMGMPeB4apucEO3IPRbgPMsnrFF2thjbweWym/JudVPS27fhKHDLSDbEFtI6vm8Q9ek68P6fnSbdb3w8+Ep5ibKgprRArak44WREizScmMGbrrKGlGvMHfg0hEf1/5MSNOwxQGF2sHQPMh2EOo+iJnjZUuJ37xp7idPzhaZTDnfVmM+5of1hF6aoOHa0j0V14pHvUz5+6+aWTtkxaY0tBu9AuFH8BcdvCtlbxdrG3D/+QZivGGT/K6KIA0L+5cjgCcVaRbRO2cxQMBAdbYMlm8jWUA+Avo/+ymuCeG2kH6k0gkoqIycAEdIvvf24lWscGMXVnwIDAQAB","id":"2ae851aa-8d71-4cc8-beeb-7e277c310ce6","last_error":"failed lookup for TXT record on the DMARC selector \"_dmarc.test.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-04-10T13:28:10.152230Z","name":"test.scaleway-terraform.com","next_check_at":"2024-04-11T13:32:46.152230Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-04-10T13:28:10.828367Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}],"total_count":1}'
+ body: '{"domains":[{"autoconfig":false,"created_at":"2024-06-19T12:32:14.322793Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArg/nHma2hlOo5qO1Lel+G7/CvVoZq1Li7ne5862GmxKa77/rx4NLN7bW7dRkuoZI766wXTKGDxpOro5Z1IzLcwqu9rDZbMWpP819BYAAsDEp/eeE9ZLTbTAQm664E7JX3WKjwiOLHDNiHPyLEAoFCOun21Zj3SqFCw20RnoP1QzQ9986hEVyEJrVClMKdovDQlZ7/kZ4CmeM+Ll7EiM49x72RfYLf0O/4P/CoI5eDy6Q0UWpIBhjBMT6dWB7a3kZGHLPM2LBDJtCH8FEfWAOX1VT22X/p4Wx0SXcWf2nYzUuzttZ7W4ILKdnx2PXeME4WJjiN6ziudW/qO9W3E3UPQIDAQAB","id":"93db00e3-9a97-4b53-9fd2-30ccd6dd4044","last_error":"failed lookup for TXT SPF record: nxdomain\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.test.scaleway-terraform.com\": nxdomain\nfailed lookup for MX record on the domain: nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-06-24T15:03:30.236948Z","name":"test.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":100,"previous_scored_at":"2024-09-12T14:26:53.515523Z","score":100,"scored_at":"2024-09-19T15:06:44.236424Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"invalid"}],"total_count":1}'
headers:
Content-Length:
- - "1240"
+ - "1574"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:51 GMT
+ - Fri, 20 Sep 2024 13:01:03 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -389,10 +389,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5fe6640e-0cbd-4d69-8457-41efafd291e1
+ - adcf98f3-d3da-47db-8eb5-c0b81e10bce9
status: 200 OK
code: 200
- duration: 50.220544ms
+ duration: 112.288323ms
- id: 8
request:
proto: HTTP/1.1
@@ -408,8 +408,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/2ae851aa-8d71-4cc8-beeb-7e277c310ce6
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/93db00e3-9a97-4b53-9fd2-30ccd6dd4044
method: GET
response:
proto: HTTP/2.0
@@ -417,20 +417,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1398
+ content_length: 1543
uncompressed: false
- body: '{"created_at":"2024-04-10T13:24:21.147103Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr/tg7KhtPiB62NCTyMGMPeB4apucEO3IPRbgPMsnrFF2thjbweWym/JudVPS27fhKHDLSDbEFtI6vm8Q9ek68P6fnSbdb3w8+Ep5ibKgprRArak44WREizScmMGbrrKGlGvMHfg0hEf1/5MSNOwxQGF2sHQPMh2EOo+iJnjZUuJ37xp7idPzhaZTDnfVmM+5of1hF6aoOHa0j0V14pHvUz5+6+aWTtkxaY0tBu9AuFH8BcdvCtlbxdrG3D/+QZivGGT/K6KIA0L+5cjgCcVaRbRO2cxQMBAdbYMlm8jWUA+Avo/+ymuCeG2kH6k0gkoqIycAEdIvvf24lWscGMXVnwIDAQAB","id":"2ae851aa-8d71-4cc8-beeb-7e277c310ce6","last_error":"failed lookup for TXT record on the DMARC selector \"_dmarc.test.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-04-10T13:28:10.152230Z","name":"test.scaleway-terraform.com","next_check_at":"2024-04-11T13:32:46.152230Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud; ruf=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-04-10T13:28:10.828367Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"autoconfig":false,"created_at":"2024-06-19T12:32:14.322793Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArg/nHma2hlOo5qO1Lel+G7/CvVoZq1Li7ne5862GmxKa77/rx4NLN7bW7dRkuoZI766wXTKGDxpOro5Z1IzLcwqu9rDZbMWpP819BYAAsDEp/eeE9ZLTbTAQm664E7JX3WKjwiOLHDNiHPyLEAoFCOun21Zj3SqFCw20RnoP1QzQ9986hEVyEJrVClMKdovDQlZ7/kZ4CmeM+Ll7EiM49x72RfYLf0O/4P/CoI5eDy6Q0UWpIBhjBMT6dWB7a3kZGHLPM2LBDJtCH8FEfWAOX1VT22X/p4Wx0SXcWf2nYzUuzttZ7W4ILKdnx2PXeME4WJjiN6ziudW/qO9W3E3UPQIDAQAB","id":"93db00e3-9a97-4b53-9fd2-30ccd6dd4044","last_error":"failed lookup for TXT SPF record: nxdomain\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.test.scaleway-terraform.com\": nxdomain\nfailed lookup for MX record on the domain: nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-06-24T15:03:30.236948Z","name":"test.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":100,"previous_scored_at":"2024-09-12T14:26:53.515523Z","score":100,"scored_at":"2024-09-19T15:06:44.236424Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"invalid"}'
headers:
Content-Length:
- - "1398"
+ - "1543"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:51 GMT
+ - Fri, 20 Sep 2024 13:01:03 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -438,10 +438,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 92ac3dc6-84ec-43f5-9965-213fb4e53774
+ - ac256140-72ff-4213-9e93-c653c145eed7
status: 200 OK
code: 200
- duration: 39.380168ms
+ duration: 25.03733ms
- id: 9
request:
proto: HTTP/1.1
@@ -457,7 +457,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains?name=test.scaleway-terraform.com
method: GET
response:
@@ -466,20 +466,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1240
+ content_length: 1574
uncompressed: false
- body: '{"domains":[{"created_at":"2024-04-10T13:24:21.147103Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr/tg7KhtPiB62NCTyMGMPeB4apucEO3IPRbgPMsnrFF2thjbweWym/JudVPS27fhKHDLSDbEFtI6vm8Q9ek68P6fnSbdb3w8+Ep5ibKgprRArak44WREizScmMGbrrKGlGvMHfg0hEf1/5MSNOwxQGF2sHQPMh2EOo+iJnjZUuJ37xp7idPzhaZTDnfVmM+5of1hF6aoOHa0j0V14pHvUz5+6+aWTtkxaY0tBu9AuFH8BcdvCtlbxdrG3D/+QZivGGT/K6KIA0L+5cjgCcVaRbRO2cxQMBAdbYMlm8jWUA+Avo/+ymuCeG2kH6k0gkoqIycAEdIvvf24lWscGMXVnwIDAQAB","id":"2ae851aa-8d71-4cc8-beeb-7e277c310ce6","last_error":"failed lookup for TXT record on the DMARC selector \"_dmarc.test.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-04-10T13:28:10.152230Z","name":"test.scaleway-terraform.com","next_check_at":"2024-04-11T13:32:46.152230Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-04-10T13:28:10.828367Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}],"total_count":1}'
+ body: '{"domains":[{"autoconfig":false,"created_at":"2024-06-19T12:32:14.322793Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArg/nHma2hlOo5qO1Lel+G7/CvVoZq1Li7ne5862GmxKa77/rx4NLN7bW7dRkuoZI766wXTKGDxpOro5Z1IzLcwqu9rDZbMWpP819BYAAsDEp/eeE9ZLTbTAQm664E7JX3WKjwiOLHDNiHPyLEAoFCOun21Zj3SqFCw20RnoP1QzQ9986hEVyEJrVClMKdovDQlZ7/kZ4CmeM+Ll7EiM49x72RfYLf0O/4P/CoI5eDy6Q0UWpIBhjBMT6dWB7a3kZGHLPM2LBDJtCH8FEfWAOX1VT22X/p4Wx0SXcWf2nYzUuzttZ7W4ILKdnx2PXeME4WJjiN6ziudW/qO9W3E3UPQIDAQAB","id":"93db00e3-9a97-4b53-9fd2-30ccd6dd4044","last_error":"failed lookup for TXT SPF record: nxdomain\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.test.scaleway-terraform.com\": nxdomain\nfailed lookup for MX record on the domain: nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-06-24T15:03:30.236948Z","name":"test.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":100,"previous_scored_at":"2024-09-12T14:26:53.515523Z","score":100,"scored_at":"2024-09-19T15:06:44.236424Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"invalid"}],"total_count":1}'
headers:
Content-Length:
- - "1240"
+ - "1574"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:51 GMT
+ - Fri, 20 Sep 2024 13:01:03 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -487,10 +487,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0b89d612-1882-4744-be1c-938e556113f7
+ - 76e7f6d3-979a-4b4e-bf6f-9d6821d76cb4
status: 200 OK
code: 200
- duration: 37.766847ms
+ duration: 133.895658ms
- id: 10
request:
proto: HTTP/1.1
@@ -506,8 +506,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/2ae851aa-8d71-4cc8-beeb-7e277c310ce6
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/93db00e3-9a97-4b53-9fd2-30ccd6dd4044
method: GET
response:
proto: HTTP/2.0
@@ -515,20 +515,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1398
+ content_length: 1543
uncompressed: false
- body: '{"created_at":"2024-04-10T13:24:21.147103Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr/tg7KhtPiB62NCTyMGMPeB4apucEO3IPRbgPMsnrFF2thjbweWym/JudVPS27fhKHDLSDbEFtI6vm8Q9ek68P6fnSbdb3w8+Ep5ibKgprRArak44WREizScmMGbrrKGlGvMHfg0hEf1/5MSNOwxQGF2sHQPMh2EOo+iJnjZUuJ37xp7idPzhaZTDnfVmM+5of1hF6aoOHa0j0V14pHvUz5+6+aWTtkxaY0tBu9AuFH8BcdvCtlbxdrG3D/+QZivGGT/K6KIA0L+5cjgCcVaRbRO2cxQMBAdbYMlm8jWUA+Avo/+ymuCeG2kH6k0gkoqIycAEdIvvf24lWscGMXVnwIDAQAB","id":"2ae851aa-8d71-4cc8-beeb-7e277c310ce6","last_error":"failed lookup for TXT record on the DMARC selector \"_dmarc.test.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-04-10T13:28:10.152230Z","name":"test.scaleway-terraform.com","next_check_at":"2024-04-11T13:32:46.152230Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud; ruf=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-04-10T13:28:10.828367Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"autoconfig":false,"created_at":"2024-06-19T12:32:14.322793Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArg/nHma2hlOo5qO1Lel+G7/CvVoZq1Li7ne5862GmxKa77/rx4NLN7bW7dRkuoZI766wXTKGDxpOro5Z1IzLcwqu9rDZbMWpP819BYAAsDEp/eeE9ZLTbTAQm664E7JX3WKjwiOLHDNiHPyLEAoFCOun21Zj3SqFCw20RnoP1QzQ9986hEVyEJrVClMKdovDQlZ7/kZ4CmeM+Ll7EiM49x72RfYLf0O/4P/CoI5eDy6Q0UWpIBhjBMT6dWB7a3kZGHLPM2LBDJtCH8FEfWAOX1VT22X/p4Wx0SXcWf2nYzUuzttZ7W4ILKdnx2PXeME4WJjiN6ziudW/qO9W3E3UPQIDAQAB","id":"93db00e3-9a97-4b53-9fd2-30ccd6dd4044","last_error":"failed lookup for TXT SPF record: nxdomain\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.test.scaleway-terraform.com\": nxdomain\nfailed lookup for MX record on the domain: nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":"2024-06-24T15:03:30.236948Z","name":"test.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":100,"previous_scored_at":"2024-09-12T14:26:53.515523Z","score":100,"scored_at":"2024-09-19T15:06:44.236424Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"invalid"}'
headers:
Content-Length:
- - "1398"
+ - "1543"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:51 GMT
+ - Fri, 20 Sep 2024 13:01:03 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -536,7 +536,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c67c4597-8cb1-4461-98a0-6cc9db5c1fb0
+ - feed43df-bc81-447f-b92c-8541637d5813
status: 200 OK
code: 200
- duration: 54.721456ms
+ duration: 138.902841ms
diff --git a/internal/services/tem/testdata/domain-autoconfig-update.cassette.yaml b/internal/services/tem/testdata/domain-autoconfig-update.cassette.yaml
index dd9be2c18..83e2bcdd4 100644
--- a/internal/services/tem/testdata/domain-autoconfig-update.cassette.yaml
+++ b/internal/services/tem/testdata/domain-autoconfig-update.cassette.yaml
@@ -6,41 +6,39 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 129
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"scaleway-terraform.com","accept_tos":true,"autoconfig":false}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains
- method: POST
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-autoconfig-update.scaleway-terraform.com&domain=&order_by=domain_asc
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1159
+ content_length: 33
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-12T13:42:29.783259305Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"dns_zones":[],"total_count":0}'
headers:
Content-Length:
- - "1159"
+ - "33"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 12 Sep 2024 13:42:29 GMT
+ - Fri, 20 Sep 2024 13:00:59 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -48,48 +46,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 77c9329f-0a6c-47b5-9489-03015177bacd
+ - b125db2c-a067-4e56-909c-33b21bfe7a4d
status: 200 OK
code: 200
- duration: 294.059609ms
+ duration: 77.426508ms
- id: 1
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 124
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{"domain":"scaleway-terraform.com","subdomain":"test-autoconfig-update","project_id":"105bdce1-64c0-48ab-899d-868455867ecf"}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3
- method: GET
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1159
+ content_length: 342
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-12T13:42:30.034182647Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-autoconfig-update","updated_at":"2024-09-20T13:00:59Z"}'
headers:
Content-Length:
- - "1159"
+ - "342"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 12 Sep 2024 13:42:30 GMT
+ - Fri, 20 Sep 2024 13:01:00 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -97,10 +97,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fbedbd28-ebf2-4847-bbde-6f321773c7ad
+ - 35fbce92-204b-48a1-8243-1f805760075b
status: 200 OK
code: 200
- duration: 299.135424ms
+ duration: 554.894449ms
- id: 2
request:
proto: HTTP/1.1
@@ -117,7 +117,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-autoconfig-update.scaleway-terraform.com&domain=&order_by=domain_asc
method: GET
response:
proto: HTTP/2.0
@@ -125,20 +125,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1159
+ content_length: 375
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-12T13:42:30.424098441Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-autoconfig-update","updated_at":"2024-09-20T13:00:59Z"}],"total_count":1}'
headers:
Content-Length:
- - "1159"
+ - "375"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 12 Sep 2024 13:42:30 GMT
+ - Fri, 20 Sep 2024 13:01:00 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -146,48 +146,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7c763b92-8bc8-40d4-a8dd-43f3e279ae0d
+ - 5f0fc375-c099-4537-b7f4-3751293d4d0e
status: 200 OK
code: 200
- duration: 246.359401ms
+ duration: 121.680384ms
- id: 3
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 152
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"test-autoconfig-update.scaleway-terraform.com","accept_tos":true,"autoconfig":false}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3
- method: GET
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1159
+ content_length: 1205
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-12T13:42:30.910189357Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:00.957990874Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1159"
+ - "1205"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 12 Sep 2024 13:42:30 GMT
+ - Fri, 20 Sep 2024 13:01:00 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -195,10 +197,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e641d726-49cb-492c-927b-82938e7356e2
+ - aca52d90-2479-49fd-9c82-f000858108cd
status: 200 OK
code: 200
- duration: 171.819955ms
+ duration: 460.481284ms
- id: 4
request:
proto: HTTP/1.1
@@ -215,7 +217,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f
method: GET
response:
proto: HTTP/2.0
@@ -223,20 +225,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1159
+ content_length: 1205
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-12T13:42:31.454218662Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:00.992287445Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1159"
+ - "1205"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 12 Sep 2024 13:42:31 GMT
+ - Fri, 20 Sep 2024 13:01:01 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -244,50 +246,48 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 93dda0c4-bd52-4478-a633-5c13ee5457e7
+ - 1ac71ef7-000e-4f3a-b561-5bb9912ab617
status: 200 OK
code: 200
- duration: 266.570979ms
+ duration: 66.851156ms
- id: 5
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 19
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"autoconfig":true}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3
- method: PATCH
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1158
+ content_length: 1205
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-12T13:42:32.203844491Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:01.422058060Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1158"
+ - "1205"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 12 Sep 2024 13:42:32 GMT
+ - Fri, 20 Sep 2024 13:01:01 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -295,10 +295,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9bc7801c-e0ca-43f6-95dd-d4ed4314e527
+ - 75319153-e9db-491e-8f4e-667c5edc0a9e
status: 200 OK
code: 200
- duration: 565.632488ms
+ duration: 295.668263ms
- id: 6
request:
proto: HTTP/1.1
@@ -315,7 +315,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-autoconfig-update.scaleway-terraform.com&domain=&order_by=domain_asc&project_id=105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
proto: HTTP/2.0
@@ -323,20 +323,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1183
+ content_length: 375
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-12T13:42:32.203846Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-12T13:42:32.698101237Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-autoconfig-update","updated_at":"2024-09-20T13:00:59Z"}],"total_count":1}'
headers:
Content-Length:
- - "1183"
+ - "375"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 12 Sep 2024 13:42:32 GMT
+ - Fri, 20 Sep 2024 13:01:01 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -344,10 +344,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7afdccd3-4205-4ab5-8dae-e8d6665844f0
+ - 0d086c02-34a4-4f3d-a3ee-ccb23481a94b
status: 200 OK
code: 200
- duration: 192.298283ms
+ duration: 84.322345ms
- id: 7
request:
proto: HTTP/1.1
@@ -364,7 +364,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f
method: GET
response:
proto: HTTP/2.0
@@ -372,20 +372,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1183
+ content_length: 1205
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-12T13:42:32.203846Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-12T13:42:32.903748915Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:01.851655107Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1183"
+ - "1205"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 12 Sep 2024 13:42:32 GMT
+ - Fri, 20 Sep 2024 13:01:01 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -393,50 +393,48 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b0d4e964-4693-46e2-8376-1962ebfcdd12
+ - 97b93a42-92d2-414c-9d11-db4adbeea300
status: 200 OK
code: 200
- duration: 226.672219ms
+ duration: 23.425253ms
- id: 8
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 2
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3/check
- method: POST
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-autoconfig-update.scaleway-terraform.com&domain=&order_by=domain_asc&project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1060
+ content_length: 375
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-12T13:42:32.976530407Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-autoconfig-update","updated_at":"2024-09-20T13:00:59Z"}],"total_count":1}'
headers:
Content-Length:
- - "1060"
+ - "375"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 12 Sep 2024 13:42:32 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -444,50 +442,48 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 63a63e34-27ab-4e4e-b113-1122e56a3384
+ - 9e62abb8-8669-425d-9532-5d6e4587b3f3
status: 200 OK
code: 200
- duration: 42.963244ms
+ duration: 60.289395ms
- id: 9
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 2
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3/check
- method: POST
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1060
+ content_length: 1205
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-12T13:42:33.614597641Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:02.234703441Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1060"
+ - "1205"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 12 Sep 2024 13:42:33 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -495,50 +491,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2e9d826e-064e-4990-a94e-5e533e0de611
+ - ad2f167a-b1e5-4b53-b246-5e890ac171b3
status: 200 OK
code: 200
- duration: 149.856145ms
+ duration: 25.015613ms
- id: 10
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 2
+ content_length: 19
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{}'
+ body: '{"autoconfig":true}'
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3/check
- method: POST
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f
+ method: PATCH
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1060
+ content_length: 1204
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-12T13:42:34.719227016Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:02.801482009Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1060"
+ - "1204"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 12 Sep 2024 13:42:34 GMT
+ - Fri, 20 Sep 2024 13:01:03 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -546,50 +542,48 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8745ae04-371d-4e76-afc2-4f48f4648e36
+ - 8ae5a0ed-d230-49cd-a361-4184a9b0594a
status: 200 OK
code: 200
- duration: 97.817597ms
+ duration: 393.355416ms
- id: 11
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 2
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3/check
- method: POST
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1060
+ content_length: 1229
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-12T13:42:36.825394284Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:02.801482Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:03.118195026Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1060"
+ - "1229"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 12 Sep 2024 13:42:36 GMT
+ - Fri, 20 Sep 2024 13:01:03 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -597,50 +591,48 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 67d3d019-ff49-40bd-a984-6475a28df9af
+ - 1997c534-4dc8-46d2-93ed-f8131ea76827
status: 200 OK
code: 200
- duration: 97.993855ms
+ duration: 22.510307ms
- id: 12
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 2
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3/check
- method: POST
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1060
+ content_length: 1229
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-12T13:42:40.917428551Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:02.801482Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:03.257129022Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1060"
+ - "1229"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 12 Sep 2024 13:42:40 GMT
+ - Fri, 20 Sep 2024 13:01:03 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -648,50 +640,48 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9f604e28-356c-4701-998e-7481a2f710d4
+ - c5e3ccb4-a45b-4ca3-a8e4-a001cbc9d8ee
status: 200 OK
code: 200
- duration: 119.043469ms
+ duration: 21.560654ms
- id: 13
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 2
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3/check
- method: POST
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-autoconfig-update.scaleway-terraform.com&domain=&order_by=domain_asc&project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1060
+ content_length: 375
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-12T13:42:49.032722598Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-autoconfig-update","updated_at":"2024-09-20T13:00:59Z"}],"total_count":1}'
headers:
Content-Length:
- - "1060"
+ - "375"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 12 Sep 2024 13:42:49 GMT
+ - Fri, 20 Sep 2024 13:01:03 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -699,50 +689,48 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 411aab90-4e05-4969-9d71-7263958d1ca8
+ - 9fe01e02-7fe6-4047-8ca5-b09568a45ebd
status: 200 OK
code: 200
- duration: 179.075202ms
+ duration: 62.469985ms
- id: 14
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 2
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3/check
- method: POST
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1057
+ content_length: 1229
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-12T13:42:49.032722Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:02.801482Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:03.794528019Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1057"
+ - "1229"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 12 Sep 2024 13:42:59 GMT
+ - Fri, 20 Sep 2024 13:01:03 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -750,50 +738,48 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4c68a4d5-08ef-4b00-8a8d-532538fc96a1
+ - 83cfbf29-f1e9-4885-9e4b-1b596d32e92c
status: 200 OK
code: 200
- duration: 68.610165ms
+ duration: 185.181577ms
- id: 15
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 2
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3/check
- method: POST
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1060
+ content_length: 1229
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-12T13:43:09.287458120Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:02.801482Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig-update","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:04.425866893Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1060"
+ - "1229"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 12 Sep 2024 13:43:09 GMT
+ - Fri, 20 Sep 2024 13:01:04 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -801,10 +787,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3771ce1d-db2d-49f1-8b90-138de65051f3
+ - 07095c7e-c4d7-4258-bc92-7e9737dcf0aa
status: 200 OK
code: 200
- duration: 100.688075ms
+ duration: 159.778681ms
- id: 16
request:
proto: HTTP/1.1
@@ -823,7 +809,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3/check
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f/revoke
method: POST
response:
proto: HTTP/2.0
@@ -831,20 +817,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1057
+ content_length: 1001
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-12T13:43:09.287458Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-20T13:01:05.142078854Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "1057"
+ - "1001"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 12 Sep 2024 13:43:19 GMT
+ - Fri, 20 Sep 2024 13:01:05 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -852,162 +838,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 53a31637-c855-4fc4-a693-39842404bca9
+ - 8eafa65b-0b1a-4d68-b161-709fee6f5c87
status: 200 OK
code: 200
- duration: 76.564909ms
+ duration: 738.951458ms
- id: 17
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3/check
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1060
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-12T13:43:29.467026344Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1060"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Thu, 12 Sep 2024 13:43:29 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 111f1ada-c98e-4ec2-b0bf-e4dae873e357
- status: 200 OK
- code: 200
- duration: 97.632801ms
- - id: 18
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3/check
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1080
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":"2024-09-12T13:43:36.899574Z","name":"scaleway-terraform.com","next_check_at":"2024-09-12T13:44:36.899574Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
- headers:
- Content-Length:
- - "1080"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Thu, 12 Sep 2024 13:43:39 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 4d42f24b-dcc7-4b4b-afcc-6c2ff78fee15
- status: 200 OK
- code: 200
- duration: 74.868011ms
- - id: 19
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1206
- uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":"2024-09-12T13:43:36.899574Z","name":"scaleway-terraform.com","next_check_at":"2024-09-12T13:44:36.899574Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-12T13:43:39.778516784Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
- headers:
- Content-Length:
- - "1206"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Thu, 12 Sep 2024 13:43:39 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f2cc71e0-72ec-45a0-a6c3-abf92bdfd24d
- status: 200 OK
- code: 200
- duration: 240.904158ms
- - id: 20
request:
proto: HTTP/1.1
proto_major: 1
@@ -1023,7 +858,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f
method: GET
response:
proto: HTTP/2.0
@@ -1031,20 +866,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1206
+ content_length: 1153
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":"2024-09-12T13:43:36.899574Z","name":"scaleway-terraform.com","next_check_at":"2024-09-12T13:44:36.899574Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-12T13:43:40.162596678Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:05.375696714Z","status":"excellent"},"revoked_at":"2024-09-20T13:01:05.142078Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "1206"
+ - "1153"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 12 Sep 2024 13:43:40 GMT
+ - Fri, 20 Sep 2024 13:01:05 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1052,60 +887,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0b8bf6ea-d4fa-40cb-8919-c30a6bc72406
+ - 3b2c8ebc-ecd6-4992-aa90-f8a210c7c3ca
status: 200 OK
code: 200
- duration: 301.174263ms
- - id: 21
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1206
- uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":"2024-09-12T13:43:36.899574Z","name":"scaleway-terraform.com","next_check_at":"2024-09-12T13:44:36.899574Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-12T13:43:40.762753330Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
- headers:
- Content-Length:
- - "1206"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Thu, 12 Sep 2024 13:43:40 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 8922d013-7e80-4895-b3c2-70a8a0bd3527
- status: 200 OK
- code: 200
- duration: 331.822065ms
- - id: 22
+ duration: 206.937728ms
+ - id: 18
request:
proto: HTTP/1.1
proto_major: 1
@@ -1121,7 +907,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-autoconfig-update.scaleway-terraform.com&domain=&order_by=domain_asc
method: GET
response:
proto: HTTP/2.0
@@ -1129,20 +915,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1206
+ content_length: 375
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":"2024-09-12T13:43:36.899574Z","name":"scaleway-terraform.com","next_check_at":"2024-09-12T13:44:36.899574Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-12T13:43:41.080528346Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-autoconfig-update","updated_at":"2024-09-20T13:00:59Z"}],"total_count":1}'
headers:
Content-Length:
- - "1206"
+ - "375"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 12 Sep 2024 13:43:41 GMT
+ - Fri, 20 Sep 2024 13:01:05 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1150,11 +936,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c796b4be-f0be-4ce8-b565-45dcb46bd7be
+ - cf0e233f-d9a7-47ee-89f8-df24c0355217
status: 200 OK
code: 200
- duration: 301.668186ms
- - id: 23
+ duration: 77.799687ms
+ - id: 19
request:
proto: HTTP/1.1
proto_major: 1
@@ -1170,128 +956,28 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3
- method: GET
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-autoconfig-update.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: DELETE
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1206
- uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":"2024-09-12T13:43:36.899574Z","name":"scaleway-terraform.com","next_check_at":"2024-09-12T13:44:36.899574Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-12T13:43:41.869607016Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
- headers:
- Content-Length:
- - "1206"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Thu, 12 Sep 2024 13:43:41 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ef0e0b10-b8f9-4e68-a4c9-c0ba0e6f64bf
- status: 200 OK
- code: 200
- duration: 329.747492ms
- - id: 24
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3/revoke
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1003
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":"2024-09-12T13:43:36.899574Z","name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-12T13:43:42.906005580Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
- headers:
- Content-Length:
- - "1003"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Thu, 12 Sep 2024 13:43:42 GMT
- Server:
- - Scaleway API Gateway (fr-par-1;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e7f3e9d3-6f28-4546-9d29-c1a14d93badc
- status: 200 OK
- code: 200
- duration: 1.092644874s
- - id: 25
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1155
- uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":"2024-09-12T13:43:36.899574Z","name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-12T13:43:43.168117223Z","status":"excellent"},"revoked_at":"2024-09-12T13:43:42.906005Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{}'
headers:
Content-Length:
- - "1155"
+ - "2"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 12 Sep 2024 13:43:43 GMT
+ - Fri, 20 Sep 2024 13:01:05 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1299,11 +985,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4a5ef505-8640-4ac6-959e-64c28455e5eb
+ - 233b360c-cca9-4a24-9ba0-70ddedd088f8
status: 200 OK
code: 200
- duration: 209.298064ms
- - id: 26
+ duration: 280.907359ms
+ - id: 20
request:
proto: HTTP/1.1
proto_major: 1
@@ -1321,7 +1007,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3/revoke
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f/revoke
method: POST
response:
proto: HTTP/2.0
@@ -1329,20 +1015,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1000
+ content_length: 998
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":"2024-09-12T13:43:36.899574Z","name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-12T13:43:42.906005Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-20T13:01:05.142078Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "1000"
+ - "998"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 12 Sep 2024 13:43:43 GMT
+ - Fri, 20 Sep 2024 13:01:05 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1350,11 +1036,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0e5e487d-adda-4419-9d3f-56f7e0070ded
+ - 649ab5ab-8b89-4a6b-a277-f6ac7e038cc5
status: 200 OK
code: 200
- duration: 70.305956ms
- - id: 27
+ duration: 25.860557ms
+ - id: 21
request:
proto: HTTP/1.1
proto_major: 1
@@ -1370,7 +1056,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/42b4c27e-de35-4338-ac7e-c82be737b7b3
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/0face844-f42e-4006-b0d9-79333c3dfe7f
method: GET
response:
proto: HTTP/2.0
@@ -1378,20 +1064,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1155
+ content_length: 1153
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-12T13:42:29.756137Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsf0sEhDxd3pM17BNdEmz7LM3ZYCGjbU/VP2sLfEP+Loq8EqmRBcNfSea/vOEj/nYP5+13yNO8cd6JeMNHxz92isUp6iqLyEud3jprDR2d9Vhn3t/N8vQiOrnq2rOrYjtB1a9TuGze9fKl8u5pA+YvvhbieG3xJJcx9yyrsvrYOusKzVimNPlBXUCC0nRiRKwSPCDXQSUn980a5oVtcvW54im6wn0QDbyX+B4zjTrKiL8pHlCm6fsW1Kjo3z4NNNVl4LxFCJ1Pi6I2OxDLwxyiCKG9aAt9sMdkQ6qjHA9Ax0Xg9by7YuiG1rqxhfCMYPEsxC9bA39pIa6Z/EFtc6/HwIDAQAB","id":"42b4c27e-de35-4338-ac7e-c82be737b7b3","last_error":null,"last_valid_at":"2024-09-12T13:43:36.899574Z","name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-12T13:43:43.645173568Z","status":"excellent"},"revoked_at":"2024-09-12T13:43:42.906005Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:00.887395Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmcJ//yJ4qReseFox0KnIDsUl2jUuY8u4WNhxd68i/MFMw/HkRx9G1XgaAe7XJLD+J9C+ye4guHVOs1ZAyAW4oijrgC3JwqNHHY/8LqjINavzufI5SHEMi240t8Jw6Yb6vUtjNEahUa3k8mWTVf6iYeJYkVDN48Mf2gynS/7L/pxnASfQ50lou5YBVXY95bBZQGIjBZ0y2LUVtKcAQYjliIFv56Piddyxud+j7x/RCdDLf3hiYsyEO9QKldWJDkrrNCPI3b2Qt4y0ZQ9koJX4s3Ez9W7HJYwSTkh9EvWqQLm9rWgB9ExrD6nTLXA5rwpEc8F4uhnWE48GawtN2ht28QIDAQAB","id":"0face844-f42e-4006-b0d9-79333c3dfe7f","last_error":null,"last_valid_at":null,"name":"test-autoconfig-update.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:06.024977783Z","status":"excellent"},"revoked_at":"2024-09-20T13:01:05.142078Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "1155"
+ - "1153"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 12 Sep 2024 13:43:43 GMT
+ - Fri, 20 Sep 2024 13:01:06 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1399,7 +1085,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 64989514-ad7a-4e6e-8224-740cdbc15a1d
+ - a216a968-45e6-400f-b919-3337682d81f1
status: 200 OK
code: 200
- duration: 392.143015ms
+ duration: 195.33801ms
diff --git a/internal/services/tem/testdata/domain-autoconfig.cassette.yaml b/internal/services/tem/testdata/domain-autoconfig.cassette.yaml
index 4d223f68d..99c59e7d9 100644
--- a/internal/services/tem/testdata/domain-autoconfig.cassette.yaml
+++ b/internal/services/tem/testdata/domain-autoconfig.cassette.yaml
@@ -6,39 +6,37 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 128
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"scaleway-terraform.com","accept_tos":true,"autoconfig":true}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains
- method: POST
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-autoconfig.scaleway-terraform.com&domain=&order_by=domain_asc
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1159
+ content_length: 33
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-05T13:55:20.547989Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-05T13:55:20.547989700Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"dns_zones":[],"total_count":0}'
headers:
Content-Length:
- - "1159"
+ - "33"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:55:20 GMT
+ - Fri, 20 Sep 2024 13:01:00 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -48,46 +46,48 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d0874247-5552-492e-ae5d-15422761cc1f
+ - 068779f3-3160-42aa-9a1c-7d65bc475567
status: 200 OK
code: 200
- duration: 867.553525ms
+ duration: 85.631601ms
- id: 1
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 117
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{"domain":"scaleway-terraform.com","subdomain":"test-autoconfig","project_id":"105bdce1-64c0-48ab-899d-868455867ecf"}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7
- method: GET
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1036
+ content_length: 335
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-05T13:55:20.547989Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-autoconfig","updated_at":"2024-09-20T13:01:00Z"}'
headers:
Content-Length:
- - "1036"
+ - "335"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:55:21 GMT
+ - Fri, 20 Sep 2024 13:01:01 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -97,10 +97,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c8503e70-9cf7-4015-8929-dcd2a6e4779d
+ - 33052c13-e507-4aa8-bf18-d18b563cc8d1
status: 200 OK
code: 200
- duration: 294.624391ms
+ duration: 338.686582ms
- id: 2
request:
proto: HTTP/1.1
@@ -117,7 +117,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-autoconfig.scaleway-terraform.com&domain=&order_by=domain_asc
method: GET
response:
proto: HTTP/2.0
@@ -125,18 +125,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1036
+ content_length: 368
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-05T13:55:20.547989Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-autoconfig","updated_at":"2024-09-20T13:01:00Z"}],"total_count":1}'
headers:
Content-Length:
- - "1036"
+ - "368"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:55:21 GMT
+ - Fri, 20 Sep 2024 13:01:01 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -146,29 +146,29 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2894f097-7e5d-4909-9fb1-4a5c05efdd54
+ - 85cbd1d6-53e4-4428-89ea-0681d8abb1c6
status: 200 OK
code: 200
- duration: 290.827699ms
+ duration: 62.969285ms
- id: 3
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 2
+ content_length: 144
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{}'
+ body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"test-autoconfig.scaleway-terraform.com","accept_tos":true,"autoconfig":true}'
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7/check
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains
method: POST
response:
proto: HTTP/2.0
@@ -176,18 +176,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1037
+ content_length: 1215
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-05T13:55:20.547989Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:01.718838Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:01.785445309Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1037"
+ - "1215"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:55:21 GMT
+ - Fri, 20 Sep 2024 13:01:01 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -197,48 +197,46 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ac6f06a6-a100-4bd6-8928-0c1905d27e6d
+ - 02a812cd-6765-4677-9862-aa3da6ad0b59
status: 200 OK
code: 200
- duration: 38.340432ms
+ duration: 620.436044ms
- id: 4
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 2
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7/check
- method: POST
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1037
+ content_length: 1215
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-05T13:55:20.547989Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:01.718838Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:02.039482177Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1037"
+ - "1215"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:55:22 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -248,48 +246,46 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ed8e6b16-1627-4f16-aab1-dae830305c20
+ - 3441a3c4-8187-438f-af76-4a4762648573
status: 200 OK
code: 200
- duration: 82.501047ms
+ duration: 253.753333ms
- id: 5
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 2
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7/check
- method: POST
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1037
+ content_length: 1215
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-05T13:55:20.547989Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:01.718838Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:02.090415478Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1037"
+ - "1215"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:55:23 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -299,10 +295,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 43a6ac29-56b6-4e0a-b309-5dc4f8c6646b
+ - a053280b-3a04-4b53-810c-78d22c4b6453
status: 200 OK
code: 200
- duration: 76.872511ms
+ duration: 28.691642ms
- id: 6
request:
proto: HTTP/1.1
@@ -321,7 +317,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7/check
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad/check
method: POST
response:
proto: HTTP/2.0
@@ -329,18 +325,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1040
+ content_length: 1092
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-05T13:55:25.225026106Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:02.117428004Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1040"
+ - "1092"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:55:25 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -350,10 +346,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cba969ad-a6f7-46cc-9940-36f14e385b9f
+ - aa6f0239-de08-4c50-b535-96da4094c377
status: 200 OK
code: 200
- duration: 53.922953ms
+ duration: 73.729744ms
- id: 7
request:
proto: HTTP/1.1
@@ -372,7 +368,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7/check
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad/check
method: POST
response:
proto: HTTP/2.0
@@ -380,18 +376,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1037
+ content_length: 1092
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-05T13:55:25.225026Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:02.699342823Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1037"
+ - "1092"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:55:29 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -401,10 +397,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d7d121c6-39b4-4a26-8a92-fabb644bcb0b
+ - fc997be7-1d86-413a-b39c-578d47fde363
status: 200 OK
code: 200
- duration: 44.644585ms
+ duration: 49.46482ms
- id: 8
request:
proto: HTTP/1.1
@@ -423,7 +419,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7/check
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad/check
method: POST
response:
proto: HTTP/2.0
@@ -431,18 +427,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1093
+ content_length: 1092
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":"failed to find an authoritative name server for the domain","last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-05T13:56:33.426523Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:03.743216700Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1093"
+ - "1092"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:55:37 GMT
+ - Fri, 20 Sep 2024 13:01:03 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -452,10 +448,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ae0869bd-d9da-4a4f-8ddf-1c8dedcbdfd1
+ - c388839e-4db1-4e85-b6a1-0092a9d06d2f
status: 200 OK
code: 200
- duration: 61.100853ms
+ duration: 47.207297ms
- id: 9
request:
proto: HTTP/1.1
@@ -474,7 +470,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7/check
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad/check
method: POST
response:
proto: HTTP/2.0
@@ -482,18 +478,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1093
+ content_length: 1092
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":"failed to find an authoritative name server for the domain","last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-05T13:56:33.426523Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:05.791410456Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1093"
+ - "1092"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:55:47 GMT
+ - Fri, 20 Sep 2024 13:01:05 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -503,10 +499,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 34d90ee2-a81d-4db9-980e-73f62618e740
+ - f3d9824b-1c0b-4ee1-bbe3-6f9cb74f8763
status: 200 OK
code: 200
- duration: 87.913538ms
+ duration: 38.160162ms
- id: 10
request:
proto: HTTP/1.1
@@ -525,7 +521,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7/check
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad/check
method: POST
response:
proto: HTTP/2.0
@@ -533,18 +529,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1093
+ content_length: 1092
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":"failed to find an authoritative name server for the domain","last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-05T13:56:33.426523Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:09.873861563Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1093"
+ - "1092"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:55:57 GMT
+ - Fri, 20 Sep 2024 13:01:09 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -554,10 +550,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ea7c1c9d-eea0-424b-8932-a90de44ebbff
+ - 2867bf49-4886-4cab-b66d-baaa456eb7da
status: 200 OK
code: 200
- duration: 60.289118ms
+ duration: 78.96527ms
- id: 11
request:
proto: HTTP/1.1
@@ -576,7 +572,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7/check
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad/check
method: POST
response:
proto: HTTP/2.0
@@ -584,18 +580,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1093
+ content_length: 1092
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":"failed to find an authoritative name server for the domain","last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-05T13:56:33.426523Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:17.950646162Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1093"
+ - "1092"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:56:07 GMT
+ - Fri, 20 Sep 2024 13:01:17 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -605,10 +601,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0e41df55-8a6a-4c50-84f6-a087009d6477
+ - 04e23c61-20f6-42e5-9b81-e4bed647b995
status: 200 OK
code: 200
- duration: 64.720989ms
+ duration: 79.195349ms
- id: 12
request:
proto: HTTP/1.1
@@ -627,7 +623,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7/check
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad/check
method: POST
response:
proto: HTTP/2.0
@@ -635,18 +631,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1093
+ content_length: 1092
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":"failed to find an authoritative name server for the domain","last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-05T13:56:33.426523Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:28.035059061Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1093"
+ - "1092"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:56:17 GMT
+ - Fri, 20 Sep 2024 13:01:28 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -656,10 +652,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 276b8dda-a8db-46a1-a07b-e6b26cf3bcdc
+ - fc224dee-4c44-47ef-a5d0-0e7aa034886f
status: 200 OK
code: 200
- duration: 70.504697ms
+ duration: 85.953591ms
- id: 13
request:
proto: HTTP/1.1
@@ -678,7 +674,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7/check
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad/check
method: POST
response:
proto: HTTP/2.0
@@ -686,18 +682,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1093
+ content_length: 1092
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":"failed to find an authoritative name server for the domain","last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-05T13:56:33.426523Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":null,"name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:38.088769359Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1093"
+ - "1092"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:56:27 GMT
+ - Fri, 20 Sep 2024 13:01:38 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -707,10 +703,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0a1d3e7b-a76e-4a7f-b171-85e482b28b8c
+ - 15419050-5c03-45e4-ba73-b86432d53ae4
status: 200 OK
code: 200
- duration: 72.697283ms
+ duration: 62.077398ms
- id: 14
request:
proto: HTTP/1.1
@@ -729,7 +725,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7/check
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad/check
method: POST
response:
proto: HTTP/2.0
@@ -737,18 +733,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1060
+ content_length: 1112
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":null,"last_valid_at":"2024-09-05T13:56:37.478029Z","name":"scaleway-terraform.com","next_check_at":"2024-09-05T13:57:37.478029Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":"2024-09-20T13:01:38.567529Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:38.567529Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
headers:
Content-Length:
- - "1060"
+ - "1112"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:56:37 GMT
+ - Fri, 20 Sep 2024 13:01:48 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -758,10 +754,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c82264a8-bd4e-4298-859d-0d200ef1ea8c
+ - daaa40f0-c40b-44be-8d37-a422d91b43d6
status: 200 OK
code: 200
- duration: 128.542126ms
+ duration: 68.016699ms
- id: 15
request:
proto: HTTP/1.1
@@ -778,7 +774,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad
method: GET
response:
proto: HTTP/2.0
@@ -786,18 +782,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1059
+ content_length: 1238
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":null,"last_valid_at":"2024-09-05T13:56:37.478029Z","name":"scaleway-terraform.com","next_check_at":"2024-09-05T13:57:37.478029Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":"2024-09-20T13:01:38.567529Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:38.567529Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:48.214640232Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
headers:
Content-Length:
- - "1059"
+ - "1238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:56:38 GMT
+ - Fri, 20 Sep 2024 13:01:48 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -807,10 +803,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 92041131-e98b-4d02-8fae-eb75c82dca31
+ - b5723dad-8c7f-42a4-9158-27f5003c7240
status: 200 OK
code: 200
- duration: 302.660774ms
+ duration: 30.087739ms
- id: 16
request:
proto: HTTP/1.1
@@ -827,7 +823,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad
method: GET
response:
proto: HTTP/2.0
@@ -835,18 +831,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1059
+ content_length: 1238
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":null,"last_valid_at":"2024-09-05T13:56:37.478029Z","name":"scaleway-terraform.com","next_check_at":"2024-09-05T13:57:37.478029Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":"2024-09-20T13:01:38.567529Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:38.567529Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:48.392363011Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
headers:
Content-Length:
- - "1059"
+ - "1238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:56:38 GMT
+ - Fri, 20 Sep 2024 13:01:48 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -856,10 +852,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3ee145f3-152f-4968-a0d4-e585b191921e
+ - 2dbf112e-d942-4db2-945f-c7d15a57e4b8
status: 200 OK
code: 200
- duration: 198.346707ms
+ duration: 20.275831ms
- id: 17
request:
proto: HTTP/1.1
@@ -876,7 +872,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-autoconfig.scaleway-terraform.com&domain=&order_by=domain_asc&project_id=105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
proto: HTTP/2.0
@@ -884,18 +880,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1059
+ content_length: 368
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":null,"last_valid_at":"2024-09-05T13:56:37.478029Z","name":"scaleway-terraform.com","next_check_at":"2024-09-05T13:57:37.478029Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-autoconfig","updated_at":"2024-09-20T13:01:39Z"}],"total_count":1}'
headers:
Content-Length:
- - "1059"
+ - "368"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:56:39 GMT
+ - Fri, 20 Sep 2024 13:01:48 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -905,10 +901,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 139852d6-4061-4a29-b5f7-ae291c548711
+ - 92725340-3e9e-4a6a-a4f6-5299be549b6d
status: 200 OK
code: 200
- duration: 332.302984ms
+ duration: 77.085821ms
- id: 18
request:
proto: HTTP/1.1
@@ -925,7 +921,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad
method: GET
response:
proto: HTTP/2.0
@@ -933,18 +929,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1059
+ content_length: 1238
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":null,"last_valid_at":"2024-09-05T13:56:37.478029Z","name":"scaleway-terraform.com","next_check_at":"2024-09-05T13:57:37.478029Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":"2024-09-20T13:01:38.567529Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:38.567529Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:48.833796401Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
headers:
Content-Length:
- - "1059"
+ - "1238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:56:39 GMT
+ - Fri, 20 Sep 2024 13:01:48 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -954,10 +950,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 334b6dc5-38a9-4438-8685-e5636fff2284
+ - 404d460c-550b-47f9-b332-36c0ec4356f8
status: 200 OK
code: 200
- duration: 304.129997ms
+ duration: 28.38352ms
- id: 19
request:
proto: HTTP/1.1
@@ -974,7 +970,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad
method: GET
response:
proto: HTTP/2.0
@@ -982,18 +978,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1059
+ content_length: 1238
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":null,"last_valid_at":"2024-09-05T13:56:37.478029Z","name":"scaleway-terraform.com","next_check_at":"2024-09-05T13:57:37.478029Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":"2024-09-20T13:01:38.567529Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:38.567529Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:49.040233605Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
headers:
Content-Length:
- - "1059"
+ - "1238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:56:40 GMT
+ - Fri, 20 Sep 2024 13:01:49 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -1003,11 +999,60 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 084f8c24-3125-4793-9949-d72b4d5370cd
+ - 14f32799-54d8-46bb-95fb-5f934f29bebe
status: 200 OK
code: 200
- duration: 255.7205ms
+ duration: 203.067189ms
- id: 20
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1238
+ uncompressed: false
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":"2024-09-20T13:01:38.567529Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:38.567529Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.test-autoconfig","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:49.635317326Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ headers:
+ Content-Length:
+ - "1238"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:01:49 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 624e934c-0b43-45ab-a547-0c8334e4acc7
+ status: 200 OK
+ code: 200
+ duration: 30.170451ms
+ - id: 21
request:
proto: HTTP/1.1
proto_major: 1
@@ -1025,7 +1070,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7/revoke
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad/revoke
method: POST
response:
proto: HTTP/2.0
@@ -1033,18 +1078,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 984
+ content_length: 1019
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":null,"last_valid_at":"2024-09-05T13:56:37.478029Z","name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-05T13:56:40.684991180Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":"2024-09-20T13:01:38.567529Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-20T13:01:50.351539514Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "984"
+ - "1019"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:56:41 GMT
+ - Fri, 20 Sep 2024 13:01:50 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -1054,11 +1099,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2479e7c6-1844-4d65-990f-4b8a3b3b0ff8
+ - 9d727323-dd61-4b2d-9e69-a9ae5326009a
status: 200 OK
code: 200
- duration: 1.17083373s
- - id: 21
+ duration: 735.621313ms
+ - id: 22
request:
proto: HTTP/1.1
proto_major: 1
@@ -1074,7 +1119,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad
method: GET
response:
proto: HTTP/2.0
@@ -1082,18 +1127,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1009
+ content_length: 1171
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":null,"last_valid_at":"2024-09-05T13:56:37.478029Z","name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-05T13:56:40.684991Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":"2024-09-20T13:01:38.567529Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:50.595676097Z","status":"excellent"},"revoked_at":"2024-09-20T13:01:50.351539Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "1009"
+ - "1171"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:56:41 GMT
+ - Fri, 20 Sep 2024 13:01:50 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -1103,11 +1148,109 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f3aee021-48d3-4ca2-8c0a-32e098088621
+ - 33da0391-2483-4d50-adde-43d9a0e6e8ee
status: 200 OK
code: 200
- duration: 303.440073ms
- - id: 22
+ duration: 249.677369ms
+ - id: 23
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-autoconfig.scaleway-terraform.com&domain=&order_by=domain_asc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 368
+ uncompressed: false
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-autoconfig","updated_at":"2024-09-20T13:01:39Z"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "368"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:01:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 5367a678-898e-4b0a-8534-a93dfa8f91aa
+ status: 200 OK
+ code: 200
+ duration: 77.102965ms
+ - id: 24
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-autoconfig.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 2
+ uncompressed: false
+ body: '{}'
+ headers:
+ Content-Length:
+ - "2"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:01:50 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - cc86b771-2d18-4f72-899d-3ce7deb4a99c
+ status: 200 OK
+ code: 200
+ duration: 225.866254ms
+ - id: 25
request:
proto: HTTP/1.1
proto_major: 1
@@ -1125,7 +1268,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7/revoke
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad/revoke
method: POST
response:
proto: HTTP/2.0
@@ -1133,18 +1276,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 981
+ content_length: 1016
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":null,"last_valid_at":"2024-09-05T13:56:37.478029Z","name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-05T13:56:40.684991Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":"2024-09-20T13:01:38.567529Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-20T13:01:50.351539Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "981"
+ - "1016"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:56:41 GMT
+ - Fri, 20 Sep 2024 13:01:51 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -1154,11 +1297,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0625e46c-c846-4e0c-aa94-6af9ca8c5480
+ - 479eeff9-29fc-431d-851b-240c93926b53
status: 200 OK
code: 200
- duration: 67.455542ms
- - id: 23
+ duration: 100.156857ms
+ - id: 26
request:
proto: HTTP/1.1
proto_major: 1
@@ -1174,7 +1317,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/408fcb88-9e13-4522-8944-a4dba9f070ad
method: GET
response:
proto: HTTP/2.0
@@ -1182,18 +1325,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1009
+ content_length: 1171
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-05T13:55:20.547992Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyQHAn+o+H9BHw3sh2zaOanbwXKEuu0X5rm+Ul5qQ8P6fvEXipkgodyp0ZiAhQ4N+crNJB1mNXHt3MYl317TJ+9f3BOlojiUTw0I1qxpzUf5aSoXUUdMvOE+WOWhCaQarTDBTWlGBLuG3O3/AvHuyybTMVNyjTy4hqTlWCpM6wpS4Sw3otChXHIUBSNaDb2ngR0qadOKBnvHSgbu0QLD27EXG0WkAeA8uYWNkYT9y65B7IzeSIuzauM66Pk/B70LTY/sDdxOyytpuM+zi3zhbDEjGpsqO7C6CRgqyCpKh5LEB6IkYgW1K67mx7h/OGAGftL9wp5jBe7bR8sGF3K/cMwIDAQAB","id":"6cbfe5de-5f4f-47fd-bbd2-669f920cf7a7","last_error":null,"last_valid_at":"2024-09-05T13:56:37.478029Z","name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-05T13:56:40.684991Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.727002Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtv9F8ZR5UineByDBLwT77/Sk5cQSPW4m/0euQIG60zOImK1M/vYKa6/Fh3b5HMj+XPSH5be8GLQlYq1cxcZ28seoiritvkMlNdhNGav6CXZMLTc6wHRoeXRUTQFdiUo70mH0Jip9d2pytRaz7e2aIzDFNWvjoOMsnCAwjHU7FIym/0ihgsJ97eOAkyne2w3DVLMCySF1PCAO1iUMNzdOIrDI9VttC1bwvO+Gxc3PvM6DwZLKH/xzQwui9wMv7GPT+bxIXmBB5xu8ufRlNCIfqPWezUGLub1Zon6PmhNRYvN9tw1FieMgCEj+A5CZRXNBSWX9ZwVRcBvBfe4q2L1ykwIDAQAB","id":"408fcb88-9e13-4522-8944-a4dba9f070ad","last_error":null,"last_valid_at":"2024-09-20T13:01:38.567529Z","name":"test-autoconfig.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:51.124113321Z","status":"excellent"},"revoked_at":"2024-09-20T13:01:50.351539Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "1009"
+ - "1171"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Thu, 05 Sep 2024 13:56:41 GMT
+ - Fri, 20 Sep 2024 13:01:51 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -1203,7 +1346,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1a55b3b5-d5f2-4786-be42-28b6c8dba1a7
+ - 4d71d9b6-61e3-4323-8219-579ef1dacdd5
status: 200 OK
code: 200
- duration: 297.744689ms
+ duration: 73.580086ms
diff --git a/internal/services/tem/testdata/domain-basic.cassette.yaml b/internal/services/tem/testdata/domain-basic.cassette.yaml
index ae672abd8..7e621a776 100644
--- a/internal/services/tem/testdata/domain-basic.cassette.yaml
+++ b/internal/services/tem/testdata/domain-basic.cassette.yaml
@@ -27,18 +27,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1149
+ content_length: 1173
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-09T14:27:51.758433Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtEZrDKS7dD/uH6k5tW4t0eb92ejMRTCrOtNVmlCE6iWWbLluSlbPo1h9Oe+/YBzceDNR9kXyU27+Nqt1+pUYtNvmA3al2zpj3S64Cizn/IzFdFzgoXcJLS3VBiXeHuCpEsWSVECTcI11up6Iw8ntDNeKIg0BF74q8lkyBVhIsihE/WLYqxTgqC/6lonKgmuBd9pRmY/s64zYMT6E/hmW/GsO5vq0ZPgZ4KlSoWV22x5j7LQOxG09D1Rwblg+9bv7iY9I+cHtOWLpOMVG+kig7i6z4IRIKg7CvodkhMibMRERXfdvnXRqjXKxXczV0zRsY9rp6zX+W+J3gmMVGcPG1wIDAQAB","id":"40cc2e9a-3f5d-4910-9e9a-d973f8da26bb","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-rs","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-09T14:27:51.758430024Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:00:56.470620Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApbfzDS7xB2uKU7LKDlohm9LP54lY/DmqtYGO6rPHZ2v5gsi57lzhtxFAYi3cil+R8p8IgRTRXCIAvQbfkMZ8XWvtsk1osTrGMqIiByJl2EbGnhmIZMiydpiz/T4o1xnLBhTt8s1Mznn9xJcr89Bg35dJJQhOWBkP7LvXlPbLHJ4lfSTZUfzmnRIzNbXOiARMmtTdETIlhq5OVwxn+rIGG2eQWkUl7VBrwnyCOF3e+ejAcPdghB4sG6XrLyv3bWcj160M4I2Y9IGtaH+92yO8ZCJzsUkCLtNcH6JwMCtRonPKE8JGwZ0dAwG3EPcPeFXZvUg7y2gmmMSAidsCVPA8LQIDAQAB","id":"b9f9415f-e97d-438d-9061-f5eed6c05048","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-rs","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:00:56.510683606Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1149"
+ - "1173"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 09 Sep 2024 14:27:51 GMT
+ - Fri, 20 Sep 2024 13:00:56 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -48,10 +48,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f83e5609-9ae5-4c4d-bd9f-906d4d09ad59
+ - c26e4301-443e-4269-a037-494bd5dc4c07
status: 200 OK
code: 200
- duration: 305.121356ms
+ duration: 340.759286ms
- id: 1
request:
proto: HTTP/1.1
@@ -68,7 +68,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/40cc2e9a-3f5d-4910-9e9a-d973f8da26bb
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/b9f9415f-e97d-438d-9061-f5eed6c05048
method: GET
response:
proto: HTTP/2.0
@@ -76,18 +76,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1026
+ content_length: 1173
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-09T14:27:51.758433Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtEZrDKS7dD/uH6k5tW4t0eb92ejMRTCrOtNVmlCE6iWWbLluSlbPo1h9Oe+/YBzceDNR9kXyU27+Nqt1+pUYtNvmA3al2zpj3S64Cizn/IzFdFzgoXcJLS3VBiXeHuCpEsWSVECTcI11up6Iw8ntDNeKIg0BF74q8lkyBVhIsihE/WLYqxTgqC/6lonKgmuBd9pRmY/s64zYMT6E/hmW/GsO5vq0ZPgZ4KlSoWV22x5j7LQOxG09D1Rwblg+9bv7iY9I+cHtOWLpOMVG+kig7i6z4IRIKg7CvodkhMibMRERXfdvnXRqjXKxXczV0zRsY9rp6zX+W+J3gmMVGcPG1wIDAQAB","id":"40cc2e9a-3f5d-4910-9e9a-d973f8da26bb","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-rs","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:00:56.470620Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApbfzDS7xB2uKU7LKDlohm9LP54lY/DmqtYGO6rPHZ2v5gsi57lzhtxFAYi3cil+R8p8IgRTRXCIAvQbfkMZ8XWvtsk1osTrGMqIiByJl2EbGnhmIZMiydpiz/T4o1xnLBhTt8s1Mznn9xJcr89Bg35dJJQhOWBkP7LvXlPbLHJ4lfSTZUfzmnRIzNbXOiARMmtTdETIlhq5OVwxn+rIGG2eQWkUl7VBrwnyCOF3e+ejAcPdghB4sG6XrLyv3bWcj160M4I2Y9IGtaH+92yO8ZCJzsUkCLtNcH6JwMCtRonPKE8JGwZ0dAwG3EPcPeFXZvUg7y2gmmMSAidsCVPA8LQIDAQAB","id":"b9f9415f-e97d-438d-9061-f5eed6c05048","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-rs","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:00:56.747807577Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1026"
+ - "1173"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 09 Sep 2024 14:27:52 GMT
+ - Fri, 20 Sep 2024 13:00:56 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -97,10 +97,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2b1aadcb-6a57-4255-ba60-9a4c2a4168c4
+ - cc66779e-18a2-4276-afec-0ec6150d081e
status: 200 OK
code: 200
- duration: 304.498483ms
+ duration: 269.075443ms
- id: 2
request:
proto: HTTP/1.1
@@ -117,7 +117,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/40cc2e9a-3f5d-4910-9e9a-d973f8da26bb
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/b9f9415f-e97d-438d-9061-f5eed6c05048
method: GET
response:
proto: HTTP/2.0
@@ -125,18 +125,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1026
+ content_length: 1173
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-09T14:27:51.758433Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtEZrDKS7dD/uH6k5tW4t0eb92ejMRTCrOtNVmlCE6iWWbLluSlbPo1h9Oe+/YBzceDNR9kXyU27+Nqt1+pUYtNvmA3al2zpj3S64Cizn/IzFdFzgoXcJLS3VBiXeHuCpEsWSVECTcI11up6Iw8ntDNeKIg0BF74q8lkyBVhIsihE/WLYqxTgqC/6lonKgmuBd9pRmY/s64zYMT6E/hmW/GsO5vq0ZPgZ4KlSoWV22x5j7LQOxG09D1Rwblg+9bv7iY9I+cHtOWLpOMVG+kig7i6z4IRIKg7CvodkhMibMRERXfdvnXRqjXKxXczV0zRsY9rp6zX+W+J3gmMVGcPG1wIDAQAB","id":"40cc2e9a-3f5d-4910-9e9a-d973f8da26bb","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-rs","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:00:56.470620Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApbfzDS7xB2uKU7LKDlohm9LP54lY/DmqtYGO6rPHZ2v5gsi57lzhtxFAYi3cil+R8p8IgRTRXCIAvQbfkMZ8XWvtsk1osTrGMqIiByJl2EbGnhmIZMiydpiz/T4o1xnLBhTt8s1Mznn9xJcr89Bg35dJJQhOWBkP7LvXlPbLHJ4lfSTZUfzmnRIzNbXOiARMmtTdETIlhq5OVwxn+rIGG2eQWkUl7VBrwnyCOF3e+ejAcPdghB4sG6XrLyv3bWcj160M4I2Y9IGtaH+92yO8ZCJzsUkCLtNcH6JwMCtRonPKE8JGwZ0dAwG3EPcPeFXZvUg7y2gmmMSAidsCVPA8LQIDAQAB","id":"b9f9415f-e97d-438d-9061-f5eed6c05048","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-rs","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:00:56.983440444Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1026"
+ - "1173"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 09 Sep 2024 14:27:52 GMT
+ - Fri, 20 Sep 2024 13:00:57 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -146,10 +146,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b3fe135d-82bc-4cc5-82fd-1dcbb8675ee4
+ - c7041a73-4f16-4700-b72a-3e5f322c7293
status: 200 OK
code: 200
- duration: 202.022521ms
+ duration: 78.572325ms
- id: 3
request:
proto: HTTP/1.1
@@ -166,7 +166,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/40cc2e9a-3f5d-4910-9e9a-d973f8da26bb
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/b9f9415f-e97d-438d-9061-f5eed6c05048
method: GET
response:
proto: HTTP/2.0
@@ -174,18 +174,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1026
+ content_length: 1173
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-09T14:27:51.758433Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtEZrDKS7dD/uH6k5tW4t0eb92ejMRTCrOtNVmlCE6iWWbLluSlbPo1h9Oe+/YBzceDNR9kXyU27+Nqt1+pUYtNvmA3al2zpj3S64Cizn/IzFdFzgoXcJLS3VBiXeHuCpEsWSVECTcI11up6Iw8ntDNeKIg0BF74q8lkyBVhIsihE/WLYqxTgqC/6lonKgmuBd9pRmY/s64zYMT6E/hmW/GsO5vq0ZPgZ4KlSoWV22x5j7LQOxG09D1Rwblg+9bv7iY9I+cHtOWLpOMVG+kig7i6z4IRIKg7CvodkhMibMRERXfdvnXRqjXKxXczV0zRsY9rp6zX+W+J3gmMVGcPG1wIDAQAB","id":"40cc2e9a-3f5d-4910-9e9a-d973f8da26bb","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-rs","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:00:56.470620Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApbfzDS7xB2uKU7LKDlohm9LP54lY/DmqtYGO6rPHZ2v5gsi57lzhtxFAYi3cil+R8p8IgRTRXCIAvQbfkMZ8XWvtsk1osTrGMqIiByJl2EbGnhmIZMiydpiz/T4o1xnLBhTt8s1Mznn9xJcr89Bg35dJJQhOWBkP7LvXlPbLHJ4lfSTZUfzmnRIzNbXOiARMmtTdETIlhq5OVwxn+rIGG2eQWkUl7VBrwnyCOF3e+ejAcPdghB4sG6XrLyv3bWcj160M4I2Y9IGtaH+92yO8ZCJzsUkCLtNcH6JwMCtRonPKE8JGwZ0dAwG3EPcPeFXZvUg7y2gmmMSAidsCVPA8LQIDAQAB","id":"b9f9415f-e97d-438d-9061-f5eed6c05048","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-rs","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:00:57.313646008Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1026"
+ - "1173"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 09 Sep 2024 14:27:52 GMT
+ - Fri, 20 Sep 2024 13:00:57 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -195,10 +195,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6aef6b7a-a5ab-4093-ae9e-23c8cd8eb6a1
+ - 2e6f8411-c8f2-4905-abbc-16a0b6b4ed26
status: 200 OK
code: 200
- duration: 296.788852ms
+ duration: 35.591031ms
- id: 4
request:
proto: HTTP/1.1
@@ -215,7 +215,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/40cc2e9a-3f5d-4910-9e9a-d973f8da26bb
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/b9f9415f-e97d-438d-9061-f5eed6c05048
method: GET
response:
proto: HTTP/2.0
@@ -223,18 +223,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1026
+ content_length: 1173
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-09T14:27:51.758433Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtEZrDKS7dD/uH6k5tW4t0eb92ejMRTCrOtNVmlCE6iWWbLluSlbPo1h9Oe+/YBzceDNR9kXyU27+Nqt1+pUYtNvmA3al2zpj3S64Cizn/IzFdFzgoXcJLS3VBiXeHuCpEsWSVECTcI11up6Iw8ntDNeKIg0BF74q8lkyBVhIsihE/WLYqxTgqC/6lonKgmuBd9pRmY/s64zYMT6E/hmW/GsO5vq0ZPgZ4KlSoWV22x5j7LQOxG09D1Rwblg+9bv7iY9I+cHtOWLpOMVG+kig7i6z4IRIKg7CvodkhMibMRERXfdvnXRqjXKxXczV0zRsY9rp6zX+W+J3gmMVGcPG1wIDAQAB","id":"40cc2e9a-3f5d-4910-9e9a-d973f8da26bb","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-rs","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:00:56.470620Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApbfzDS7xB2uKU7LKDlohm9LP54lY/DmqtYGO6rPHZ2v5gsi57lzhtxFAYi3cil+R8p8IgRTRXCIAvQbfkMZ8XWvtsk1osTrGMqIiByJl2EbGnhmIZMiydpiz/T4o1xnLBhTt8s1Mznn9xJcr89Bg35dJJQhOWBkP7LvXlPbLHJ4lfSTZUfzmnRIzNbXOiARMmtTdETIlhq5OVwxn+rIGG2eQWkUl7VBrwnyCOF3e+ejAcPdghB4sG6XrLyv3bWcj160M4I2Y9IGtaH+92yO8ZCJzsUkCLtNcH6JwMCtRonPKE8JGwZ0dAwG3EPcPeFXZvUg7y2gmmMSAidsCVPA8LQIDAQAB","id":"b9f9415f-e97d-438d-9061-f5eed6c05048","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.terraform-rs","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:00:57.903605066Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1026"
+ - "1173"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 09 Sep 2024 14:27:53 GMT
+ - Fri, 20 Sep 2024 13:00:57 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -244,10 +244,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fbfa9766-0f1a-4413-82f2-f2f54ec3f9c5
+ - 3003930d-4515-4fc7-a9b2-a83ab494de64
status: 200 OK
code: 200
- duration: 381.303511ms
+ duration: 240.76317ms
- id: 5
request:
proto: HTTP/1.1
@@ -266,7 +266,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/40cc2e9a-3f5d-4910-9e9a-d973f8da26bb/revoke
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/b9f9415f-e97d-438d-9061-f5eed6c05048/revoke
method: POST
response:
proto: HTTP/2.0
@@ -274,18 +274,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 960
+ content_length: 979
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-09T14:27:51.758433Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtEZrDKS7dD/uH6k5tW4t0eb92ejMRTCrOtNVmlCE6iWWbLluSlbPo1h9Oe+/YBzceDNR9kXyU27+Nqt1+pUYtNvmA3al2zpj3S64Cizn/IzFdFzgoXcJLS3VBiXeHuCpEsWSVECTcI11up6Iw8ntDNeKIg0BF74q8lkyBVhIsihE/WLYqxTgqC/6lonKgmuBd9pRmY/s64zYMT6E/hmW/GsO5vq0ZPgZ4KlSoWV22x5j7LQOxG09D1Rwblg+9bv7iY9I+cHtOWLpOMVG+kig7i6z4IRIKg7CvodkhMibMRERXfdvnXRqjXKxXczV0zRsY9rp6zX+W+J3gmMVGcPG1wIDAQAB","id":"40cc2e9a-3f5d-4910-9e9a-d973f8da26bb","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-09T14:27:54.440018733Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:00:56.470620Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApbfzDS7xB2uKU7LKDlohm9LP54lY/DmqtYGO6rPHZ2v5gsi57lzhtxFAYi3cil+R8p8IgRTRXCIAvQbfkMZ8XWvtsk1osTrGMqIiByJl2EbGnhmIZMiydpiz/T4o1xnLBhTt8s1Mznn9xJcr89Bg35dJJQhOWBkP7LvXlPbLHJ4lfSTZUfzmnRIzNbXOiARMmtTdETIlhq5OVwxn+rIGG2eQWkUl7VBrwnyCOF3e+ejAcPdghB4sG6XrLyv3bWcj160M4I2Y9IGtaH+92yO8ZCJzsUkCLtNcH6JwMCtRonPKE8JGwZ0dAwG3EPcPeFXZvUg7y2gmmMSAidsCVPA8LQIDAQAB","id":"b9f9415f-e97d-438d-9061-f5eed6c05048","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-20T13:00:58.827101763Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "960"
+ - "979"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 09 Sep 2024 14:27:54 GMT
+ - Fri, 20 Sep 2024 13:00:58 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -295,10 +295,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 324eab73-be6b-4ef4-af36-90097d2b60bf
+ - 2441a1d9-4da0-475e-8000-86f73c2ab222
status: 200 OK
code: 200
- duration: 614.395101ms
+ duration: 947.869491ms
- id: 6
request:
proto: HTTP/1.1
@@ -315,7 +315,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/40cc2e9a-3f5d-4910-9e9a-d973f8da26bb
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/b9f9415f-e97d-438d-9061-f5eed6c05048
method: GET
response:
proto: HTTP/2.0
@@ -323,18 +323,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 986
+ content_length: 1132
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-09T14:27:51.758433Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtEZrDKS7dD/uH6k5tW4t0eb92ejMRTCrOtNVmlCE6iWWbLluSlbPo1h9Oe+/YBzceDNR9kXyU27+Nqt1+pUYtNvmA3al2zpj3S64Cizn/IzFdFzgoXcJLS3VBiXeHuCpEsWSVECTcI11up6Iw8ntDNeKIg0BF74q8lkyBVhIsihE/WLYqxTgqC/6lonKgmuBd9pRmY/s64zYMT6E/hmW/GsO5vq0ZPgZ4KlSoWV22x5j7LQOxG09D1Rwblg+9bv7iY9I+cHtOWLpOMVG+kig7i6z4IRIKg7CvodkhMibMRERXfdvnXRqjXKxXczV0zRsY9rp6zX+W+J3gmMVGcPG1wIDAQAB","id":"40cc2e9a-3f5d-4910-9e9a-d973f8da26bb","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-09T14:27:54.440018Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:00:56.470620Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApbfzDS7xB2uKU7LKDlohm9LP54lY/DmqtYGO6rPHZ2v5gsi57lzhtxFAYi3cil+R8p8IgRTRXCIAvQbfkMZ8XWvtsk1osTrGMqIiByJl2EbGnhmIZMiydpiz/T4o1xnLBhTt8s1Mznn9xJcr89Bg35dJJQhOWBkP7LvXlPbLHJ4lfSTZUfzmnRIzNbXOiARMmtTdETIlhq5OVwxn+rIGG2eQWkUl7VBrwnyCOF3e+ejAcPdghB4sG6XrLyv3bWcj160M4I2Y9IGtaH+92yO8ZCJzsUkCLtNcH6JwMCtRonPKE8JGwZ0dAwG3EPcPeFXZvUg7y2gmmMSAidsCVPA8LQIDAQAB","id":"b9f9415f-e97d-438d-9061-f5eed6c05048","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:00:59.069170562Z","status":"excellent"},"revoked_at":"2024-09-20T13:00:58.827101Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "986"
+ - "1132"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 09 Sep 2024 14:27:54 GMT
+ - Fri, 20 Sep 2024 13:00:59 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -344,10 +344,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1ab0d23e-9f26-4b80-a8b1-45ab8e1386da
+ - ad5311c7-f073-40bd-8a0b-2fc0242058ba
status: 200 OK
code: 200
- duration: 223.374384ms
+ duration: 275.554564ms
- id: 7
request:
proto: HTTP/1.1
@@ -366,7 +366,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/40cc2e9a-3f5d-4910-9e9a-d973f8da26bb/revoke
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/b9f9415f-e97d-438d-9061-f5eed6c05048/revoke
method: POST
response:
proto: HTTP/2.0
@@ -374,18 +374,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 957
+ content_length: 976
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-09T14:27:51.758433Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtEZrDKS7dD/uH6k5tW4t0eb92ejMRTCrOtNVmlCE6iWWbLluSlbPo1h9Oe+/YBzceDNR9kXyU27+Nqt1+pUYtNvmA3al2zpj3S64Cizn/IzFdFzgoXcJLS3VBiXeHuCpEsWSVECTcI11up6Iw8ntDNeKIg0BF74q8lkyBVhIsihE/WLYqxTgqC/6lonKgmuBd9pRmY/s64zYMT6E/hmW/GsO5vq0ZPgZ4KlSoWV22x5j7LQOxG09D1Rwblg+9bv7iY9I+cHtOWLpOMVG+kig7i6z4IRIKg7CvodkhMibMRERXfdvnXRqjXKxXczV0zRsY9rp6zX+W+J3gmMVGcPG1wIDAQAB","id":"40cc2e9a-3f5d-4910-9e9a-d973f8da26bb","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-09T14:27:54.440018Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:00:56.470620Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApbfzDS7xB2uKU7LKDlohm9LP54lY/DmqtYGO6rPHZ2v5gsi57lzhtxFAYi3cil+R8p8IgRTRXCIAvQbfkMZ8XWvtsk1osTrGMqIiByJl2EbGnhmIZMiydpiz/T4o1xnLBhTt8s1Mznn9xJcr89Bg35dJJQhOWBkP7LvXlPbLHJ4lfSTZUfzmnRIzNbXOiARMmtTdETIlhq5OVwxn+rIGG2eQWkUl7VBrwnyCOF3e+ejAcPdghB4sG6XrLyv3bWcj160M4I2Y9IGtaH+92yO8ZCJzsUkCLtNcH6JwMCtRonPKE8JGwZ0dAwG3EPcPeFXZvUg7y2gmmMSAidsCVPA8LQIDAQAB","id":"b9f9415f-e97d-438d-9061-f5eed6c05048","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-20T13:00:58.827101Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "957"
+ - "976"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 09 Sep 2024 14:27:54 GMT
+ - Fri, 20 Sep 2024 13:00:59 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -395,10 +395,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3f2a0f65-d52f-4f56-aa6a-1743e30d26f0
+ - 182dad5b-9ac7-461f-b8f1-a113a643da90
status: 200 OK
code: 200
- duration: 24.315261ms
+ duration: 79.639253ms
- id: 8
request:
proto: HTTP/1.1
@@ -415,7 +415,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/40cc2e9a-3f5d-4910-9e9a-d973f8da26bb
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/b9f9415f-e97d-438d-9061-f5eed6c05048
method: GET
response:
proto: HTTP/2.0
@@ -423,18 +423,18 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 986
+ content_length: 1132
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-09T14:27:51.758433Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtEZrDKS7dD/uH6k5tW4t0eb92ejMRTCrOtNVmlCE6iWWbLluSlbPo1h9Oe+/YBzceDNR9kXyU27+Nqt1+pUYtNvmA3al2zpj3S64Cizn/IzFdFzgoXcJLS3VBiXeHuCpEsWSVECTcI11up6Iw8ntDNeKIg0BF74q8lkyBVhIsihE/WLYqxTgqC/6lonKgmuBd9pRmY/s64zYMT6E/hmW/GsO5vq0ZPgZ4KlSoWV22x5j7LQOxG09D1Rwblg+9bv7iY9I+cHtOWLpOMVG+kig7i6z4IRIKg7CvodkhMibMRERXfdvnXRqjXKxXczV0zRsY9rp6zX+W+J3gmMVGcPG1wIDAQAB","id":"40cc2e9a-3f5d-4910-9e9a-d973f8da26bb","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-09T14:27:54.440018Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:00:56.470620Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApbfzDS7xB2uKU7LKDlohm9LP54lY/DmqtYGO6rPHZ2v5gsi57lzhtxFAYi3cil+R8p8IgRTRXCIAvQbfkMZ8XWvtsk1osTrGMqIiByJl2EbGnhmIZMiydpiz/T4o1xnLBhTt8s1Mznn9xJcr89Bg35dJJQhOWBkP7LvXlPbLHJ4lfSTZUfzmnRIzNbXOiARMmtTdETIlhq5OVwxn+rIGG2eQWkUl7VBrwnyCOF3e+ejAcPdghB4sG6XrLyv3bWcj160M4I2Y9IGtaH+92yO8ZCJzsUkCLtNcH6JwMCtRonPKE8JGwZ0dAwG3EPcPeFXZvUg7y2gmmMSAidsCVPA8LQIDAQAB","id":"b9f9415f-e97d-438d-9061-f5eed6c05048","last_error":null,"last_valid_at":null,"name":"terraform-rs.test.local","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:00:59.305151563Z","status":"excellent"},"revoked_at":"2024-09-20T13:00:58.827101Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "986"
+ - "1132"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 09 Sep 2024 14:27:55 GMT
+ - Fri, 20 Sep 2024 13:00:59 GMT
Server:
- Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
@@ -444,7 +444,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6a878fd1-4a16-45db-85b4-9a00d00c254e
+ - 08158ebe-0d17-4e84-962c-4b4951685a90
status: 200 OK
code: 200
- duration: 320.553121ms
+ duration: 438.378323ms
diff --git a/internal/services/tem/testdata/domain-validation-no-validation.cassette.yaml b/internal/services/tem/testdata/domain-validation-no-validation.cassette.yaml
index 143f2c160..6174bae14 100644
--- a/internal/services/tem/testdata/domain-validation-no-validation.cassette.yaml
+++ b/internal/services/tem/testdata/domain-validation-no-validation.cassette.yaml
@@ -6,19 +6,168 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 110
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=validation-no-validation.scaleway-terraform.com&domain=&order_by=domain_asc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 33
+ uncompressed: false
+ body: '{"dns_zones":[],"total_count":0}'
+ headers:
+ Content-Length:
+ - "33"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:01:03 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 191413d9-2d00-4a76-b10b-01968901c749
+ status: 200 OK
+ code: 200
+ duration: 58.936072ms
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 126
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: '{"domain":"scaleway-terraform.com","subdomain":"validation-no-validation","project_id":"105bdce1-64c0-48ab-899d-868455867ecf"}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 344
+ uncompressed: false
+ body: '{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"validation-no-validation","updated_at":"2024-09-20T13:01:03Z"}'
+ headers:
+ Content-Length:
+ - "344"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:01:03 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - cd2de4f3-4bb1-4434-ba8e-aeccbc891f35
+ status: 200 OK
+ code: 200
+ duration: 499.104823ms
+ - id: 2
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"scaleway-terraform.com","accept_tos":true}'
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=validation-no-validation.scaleway-terraform.com&domain=&order_by=domain_asc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 377
+ uncompressed: false
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"validation-no-validation","updated_at":"2024-09-20T13:01:03Z"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "377"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:01:03 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 0c853f83-9c73-43b3-b2a5-f1a270407b40
+ status: 200 OK
+ code: 200
+ duration: 70.003527ms
+ - id: 3
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 154
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"validation-no-validation.scaleway-terraform.com","accept_tos":true,"autoconfig":false}'
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains
method: POST
response:
@@ -27,20 +176,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1259
+ content_length: 1209
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.130106217Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuClAgYbPuLM9Uks0rpS0IKbxE8c09AHGRd2B76Hbng5bgnvwRPbuS0D//4mk/gudTgZj2qaUBdqwrfgsCe25mPpeeptAcm7pfP9q+MMTmmEDfW33FiWZtIdxbcKOt9MNLKGFbymTjy1ofW1C5eo6AX2EngxtxqR91vk+HYRo+SttLhPQuVoLG40DNtZneWRF9/ktPDsFNUYeSIGafn0JP4yiM6Ap2yMayKvQQNAv8RsXarO6SiFKB8bR4ArJ7NWYwDWlkusBNxHZC8cGSHDiKiCJJvPr4eZXmJi9J+/0GZVPqVyKNH7gtukgVTdAO0fNlevydErahl90aOSgHfhZ+wIDAQAB","id":"009e80cb-ec8f-4197-a94a-3ed56ecec6d7","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud,mailto:65a0b49c-6c48-48cd-a982-0fb36e8082cd@dmarc.scw-tem.cloud; ruf=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud,mailto:65a0b49c-6c48-48cd-a982-0fb36e8082cd@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-no-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:04.290579769Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1259"
+ - "1209"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:51 GMT
+ - Fri, 20 Sep 2024 13:01:04 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -48,11 +197,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f0757427-ba45-4b52-beb5-540b0bf07b9b
+ - a3477a0d-7672-43fe-a9fe-9e664320e225
status: 200 OK
code: 200
- duration: 258.304939ms
- - id: 1
+ duration: 472.077169ms
+ - id: 4
request:
proto: HTTP/1.1
proto_major: 1
@@ -67,8 +216,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/009e80cb-ec8f-4197-a94a-3ed56ecec6d7
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9
method: GET
response:
proto: HTTP/2.0
@@ -76,20 +225,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1256
+ content_length: 1209
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.130106Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuClAgYbPuLM9Uks0rpS0IKbxE8c09AHGRd2B76Hbng5bgnvwRPbuS0D//4mk/gudTgZj2qaUBdqwrfgsCe25mPpeeptAcm7pfP9q+MMTmmEDfW33FiWZtIdxbcKOt9MNLKGFbymTjy1ofW1C5eo6AX2EngxtxqR91vk+HYRo+SttLhPQuVoLG40DNtZneWRF9/ktPDsFNUYeSIGafn0JP4yiM6Ap2yMayKvQQNAv8RsXarO6SiFKB8bR4ArJ7NWYwDWlkusBNxHZC8cGSHDiKiCJJvPr4eZXmJi9J+/0GZVPqVyKNH7gtukgVTdAO0fNlevydErahl90aOSgHfhZ+wIDAQAB","id":"009e80cb-ec8f-4197-a94a-3ed56ecec6d7","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud,mailto:65a0b49c-6c48-48cd-a982-0fb36e8082cd@dmarc.scw-tem.cloud; ruf=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud,mailto:65a0b49c-6c48-48cd-a982-0fb36e8082cd@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-no-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:04.357623928Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1256"
+ - "1209"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:51 GMT
+ - Fri, 20 Sep 2024 13:01:04 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -97,11 +246,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d85ca056-432e-4919-87e7-4d5f67455619
+ - 116a6fd8-3b04-4a72-8733-497d2212158e
status: 200 OK
code: 200
- duration: 86.844676ms
- - id: 2
+ duration: 64.828363ms
+ - id: 5
request:
proto: HTTP/1.1
proto_major: 1
@@ -116,8 +265,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/009e80cb-ec8f-4197-a94a-3ed56ecec6d7
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9
method: GET
response:
proto: HTTP/2.0
@@ -125,20 +274,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1256
+ content_length: 1209
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.130106Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuClAgYbPuLM9Uks0rpS0IKbxE8c09AHGRd2B76Hbng5bgnvwRPbuS0D//4mk/gudTgZj2qaUBdqwrfgsCe25mPpeeptAcm7pfP9q+MMTmmEDfW33FiWZtIdxbcKOt9MNLKGFbymTjy1ofW1C5eo6AX2EngxtxqR91vk+HYRo+SttLhPQuVoLG40DNtZneWRF9/ktPDsFNUYeSIGafn0JP4yiM6Ap2yMayKvQQNAv8RsXarO6SiFKB8bR4ArJ7NWYwDWlkusBNxHZC8cGSHDiKiCJJvPr4eZXmJi9J+/0GZVPqVyKNH7gtukgVTdAO0fNlevydErahl90aOSgHfhZ+wIDAQAB","id":"009e80cb-ec8f-4197-a94a-3ed56ecec6d7","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud,mailto:65a0b49c-6c48-48cd-a982-0fb36e8082cd@dmarc.scw-tem.cloud; ruf=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud,mailto:65a0b49c-6c48-48cd-a982-0fb36e8082cd@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-no-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:04.557321739Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1256"
+ - "1209"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:51 GMT
+ - Fri, 20 Sep 2024 13:01:04 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -146,11 +295,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 139add30-1324-4ead-a17e-c3912cd87009
+ - 2a8aaa84-99b4-4d95-93cd-bf23fcaa92cf
status: 200 OK
code: 200
- duration: 28.284548ms
- - id: 3
+ duration: 211.551755ms
+ - id: 6
request:
proto: HTTP/1.1
proto_major: 1
@@ -167,8 +316,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/009e80cb-ec8f-4197-a94a-3ed56ecec6d7/check
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9/check
method: POST
response:
proto: HTTP/2.0
@@ -176,20 +325,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1284
+ content_length: 1110
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.130106Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuClAgYbPuLM9Uks0rpS0IKbxE8c09AHGRd2B76Hbng5bgnvwRPbuS0D//4mk/gudTgZj2qaUBdqwrfgsCe25mPpeeptAcm7pfP9q+MMTmmEDfW33FiWZtIdxbcKOt9MNLKGFbymTjy1ofW1C5eo6AX2EngxtxqR91vk+HYRo+SttLhPQuVoLG40DNtZneWRF9/ktPDsFNUYeSIGafn0JP4yiM6Ap2yMayKvQQNAv8RsXarO6SiFKB8bR4ArJ7NWYwDWlkusBNxHZC8cGSHDiKiCJJvPr4eZXmJi9J+/0GZVPqVyKNH7gtukgVTdAO0fNlevydErahl90aOSgHfhZ+wIDAQAB","id":"009e80cb-ec8f-4197-a94a-3ed56ecec6d7","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-04-10T13:29:51.537049363Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud,mailto:65a0b49c-6c48-48cd-a982-0fb36e8082cd@dmarc.scw-tem.cloud; ruf=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud,mailto:65a0b49c-6c48-48cd-a982-0fb36e8082cd@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:04.620229042Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-no-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1284"
+ - "1110"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:51 GMT
+ - Fri, 20 Sep 2024 13:01:04 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -197,11 +346,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 48130b96-c73c-4bcc-a6f7-cd70439d634c
+ - b8f558ef-10ea-4d66-8fb4-d4c1cb55078c
status: 200 OK
code: 200
- duration: 32.205234ms
- - id: 4
+ duration: 37.473091ms
+ - id: 7
request:
proto: HTTP/1.1
proto_major: 1
@@ -218,8 +367,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/009e80cb-ec8f-4197-a94a-3ed56ecec6d7/check
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9/check
method: POST
response:
proto: HTTP/2.0
@@ -227,20 +376,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1284
+ content_length: 1110
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.130106Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuClAgYbPuLM9Uks0rpS0IKbxE8c09AHGRd2B76Hbng5bgnvwRPbuS0D//4mk/gudTgZj2qaUBdqwrfgsCe25mPpeeptAcm7pfP9q+MMTmmEDfW33FiWZtIdxbcKOt9MNLKGFbymTjy1ofW1C5eo6AX2EngxtxqR91vk+HYRo+SttLhPQuVoLG40DNtZneWRF9/ktPDsFNUYeSIGafn0JP4yiM6Ap2yMayKvQQNAv8RsXarO6SiFKB8bR4ArJ7NWYwDWlkusBNxHZC8cGSHDiKiCJJvPr4eZXmJi9J+/0GZVPqVyKNH7gtukgVTdAO0fNlevydErahl90aOSgHfhZ+wIDAQAB","id":"009e80cb-ec8f-4197-a94a-3ed56ecec6d7","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-04-10T13:29:52.070016392Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud,mailto:65a0b49c-6c48-48cd-a982-0fb36e8082cd@dmarc.scw-tem.cloud; ruf=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud,mailto:65a0b49c-6c48-48cd-a982-0fb36e8082cd@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:05.188080668Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-no-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1284"
+ - "1110"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:52 GMT
+ - Fri, 20 Sep 2024 13:01:05 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -248,11 +397,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 44fa6776-8f65-4cfe-be86-d38d1b2e5ac7
+ - 98f4ed51-5a72-4eb3-b5a7-7ae98f65a146
status: 200 OK
code: 200
- duration: 32.014461ms
- - id: 5
+ duration: 81.077417ms
+ - id: 8
request:
proto: HTTP/1.1
proto_major: 1
@@ -267,8 +416,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/009e80cb-ec8f-4197-a94a-3ed56ecec6d7
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9
method: GET
response:
proto: HTTP/2.0
@@ -276,20 +425,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1281
+ content_length: 1234
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.130106Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuClAgYbPuLM9Uks0rpS0IKbxE8c09AHGRd2B76Hbng5bgnvwRPbuS0D//4mk/gudTgZj2qaUBdqwrfgsCe25mPpeeptAcm7pfP9q+MMTmmEDfW33FiWZtIdxbcKOt9MNLKGFbymTjy1ofW1C5eo6AX2EngxtxqR91vk+HYRo+SttLhPQuVoLG40DNtZneWRF9/ktPDsFNUYeSIGafn0JP4yiM6Ap2yMayKvQQNAv8RsXarO6SiFKB8bR4ArJ7NWYwDWlkusBNxHZC8cGSHDiKiCJJvPr4eZXmJi9J+/0GZVPqVyKNH7gtukgVTdAO0fNlevydErahl90aOSgHfhZ+wIDAQAB","id":"009e80cb-ec8f-4197-a94a-3ed56ecec6d7","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-04-10T13:29:52.070016Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud,mailto:65a0b49c-6c48-48cd-a982-0fb36e8082cd@dmarc.scw-tem.cloud; ruf=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud,mailto:65a0b49c-6c48-48cd-a982-0fb36e8082cd@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:05.188080Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-no-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:05.822406411Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1281"
+ - "1234"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:52 GMT
+ - Fri, 20 Sep 2024 13:01:05 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -297,11 +446,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6433ac69-672c-407b-b3ca-8d95a9018ee6
+ - ba381e9e-e17f-4c14-a1a0-c41325be945d
status: 200 OK
code: 200
- duration: 28.283486ms
- - id: 6
+ duration: 224.90181ms
+ - id: 9
request:
proto: HTTP/1.1
proto_major: 1
@@ -316,8 +465,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/009e80cb-ec8f-4197-a94a-3ed56ecec6d7
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=validation-no-validation.scaleway-terraform.com&domain=&order_by=domain_asc&project_id=105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
proto: HTTP/2.0
@@ -325,20 +474,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1281
+ content_length: 377
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.130106Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuClAgYbPuLM9Uks0rpS0IKbxE8c09AHGRd2B76Hbng5bgnvwRPbuS0D//4mk/gudTgZj2qaUBdqwrfgsCe25mPpeeptAcm7pfP9q+MMTmmEDfW33FiWZtIdxbcKOt9MNLKGFbymTjy1ofW1C5eo6AX2EngxtxqR91vk+HYRo+SttLhPQuVoLG40DNtZneWRF9/ktPDsFNUYeSIGafn0JP4yiM6Ap2yMayKvQQNAv8RsXarO6SiFKB8bR4ArJ7NWYwDWlkusBNxHZC8cGSHDiKiCJJvPr4eZXmJi9J+/0GZVPqVyKNH7gtukgVTdAO0fNlevydErahl90aOSgHfhZ+wIDAQAB","id":"009e80cb-ec8f-4197-a94a-3ed56ecec6d7","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-04-10T13:29:52.070016Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud,mailto:65a0b49c-6c48-48cd-a982-0fb36e8082cd@dmarc.scw-tem.cloud; ruf=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud,mailto:65a0b49c-6c48-48cd-a982-0fb36e8082cd@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"validation-no-validation","updated_at":"2024-09-20T13:01:03Z"}],"total_count":1}'
headers:
Content-Length:
- - "1281"
+ - "377"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:53 GMT
+ - Fri, 20 Sep 2024 13:01:06 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -346,11 +495,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2a3cb003-f07b-4cab-92af-6b1eea9328d1
+ - 8407be60-7ece-4ee2-8024-b53e5d3b1d69
status: 200 OK
code: 200
- duration: 29.161371ms
- - id: 7
+ duration: 65.118192ms
+ - id: 10
request:
proto: HTTP/1.1
proto_major: 1
@@ -365,8 +514,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/009e80cb-ec8f-4197-a94a-3ed56ecec6d7
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9
method: GET
response:
proto: HTTP/2.0
@@ -374,20 +523,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1281
+ content_length: 1234
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.130106Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuClAgYbPuLM9Uks0rpS0IKbxE8c09AHGRd2B76Hbng5bgnvwRPbuS0D//4mk/gudTgZj2qaUBdqwrfgsCe25mPpeeptAcm7pfP9q+MMTmmEDfW33FiWZtIdxbcKOt9MNLKGFbymTjy1ofW1C5eo6AX2EngxtxqR91vk+HYRo+SttLhPQuVoLG40DNtZneWRF9/ktPDsFNUYeSIGafn0JP4yiM6Ap2yMayKvQQNAv8RsXarO6SiFKB8bR4ArJ7NWYwDWlkusBNxHZC8cGSHDiKiCJJvPr4eZXmJi9J+/0GZVPqVyKNH7gtukgVTdAO0fNlevydErahl90aOSgHfhZ+wIDAQAB","id":"009e80cb-ec8f-4197-a94a-3ed56ecec6d7","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-04-10T13:29:52.070016Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud,mailto:65a0b49c-6c48-48cd-a982-0fb36e8082cd@dmarc.scw-tem.cloud; ruf=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud,mailto:65a0b49c-6c48-48cd-a982-0fb36e8082cd@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:05.188080Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-no-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:06.333151682Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1281"
+ - "1234"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:53 GMT
+ - Fri, 20 Sep 2024 13:01:06 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -395,11 +544,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0d22db7e-2023-41a9-9556-eb1191992244
+ - dc88b7c5-94d6-4330-b2a8-d2f44d82ab45
status: 200 OK
code: 200
- duration: 55.842855ms
- - id: 8
+ duration: 64.935149ms
+ - id: 11
request:
proto: HTTP/1.1
proto_major: 1
@@ -414,8 +563,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/009e80cb-ec8f-4197-a94a-3ed56ecec6d7
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9
method: GET
response:
proto: HTTP/2.0
@@ -423,20 +572,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1281
+ content_length: 1234
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.130106Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuClAgYbPuLM9Uks0rpS0IKbxE8c09AHGRd2B76Hbng5bgnvwRPbuS0D//4mk/gudTgZj2qaUBdqwrfgsCe25mPpeeptAcm7pfP9q+MMTmmEDfW33FiWZtIdxbcKOt9MNLKGFbymTjy1ofW1C5eo6AX2EngxtxqR91vk+HYRo+SttLhPQuVoLG40DNtZneWRF9/ktPDsFNUYeSIGafn0JP4yiM6Ap2yMayKvQQNAv8RsXarO6SiFKB8bR4ArJ7NWYwDWlkusBNxHZC8cGSHDiKiCJJvPr4eZXmJi9J+/0GZVPqVyKNH7gtukgVTdAO0fNlevydErahl90aOSgHfhZ+wIDAQAB","id":"009e80cb-ec8f-4197-a94a-3ed56ecec6d7","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-04-10T13:29:52.070016Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none; rua=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud,mailto:65a0b49c-6c48-48cd-a982-0fb36e8082cd@dmarc.scw-tem.cloud; ruf=mailto:5253e140-06ce-43a9-bded-8c45b72e221e@dmarc.scw-tem.cloud,mailto:65a0b49c-6c48-48cd-a982-0fb36e8082cd@dmarc.scw-tem.cloud"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.scw-tem.cloud","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:05.188080Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-no-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:06.404602243Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1281"
+ - "1234"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:54 GMT
+ - Fri, 20 Sep 2024 13:01:06 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -444,11 +593,60 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1f313d8d-d5ec-4481-a923-ca39bd62a42a
+ - 1366ae31-3633-4e72-a526-fff2f164c4c7
status: 200 OK
code: 200
- duration: 56.848921ms
- - id: 9
+ duration: 23.585331ms
+ - id: 12
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1234
+ uncompressed: false
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:05.188080Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-no-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:07.053927610Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ headers:
+ Content-Length:
+ - "1234"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:01:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - d3515383-bc3f-4a25-8870-8bbc5a086771
+ status: 200 OK
+ code: 200
+ duration: 357.770467ms
+ - id: 13
request:
proto: HTTP/1.1
proto_major: 1
@@ -465,8 +663,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/009e80cb-ec8f-4197-a94a-3ed56ecec6d7/revoke
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9/revoke
method: POST
response:
proto: HTTP/2.0
@@ -474,20 +672,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 940
+ content_length: 1003
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.130106Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuClAgYbPuLM9Uks0rpS0IKbxE8c09AHGRd2B76Hbng5bgnvwRPbuS0D//4mk/gudTgZj2qaUBdqwrfgsCe25mPpeeptAcm7pfP9q+MMTmmEDfW33FiWZtIdxbcKOt9MNLKGFbymTjy1ofW1C5eo6AX2EngxtxqR91vk+HYRo+SttLhPQuVoLG40DNtZneWRF9/ktPDsFNUYeSIGafn0JP4yiM6Ap2yMayKvQQNAv8RsXarO6SiFKB8bR4ArJ7NWYwDWlkusBNxHZC8cGSHDiKiCJJvPr4eZXmJi9J+/0GZVPqVyKNH7gtukgVTdAO0fNlevydErahl90aOSgHfhZ+wIDAQAB","id":"009e80cb-ec8f-4197-a94a-3ed56ecec6d7","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-04-10T13:29:54.705357382Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-20T13:01:07.808999151Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "940"
+ - "1003"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:54 GMT
+ - Fri, 20 Sep 2024 13:01:07 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -495,11 +693,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c4a9d24f-0f58-4601-976e-a9674af73f3a
+ - 52fa2907-3862-4e0d-bfec-c911e1fef286
status: 200 OK
code: 200
- duration: 256.544204ms
- - id: 10
+ duration: 638.724009ms
+ - id: 14
request:
proto: HTTP/1.1
proto_major: 1
@@ -514,8 +712,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/009e80cb-ec8f-4197-a94a-3ed56ecec6d7
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9
method: GET
response:
proto: HTTP/2.0
@@ -523,20 +721,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 937
+ content_length: 1156
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.130106Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuClAgYbPuLM9Uks0rpS0IKbxE8c09AHGRd2B76Hbng5bgnvwRPbuS0D//4mk/gudTgZj2qaUBdqwrfgsCe25mPpeeptAcm7pfP9q+MMTmmEDfW33FiWZtIdxbcKOt9MNLKGFbymTjy1ofW1C5eo6AX2EngxtxqR91vk+HYRo+SttLhPQuVoLG40DNtZneWRF9/ktPDsFNUYeSIGafn0JP4yiM6Ap2yMayKvQQNAv8RsXarO6SiFKB8bR4ArJ7NWYwDWlkusBNxHZC8cGSHDiKiCJJvPr4eZXmJi9J+/0GZVPqVyKNH7gtukgVTdAO0fNlevydErahl90aOSgHfhZ+wIDAQAB","id":"009e80cb-ec8f-4197-a94a-3ed56ecec6d7","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-04-10T13:29:54.705357Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:08.022566631Z","status":"excellent"},"revoked_at":"2024-09-20T13:01:07.808999Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "937"
+ - "1156"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:54 GMT
+ - Fri, 20 Sep 2024 13:01:08 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -544,11 +742,109 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 78ad6ebe-de58-4db6-9c37-b742c0ba807b
+ - 8eea13c9-ebe4-4c26-9e92-6da3f792988b
status: 200 OK
code: 200
- duration: 57.563963ms
- - id: 11
+ duration: 197.115734ms
+ - id: 15
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=validation-no-validation.scaleway-terraform.com&domain=&order_by=domain_asc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 377
+ uncompressed: false
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"validation-no-validation","updated_at":"2024-09-20T13:01:03Z"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "377"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:01:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 1851125e-3221-47e6-8b66-b2f0a3cabe5d
+ status: 200 OK
+ code: 200
+ duration: 69.292117ms
+ - id: 16
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones/validation-no-validation.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 2
+ uncompressed: false
+ body: '{}'
+ headers:
+ Content-Length:
+ - "2"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:01:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - d4576285-85f3-4f10-81c8-cf44aea8d868
+ status: 200 OK
+ code: 200
+ duration: 499.634617ms
+ - id: 17
request:
proto: HTTP/1.1
proto_major: 1
@@ -565,8 +861,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/009e80cb-ec8f-4197-a94a-3ed56ecec6d7/revoke
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9/revoke
method: POST
response:
proto: HTTP/2.0
@@ -574,20 +870,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 937
+ content_length: 1000
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.130106Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuClAgYbPuLM9Uks0rpS0IKbxE8c09AHGRd2B76Hbng5bgnvwRPbuS0D//4mk/gudTgZj2qaUBdqwrfgsCe25mPpeeptAcm7pfP9q+MMTmmEDfW33FiWZtIdxbcKOt9MNLKGFbymTjy1ofW1C5eo6AX2EngxtxqR91vk+HYRo+SttLhPQuVoLG40DNtZneWRF9/ktPDsFNUYeSIGafn0JP4yiM6Ap2yMayKvQQNAv8RsXarO6SiFKB8bR4ArJ7NWYwDWlkusBNxHZC8cGSHDiKiCJJvPr4eZXmJi9J+/0GZVPqVyKNH7gtukgVTdAO0fNlevydErahl90aOSgHfhZ+wIDAQAB","id":"009e80cb-ec8f-4197-a94a-3ed56ecec6d7","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-04-10T13:29:54.705357Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-20T13:01:07.808999Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "937"
+ - "1000"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:54 GMT
+ - Fri, 20 Sep 2024 13:01:08 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -595,11 +891,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 088cf891-9414-4fae-a35d-2c2033cccaed
+ - 086402d5-d4cb-44fb-8895-b3b827fd4599
status: 200 OK
code: 200
- duration: 26.209359ms
- - id: 12
+ duration: 76.539587ms
+ - id: 18
request:
proto: HTTP/1.1
proto_major: 1
@@ -614,8 +910,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.21.5; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/009e80cb-ec8f-4197-a94a-3ed56ecec6d7
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9
method: GET
response:
proto: HTTP/2.0
@@ -623,20 +919,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 937
+ content_length: 1156
uncompressed: false
- body: '{"created_at":"2024-04-10T13:29:51.130106Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuClAgYbPuLM9Uks0rpS0IKbxE8c09AHGRd2B76Hbng5bgnvwRPbuS0D//4mk/gudTgZj2qaUBdqwrfgsCe25mPpeeptAcm7pfP9q+MMTmmEDfW33FiWZtIdxbcKOt9MNLKGFbymTjy1ofW1C5eo6AX2EngxtxqR91vk+HYRo+SttLhPQuVoLG40DNtZneWRF9/ktPDsFNUYeSIGafn0JP4yiM6Ap2yMayKvQQNAv8RsXarO6SiFKB8bR4ArJ7NWYwDWlkusBNxHZC8cGSHDiKiCJJvPr4eZXmJi9J+/0GZVPqVyKNH7gtukgVTdAO0fNlevydErahl90aOSgHfhZ+wIDAQAB","id":"009e80cb-ec8f-4197-a94a-3ed56ecec6d7","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-04-10T13:29:54.705357Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:04.149969Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwqIoOrB1215DYNKmfgBsPI/iup/9AywyjjlNzxZjC1k1d0AcV5Zb/jy+5JGx9AhieaQcCQDod1Ssp5OyuAk7C0MYs2/HMC2oT2FVMMLuT297XvGTbVCU6WObTKMsQMYTvhcUK6805yUKtLAFtkGuNLV6QfbMBcjMIVBzEXkBMeBLM++0+oMX0vxmQEVvdgm2vaLMZ/BEax20tabUfrna16n35rAWPS7vaQEqk2KJ5rnRu/n6BOeT9ZaAqvnHbI/fF9XdoBUZwnpaJ6uI58np8+ArcRtArYyUQEejTijLncN1x8RAWK0Vf7rD/fy/YpuIq19A5nTHaPPZFcHAGNQFwwIDAQAB","id":"6f8385bd-4792-4aad-b5c8-29e3fdf5a4f9","last_error":null,"last_valid_at":null,"name":"validation-no-validation.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:08.780746206Z","status":"excellent"},"revoked_at":"2024-09-20T13:01:07.808999Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "937"
+ - "1156"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Wed, 10 Apr 2024 13:29:54 GMT
+ - Fri, 20 Sep 2024 13:01:08 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -644,7 +940,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5dbc1395-6076-4761-a9cc-3c24c01a2627
+ - 9001c2b2-b415-46fb-a67d-2e22c905dfb4
status: 200 OK
code: 200
- duration: 34.82906ms
+ duration: 66.335278ms
diff --git a/internal/services/tem/testdata/domain-validation-validation.cassette.yaml b/internal/services/tem/testdata/domain-validation-validation.cassette.yaml
index dfe593f53..866af2edc 100644
--- a/internal/services/tem/testdata/domain-validation-validation.cassette.yaml
+++ b/internal/services/tem/testdata/domain-validation-validation.cassette.yaml
@@ -6,41 +6,39 @@ interactions:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 128
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"scaleway-terraform.com","accept_tos":true,"autoconfig":true}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains
- method: POST
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=validation-validation.scaleway-terraform.com&domain=&order_by=domain_asc
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1183
+ content_length: 33
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-16T05:26:18.871703Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk84rSUtCU560v6gZGD4OSrdtVQ7D/LvbeepiM6ZYZ5b8fbMUoJE5oG+di03Yt72Zyq4MJuWhcfYDcNz97pRmqklEgmx4Iz8c7lQEVJahGNjDuA8TsKybHJlzXwJNJGpOQtDOm/DrrWm9j4c44xwl88X39hUn2Fm+Voc0GMmjSNzZ4u/iROJApkuAW6XwQsFTNdKez1ygKl4RQReMCId9JsVqJhbzLFbtky1PvGl7jan/11RTqub31DBFc7AON2Ee5ZAzAJXtN+lpO0/dmrvqfBA2/5AwZngaPJLHkEoNHcL61z8X+IKys9OS+BMk5CjQVslFqFMY41WKhdESIPWJmQIDAQAB","id":"9d69ee5a-c80a-425b-82e5-7de5af3beb93","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-16T05:26:18.861673Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-16T05:26:18.956127354Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"dns_zones":[],"total_count":0}'
headers:
Content-Length:
- - "1183"
+ - "33"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 16 Sep 2024 05:26:18 GMT
+ - Fri, 20 Sep 2024 13:01:04 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge03)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -48,48 +46,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dc8c24ba-661c-4666-854a-2e72c906a138
+ - 0f13a3eb-209c-4dad-af03-cea76a81a2e0
status: 200 OK
code: 200
- duration: 1.419270989s
+ duration: 62.931881ms
- id: 1
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 123
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{"domain":"scaleway-terraform.com","subdomain":"validation-validation","project_id":"105bdce1-64c0-48ab-899d-868455867ecf"}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9d69ee5a-c80a-425b-82e5-7de5af3beb93
- method: GET
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1183
+ content_length: 341
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-16T05:26:18.871703Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk84rSUtCU560v6gZGD4OSrdtVQ7D/LvbeepiM6ZYZ5b8fbMUoJE5oG+di03Yt72Zyq4MJuWhcfYDcNz97pRmqklEgmx4Iz8c7lQEVJahGNjDuA8TsKybHJlzXwJNJGpOQtDOm/DrrWm9j4c44xwl88X39hUn2Fm+Voc0GMmjSNzZ4u/iROJApkuAW6XwQsFTNdKez1ygKl4RQReMCId9JsVqJhbzLFbtky1PvGl7jan/11RTqub31DBFc7AON2Ee5ZAzAJXtN+lpO0/dmrvqfBA2/5AwZngaPJLHkEoNHcL61z8X+IKys9OS+BMk5CjQVslFqFMY41WKhdESIPWJmQIDAQAB","id":"9d69ee5a-c80a-425b-82e5-7de5af3beb93","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-16T05:26:18.861673Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-16T05:26:19.326373983Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"validation-validation","updated_at":"2024-09-20T13:01:04Z"}'
headers:
Content-Length:
- - "1183"
+ - "341"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 16 Sep 2024 05:26:19 GMT
+ - Fri, 20 Sep 2024 13:01:04 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge03)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -97,10 +97,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0f4cc8de-11ef-4fbd-801f-6c6063bd4e59
+ - 9d8d2df8-bf35-4ce5-9624-e0a1423d293c
status: 200 OK
code: 200
- duration: 366.0997ms
+ duration: 363.77526ms
- id: 2
request:
proto: HTTP/1.1
@@ -117,7 +117,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9d69ee5a-c80a-425b-82e5-7de5af3beb93
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=validation-validation.scaleway-terraform.com&domain=&order_by=domain_asc
method: GET
response:
proto: HTTP/2.0
@@ -125,20 +125,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1183
+ content_length: 374
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-16T05:26:18.871703Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk84rSUtCU560v6gZGD4OSrdtVQ7D/LvbeepiM6ZYZ5b8fbMUoJE5oG+di03Yt72Zyq4MJuWhcfYDcNz97pRmqklEgmx4Iz8c7lQEVJahGNjDuA8TsKybHJlzXwJNJGpOQtDOm/DrrWm9j4c44xwl88X39hUn2Fm+Voc0GMmjSNzZ4u/iROJApkuAW6XwQsFTNdKez1ygKl4RQReMCId9JsVqJhbzLFbtky1PvGl7jan/11RTqub31DBFc7AON2Ee5ZAzAJXtN+lpO0/dmrvqfBA2/5AwZngaPJLHkEoNHcL61z8X+IKys9OS+BMk5CjQVslFqFMY41WKhdESIPWJmQIDAQAB","id":"9d69ee5a-c80a-425b-82e5-7de5af3beb93","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-16T05:26:18.861673Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-16T05:26:19.667123831Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"validation-validation","updated_at":"2024-09-20T13:01:04Z"}],"total_count":1}'
headers:
Content-Length:
- - "1183"
+ - "374"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 16 Sep 2024 05:26:19 GMT
+ - Fri, 20 Sep 2024 13:01:04 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge03)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -146,29 +146,29 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 94eb741e-99ff-41d5-a682-5507bc350243
+ - 3c44ab31-cf83-421c-8450-227a54f24d22
status: 200 OK
code: 200
- duration: 341.003885ms
+ duration: 77.010724ms
- id: 3
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 2
+ content_length: 150
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{}'
+ body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"validation-validation.scaleway-terraform.com","accept_tos":true,"autoconfig":true}'
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9d69ee5a-c80a-425b-82e5-7de5af3beb93/check
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains
method: POST
response:
proto: HTTP/2.0
@@ -176,20 +176,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1060
+ content_length: 1227
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-16T05:26:18.871703Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk84rSUtCU560v6gZGD4OSrdtVQ7D/LvbeepiM6ZYZ5b8fbMUoJE5oG+di03Yt72Zyq4MJuWhcfYDcNz97pRmqklEgmx4Iz8c7lQEVJahGNjDuA8TsKybHJlzXwJNJGpOQtDOm/DrrWm9j4c44xwl88X39hUn2Fm+Voc0GMmjSNzZ4u/iROJApkuAW6XwQsFTNdKez1ygKl4RQReMCId9JsVqJhbzLFbtky1PvGl7jan/11RTqub31DBFc7AON2Ee5ZAzAJXtN+lpO0/dmrvqfBA2/5AwZngaPJLHkEoNHcL61z8X+IKys9OS+BMk5CjQVslFqFMY41WKhdESIPWJmQIDAQAB","id":"9d69ee5a-c80a-425b-82e5-7de5af3beb93","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-16T05:26:19.835353635Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:05.788515Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:05.873040447Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1060"
+ - "1227"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 16 Sep 2024 05:26:19 GMT
+ - Fri, 20 Sep 2024 13:01:05 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge03)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -197,50 +197,48 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1be065c0-1d53-40b6-a38c-1b03d88f6166
+ - d366fa09-34be-4f5e-97eb-b176d74bec44
status: 200 OK
code: 200
- duration: 116.946883ms
+ duration: 1.066855136s
- id: 4
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 2
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9d69ee5a-c80a-425b-82e5-7de5af3beb93/check
- method: POST
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1060
+ content_length: 1227
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-16T05:26:18.871703Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk84rSUtCU560v6gZGD4OSrdtVQ7D/LvbeepiM6ZYZ5b8fbMUoJE5oG+di03Yt72Zyq4MJuWhcfYDcNz97pRmqklEgmx4Iz8c7lQEVJahGNjDuA8TsKybHJlzXwJNJGpOQtDOm/DrrWm9j4c44xwl88X39hUn2Fm+Voc0GMmjSNzZ4u/iROJApkuAW6XwQsFTNdKez1ygKl4RQReMCId9JsVqJhbzLFbtky1PvGl7jan/11RTqub31DBFc7AON2Ee5ZAzAJXtN+lpO0/dmrvqfBA2/5AwZngaPJLHkEoNHcL61z8X+IKys9OS+BMk5CjQVslFqFMY41WKhdESIPWJmQIDAQAB","id":"9d69ee5a-c80a-425b-82e5-7de5af3beb93","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-16T05:26:20.457110587Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:05.788515Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:05.953886792Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1060"
+ - "1227"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 16 Sep 2024 05:26:20 GMT
+ - Fri, 20 Sep 2024 13:01:05 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge03)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -248,50 +246,48 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1cc603fb-e4b4-4151-adc3-63a6558466ab
+ - d6af7f34-f326-4d21-a8d8-8d10ef2d99b4
status: 200 OK
code: 200
- duration: 78.470969ms
+ duration: 117.291832ms
- id: 5
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 2
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9d69ee5a-c80a-425b-82e5-7de5af3beb93/check
- method: POST
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1057
+ content_length: 1227
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-16T05:26:18.871703Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk84rSUtCU560v6gZGD4OSrdtVQ7D/LvbeepiM6ZYZ5b8fbMUoJE5oG+di03Yt72Zyq4MJuWhcfYDcNz97pRmqklEgmx4Iz8c7lQEVJahGNjDuA8TsKybHJlzXwJNJGpOQtDOm/DrrWm9j4c44xwl88X39hUn2Fm+Voc0GMmjSNzZ4u/iROJApkuAW6XwQsFTNdKez1ygKl4RQReMCId9JsVqJhbzLFbtky1PvGl7jan/11RTqub31DBFc7AON2Ee5ZAzAJXtN+lpO0/dmrvqfBA2/5AwZngaPJLHkEoNHcL61z8X+IKys9OS+BMk5CjQVslFqFMY41WKhdESIPWJmQIDAQAB","id":"9d69ee5a-c80a-425b-82e5-7de5af3beb93","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-16T05:26:20.457110Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:05.788515Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:06.041695667Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1057"
+ - "1227"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 16 Sep 2024 05:26:21 GMT
+ - Fri, 20 Sep 2024 13:01:06 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge03)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -299,10 +295,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9a7c5f6e-10e4-4bec-996b-08a6d58e4cde
+ - 50407fa7-b487-4dab-9dd7-64a92d446906
status: 200 OK
code: 200
- duration: 330.273624ms
+ duration: 24.965872ms
- id: 6
request:
proto: HTTP/1.1
@@ -321,7 +317,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9d69ee5a-c80a-425b-82e5-7de5af3beb93/check
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/check
method: POST
response:
proto: HTTP/2.0
@@ -329,20 +325,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1060
+ content_length: 1104
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-16T05:26:18.871703Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk84rSUtCU560v6gZGD4OSrdtVQ7D/LvbeepiM6ZYZ5b8fbMUoJE5oG+di03Yt72Zyq4MJuWhcfYDcNz97pRmqklEgmx4Iz8c7lQEVJahGNjDuA8TsKybHJlzXwJNJGpOQtDOm/DrrWm9j4c44xwl88X39hUn2Fm+Voc0GMmjSNzZ4u/iROJApkuAW6XwQsFTNdKez1ygKl4RQReMCId9JsVqJhbzLFbtky1PvGl7jan/11RTqub31DBFc7AON2Ee5ZAzAJXtN+lpO0/dmrvqfBA2/5AwZngaPJLHkEoNHcL61z8X+IKys9OS+BMk5CjQVslFqFMY41WKhdESIPWJmQIDAQAB","id":"9d69ee5a-c80a-425b-82e5-7de5af3beb93","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-16T05:26:23.879957392Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:06.070757045Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1060"
+ - "1104"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 16 Sep 2024 05:26:23 GMT
+ - Fri, 20 Sep 2024 13:01:06 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge03)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -350,10 +346,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4a2f3daf-aeda-49ed-bd7a-afa6bac42941
+ - 60558e40-1272-464f-87e1-85d1895c3e96
status: 200 OK
code: 200
- duration: 88.9655ms
+ duration: 39.557169ms
- id: 7
request:
proto: HTTP/1.1
@@ -372,7 +368,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9d69ee5a-c80a-425b-82e5-7de5af3beb93/check
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/check
method: POST
response:
proto: HTTP/2.0
@@ -380,20 +376,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1060
+ content_length: 1104
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-16T05:26:18.871703Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk84rSUtCU560v6gZGD4OSrdtVQ7D/LvbeepiM6ZYZ5b8fbMUoJE5oG+di03Yt72Zyq4MJuWhcfYDcNz97pRmqklEgmx4Iz8c7lQEVJahGNjDuA8TsKybHJlzXwJNJGpOQtDOm/DrrWm9j4c44xwl88X39hUn2Fm+Voc0GMmjSNzZ4u/iROJApkuAW6XwQsFTNdKez1ygKl4RQReMCId9JsVqJhbzLFbtky1PvGl7jan/11RTqub31DBFc7AON2Ee5ZAzAJXtN+lpO0/dmrvqfBA2/5AwZngaPJLHkEoNHcL61z8X+IKys9OS+BMk5CjQVslFqFMY41WKhdESIPWJmQIDAQAB","id":"9d69ee5a-c80a-425b-82e5-7de5af3beb93","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-16T05:26:27.958116259Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:06.614115484Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1060"
+ - "1104"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 16 Sep 2024 05:26:27 GMT
+ - Fri, 20 Sep 2024 13:01:06 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge03)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -401,10 +397,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5879c318-3857-4650-a220-b1dc4802c791
+ - 27ea197b-f902-494d-b1ea-5a311da1caeb
status: 200 OK
code: 200
- duration: 76.57608ms
+ duration: 43.186646ms
- id: 8
request:
proto: HTTP/1.1
@@ -423,7 +419,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9d69ee5a-c80a-425b-82e5-7de5af3beb93/check
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/check
method: POST
response:
proto: HTTP/2.0
@@ -431,20 +427,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1060
+ content_length: 1104
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-16T05:26:18.871703Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk84rSUtCU560v6gZGD4OSrdtVQ7D/LvbeepiM6ZYZ5b8fbMUoJE5oG+di03Yt72Zyq4MJuWhcfYDcNz97pRmqklEgmx4Iz8c7lQEVJahGNjDuA8TsKybHJlzXwJNJGpOQtDOm/DrrWm9j4c44xwl88X39hUn2Fm+Voc0GMmjSNzZ4u/iROJApkuAW6XwQsFTNdKez1ygKl4RQReMCId9JsVqJhbzLFbtky1PvGl7jan/11RTqub31DBFc7AON2Ee5ZAzAJXtN+lpO0/dmrvqfBA2/5AwZngaPJLHkEoNHcL61z8X+IKys9OS+BMk5CjQVslFqFMY41WKhdESIPWJmQIDAQAB","id":"9d69ee5a-c80a-425b-82e5-7de5af3beb93","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-16T05:26:36.069319879Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:07.683883459Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1060"
+ - "1104"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 16 Sep 2024 05:26:36 GMT
+ - Fri, 20 Sep 2024 13:01:07 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge03)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -452,10 +448,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6e439627-74a9-4496-8ce7-8f8fb1d48f1a
+ - b54051f6-0081-4387-9477-88486793a560
status: 200 OK
code: 200
- duration: 116.673952ms
+ duration: 69.195053ms
- id: 9
request:
proto: HTTP/1.1
@@ -474,7 +470,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9d69ee5a-c80a-425b-82e5-7de5af3beb93/check
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/check
method: POST
response:
proto: HTTP/2.0
@@ -482,20 +478,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1060
+ content_length: 1104
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-16T05:26:18.871703Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk84rSUtCU560v6gZGD4OSrdtVQ7D/LvbeepiM6ZYZ5b8fbMUoJE5oG+di03Yt72Zyq4MJuWhcfYDcNz97pRmqklEgmx4Iz8c7lQEVJahGNjDuA8TsKybHJlzXwJNJGpOQtDOm/DrrWm9j4c44xwl88X39hUn2Fm+Voc0GMmjSNzZ4u/iROJApkuAW6XwQsFTNdKez1ygKl4RQReMCId9JsVqJhbzLFbtky1PvGl7jan/11RTqub31DBFc7AON2Ee5ZAzAJXtN+lpO0/dmrvqfBA2/5AwZngaPJLHkEoNHcL61z8X+IKys9OS+BMk5CjQVslFqFMY41WKhdESIPWJmQIDAQAB","id":"9d69ee5a-c80a-425b-82e5-7de5af3beb93","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-16T05:26:46.167124031Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:09.733955923Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1060"
+ - "1104"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 16 Sep 2024 05:26:46 GMT
+ - Fri, 20 Sep 2024 13:01:09 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge03)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -503,10 +499,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 748e57b3-8416-4ccc-94ad-88b8fefee43b
+ - 14c37bf0-3eaf-4bf0-83bd-b3a5cb522308
status: 200 OK
code: 200
- duration: 95.603902ms
+ duration: 56.074999ms
- id: 10
request:
proto: HTTP/1.1
@@ -525,7 +521,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9d69ee5a-c80a-425b-82e5-7de5af3beb93/check
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/check
method: POST
response:
proto: HTTP/2.0
@@ -533,20 +529,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1060
+ content_length: 1104
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-16T05:26:18.871703Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk84rSUtCU560v6gZGD4OSrdtVQ7D/LvbeepiM6ZYZ5b8fbMUoJE5oG+di03Yt72Zyq4MJuWhcfYDcNz97pRmqklEgmx4Iz8c7lQEVJahGNjDuA8TsKybHJlzXwJNJGpOQtDOm/DrrWm9j4c44xwl88X39hUn2Fm+Voc0GMmjSNzZ4u/iROJApkuAW6XwQsFTNdKez1ygKl4RQReMCId9JsVqJhbzLFbtky1PvGl7jan/11RTqub31DBFc7AON2Ee5ZAzAJXtN+lpO0/dmrvqfBA2/5AwZngaPJLHkEoNHcL61z8X+IKys9OS+BMk5CjQVslFqFMY41WKhdESIPWJmQIDAQAB","id":"9d69ee5a-c80a-425b-82e5-7de5af3beb93","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-16T05:26:56.250769968Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:13.829996271Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1060"
+ - "1104"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 16 Sep 2024 05:26:56 GMT
+ - Fri, 20 Sep 2024 13:01:13 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge03)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -554,10 +550,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5079b84f-d67a-4395-89d8-5e002cb16eb1
+ - bb5e7d31-5fde-4b92-9de2-d3175a132b73
status: 200 OK
code: 200
- duration: 79.989099ms
+ duration: 87.768443ms
- id: 11
request:
proto: HTTP/1.1
@@ -576,7 +572,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9d69ee5a-c80a-425b-82e5-7de5af3beb93/check
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/check
method: POST
response:
proto: HTTP/2.0
@@ -584,20 +580,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1060
+ content_length: 1104
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-16T05:26:18.871703Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk84rSUtCU560v6gZGD4OSrdtVQ7D/LvbeepiM6ZYZ5b8fbMUoJE5oG+di03Yt72Zyq4MJuWhcfYDcNz97pRmqklEgmx4Iz8c7lQEVJahGNjDuA8TsKybHJlzXwJNJGpOQtDOm/DrrWm9j4c44xwl88X39hUn2Fm+Voc0GMmjSNzZ4u/iROJApkuAW6XwQsFTNdKez1ygKl4RQReMCId9JsVqJhbzLFbtky1PvGl7jan/11RTqub31DBFc7AON2Ee5ZAzAJXtN+lpO0/dmrvqfBA2/5AwZngaPJLHkEoNHcL61z8X+IKys9OS+BMk5CjQVslFqFMY41WKhdESIPWJmQIDAQAB","id":"9d69ee5a-c80a-425b-82e5-7de5af3beb93","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-16T05:27:06.343193284Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:21.922170757Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1060"
+ - "1104"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 16 Sep 2024 05:27:06 GMT
+ - Fri, 20 Sep 2024 13:01:21 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge03)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -605,10 +601,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a6b2e4e2-9d3d-4986-bb92-34b88700eafe
+ - a99c9654-b4ed-4b16-9eae-15dd0a76be59
status: 200 OK
code: 200
- duration: 99.467114ms
+ duration: 90.850185ms
- id: 12
request:
proto: HTTP/1.1
@@ -627,7 +623,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9d69ee5a-c80a-425b-82e5-7de5af3beb93/check
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/check
method: POST
response:
proto: HTTP/2.0
@@ -635,20 +631,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1060
+ content_length: 1101
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-16T05:26:18.871703Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk84rSUtCU560v6gZGD4OSrdtVQ7D/LvbeepiM6ZYZ5b8fbMUoJE5oG+di03Yt72Zyq4MJuWhcfYDcNz97pRmqklEgmx4Iz8c7lQEVJahGNjDuA8TsKybHJlzXwJNJGpOQtDOm/DrrWm9j4c44xwl88X39hUn2Fm+Voc0GMmjSNzZ4u/iROJApkuAW6XwQsFTNdKez1ygKl4RQReMCId9JsVqJhbzLFbtky1PvGl7jan/11RTqub31DBFc7AON2Ee5ZAzAJXtN+lpO0/dmrvqfBA2/5AwZngaPJLHkEoNHcL61z8X+IKys9OS+BMk5CjQVslFqFMY41WKhdESIPWJmQIDAQAB","id":"9d69ee5a-c80a-425b-82e5-7de5af3beb93","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-09-16T05:27:16.435076218Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:21.922170Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1060"
+ - "1101"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 16 Sep 2024 05:27:16 GMT
+ - Fri, 20 Sep 2024 13:01:32 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge03)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -656,10 +652,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4d8191a2-ada8-4826-bf67-52170eb08e40
+ - 7ade9fe1-1062-44bb-a911-4e97c24e08c4
status: 200 OK
code: 200
- duration: 78.079701ms
+ duration: 333.505663ms
- id: 13
request:
proto: HTTP/1.1
@@ -678,7 +674,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9d69ee5a-c80a-425b-82e5-7de5af3beb93/check
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/check
method: POST
response:
proto: HTTP/2.0
@@ -686,20 +682,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1080
+ content_length: 1104
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-16T05:26:18.871703Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk84rSUtCU560v6gZGD4OSrdtVQ7D/LvbeepiM6ZYZ5b8fbMUoJE5oG+di03Yt72Zyq4MJuWhcfYDcNz97pRmqklEgmx4Iz8c7lQEVJahGNjDuA8TsKybHJlzXwJNJGpOQtDOm/DrrWm9j4c44xwl88X39hUn2Fm+Voc0GMmjSNzZ4u/iROJApkuAW6XwQsFTNdKez1ygKl4RQReMCId9JsVqJhbzLFbtky1PvGl7jan/11RTqub31DBFc7AON2Ee5ZAzAJXtN+lpO0/dmrvqfBA2/5AwZngaPJLHkEoNHcL61z8X+IKys9OS+BMk5CjQVslFqFMY41WKhdESIPWJmQIDAQAB","id":"9d69ee5a-c80a-425b-82e5-7de5af3beb93","last_error":null,"last_valid_at":"2024-09-16T05:27:18.655899Z","name":"scaleway-terraform.com","next_check_at":"2024-09-16T05:28:18.655899Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:42.332557609Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1080"
+ - "1104"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 16 Sep 2024 05:27:26 GMT
+ - Fri, 20 Sep 2024 13:01:42 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge03)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -707,11 +703,113 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 02055f3d-e5bf-4900-bb68-e58fd5af4fdd
+ - 6f57d74b-31fd-4d4b-b76e-608502c83881
status: 200 OK
code: 200
- duration: 143.155412ms
+ duration: 68.179965ms
- id: 14
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 2
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: '{}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/check
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1104
+ uncompressed: false
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":null,"name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:52.407350652Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ headers:
+ Content-Length:
+ - "1104"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:01:52 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - b70e9ab2-30e9-466b-b1b5-556c1ee48fcf
+ status: 200 OK
+ code: 200
+ duration: 77.282327ms
+ - id: 15
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 2
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: '{}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/check
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1124
+ uncompressed: false
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":"2024-09-20T13:02:01.032541Z","name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:03:01.032541Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ headers:
+ Content-Length:
+ - "1124"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:02:02 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 89e2c166-0ee6-418c-b1fd-d039920c4643
+ status: 200 OK
+ code: 200
+ duration: 97.647703ms
+ - id: 16
request:
proto: HTTP/1.1
proto_major: 1
@@ -727,7 +825,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9d69ee5a-c80a-425b-82e5-7de5af3beb93
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111
method: GET
response:
proto: HTTP/2.0
@@ -735,20 +833,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1203
+ content_length: 1250
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-16T05:26:18.871703Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk84rSUtCU560v6gZGD4OSrdtVQ7D/LvbeepiM6ZYZ5b8fbMUoJE5oG+di03Yt72Zyq4MJuWhcfYDcNz97pRmqklEgmx4Iz8c7lQEVJahGNjDuA8TsKybHJlzXwJNJGpOQtDOm/DrrWm9j4c44xwl88X39hUn2Fm+Voc0GMmjSNzZ4u/iROJApkuAW6XwQsFTNdKez1ygKl4RQReMCId9JsVqJhbzLFbtky1PvGl7jan/11RTqub31DBFc7AON2Ee5ZAzAJXtN+lpO0/dmrvqfBA2/5AwZngaPJLHkEoNHcL61z8X+IKys9OS+BMk5CjQVslFqFMY41WKhdESIPWJmQIDAQAB","id":"9d69ee5a-c80a-425b-82e5-7de5af3beb93","last_error":null,"last_valid_at":"2024-09-16T05:27:18.655899Z","name":"scaleway-terraform.com","next_check_at":"2024-09-16T05:28:18.655899Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-16T05:27:25.686062Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":"2024-09-20T13:02:01.032541Z","name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:03:01.032541Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:02:02.546022735Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
headers:
Content-Length:
- - "1203"
+ - "1250"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 16 Sep 2024 05:27:26 GMT
+ - Fri, 20 Sep 2024 13:02:02 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge03)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -756,11 +854,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 02754a1a-0488-4c03-81a6-13e9cd169dc9
+ - 4ec6b280-e7e6-4972-a22c-11aa581a66d6
status: 200 OK
code: 200
- duration: 195.022744ms
- - id: 15
+ duration: 22.859721ms
+ - id: 17
request:
proto: HTTP/1.1
proto_major: 1
@@ -776,7 +874,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9d69ee5a-c80a-425b-82e5-7de5af3beb93
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=validation-validation.scaleway-terraform.com&domain=&order_by=domain_asc&project_id=105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
proto: HTTP/2.0
@@ -784,20 +882,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1203
+ content_length: 374
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-16T05:26:18.871703Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk84rSUtCU560v6gZGD4OSrdtVQ7D/LvbeepiM6ZYZ5b8fbMUoJE5oG+di03Yt72Zyq4MJuWhcfYDcNz97pRmqklEgmx4Iz8c7lQEVJahGNjDuA8TsKybHJlzXwJNJGpOQtDOm/DrrWm9j4c44xwl88X39hUn2Fm+Voc0GMmjSNzZ4u/iROJApkuAW6XwQsFTNdKez1ygKl4RQReMCId9JsVqJhbzLFbtky1PvGl7jan/11RTqub31DBFc7AON2Ee5ZAzAJXtN+lpO0/dmrvqfBA2/5AwZngaPJLHkEoNHcL61z8X+IKys9OS+BMk5CjQVslFqFMY41WKhdESIPWJmQIDAQAB","id":"9d69ee5a-c80a-425b-82e5-7de5af3beb93","last_error":null,"last_valid_at":"2024-09-16T05:27:18.655899Z","name":"scaleway-terraform.com","next_check_at":"2024-09-16T05:28:18.655899Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-16T05:27:25.686062Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"validation-validation","updated_at":"2024-09-20T13:01:49Z"}],"total_count":1}'
headers:
Content-Length:
- - "1203"
+ - "374"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 16 Sep 2024 05:27:27 GMT
+ - Fri, 20 Sep 2024 13:02:03 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge03)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -805,11 +903,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ae3f0f08-18a3-4848-a674-7db4f633f588
+ - 03505900-d5c1-47c7-81d6-3516c7f29d41
status: 200 OK
code: 200
- duration: 196.336554ms
- - id: 16
+ duration: 86.692038ms
+ - id: 18
request:
proto: HTTP/1.1
proto_major: 1
@@ -825,7 +923,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9d69ee5a-c80a-425b-82e5-7de5af3beb93
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111
method: GET
response:
proto: HTTP/2.0
@@ -833,20 +931,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1203
+ content_length: 1250
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-16T05:26:18.871703Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk84rSUtCU560v6gZGD4OSrdtVQ7D/LvbeepiM6ZYZ5b8fbMUoJE5oG+di03Yt72Zyq4MJuWhcfYDcNz97pRmqklEgmx4Iz8c7lQEVJahGNjDuA8TsKybHJlzXwJNJGpOQtDOm/DrrWm9j4c44xwl88X39hUn2Fm+Voc0GMmjSNzZ4u/iROJApkuAW6XwQsFTNdKez1ygKl4RQReMCId9JsVqJhbzLFbtky1PvGl7jan/11RTqub31DBFc7AON2Ee5ZAzAJXtN+lpO0/dmrvqfBA2/5AwZngaPJLHkEoNHcL61z8X+IKys9OS+BMk5CjQVslFqFMY41WKhdESIPWJmQIDAQAB","id":"9d69ee5a-c80a-425b-82e5-7de5af3beb93","last_error":null,"last_valid_at":"2024-09-16T05:27:18.655899Z","name":"scaleway-terraform.com","next_check_at":"2024-09-16T05:28:18.655899Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-16T05:27:25.686062Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":"2024-09-20T13:02:01.032541Z","name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:03:01.032541Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:02:03.271861918Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
headers:
Content-Length:
- - "1203"
+ - "1250"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 16 Sep 2024 05:27:27 GMT
+ - Fri, 20 Sep 2024 13:02:03 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge03)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -854,11 +952,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b4e1e93b-495a-4f35-a90a-ff63ad339f18
+ - 2373a94f-92fe-4e09-a49c-e5d604c25892
status: 200 OK
code: 200
- duration: 72.382042ms
- - id: 17
+ duration: 328.066356ms
+ - id: 19
request:
proto: HTTP/1.1
proto_major: 1
@@ -874,7 +972,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9d69ee5a-c80a-425b-82e5-7de5af3beb93
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111
method: GET
response:
proto: HTTP/2.0
@@ -882,20 +980,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1203
+ content_length: 1250
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-16T05:26:18.871703Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk84rSUtCU560v6gZGD4OSrdtVQ7D/LvbeepiM6ZYZ5b8fbMUoJE5oG+di03Yt72Zyq4MJuWhcfYDcNz97pRmqklEgmx4Iz8c7lQEVJahGNjDuA8TsKybHJlzXwJNJGpOQtDOm/DrrWm9j4c44xwl88X39hUn2Fm+Voc0GMmjSNzZ4u/iROJApkuAW6XwQsFTNdKez1ygKl4RQReMCId9JsVqJhbzLFbtky1PvGl7jan/11RTqub31DBFc7AON2Ee5ZAzAJXtN+lpO0/dmrvqfBA2/5AwZngaPJLHkEoNHcL61z8X+IKys9OS+BMk5CjQVslFqFMY41WKhdESIPWJmQIDAQAB","id":"9d69ee5a-c80a-425b-82e5-7de5af3beb93","last_error":null,"last_valid_at":"2024-09-16T05:27:18.655899Z","name":"scaleway-terraform.com","next_check_at":"2024-09-16T05:28:18.655899Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-16T05:27:25.686062Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":"2024-09-20T13:02:01.032541Z","name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:03:01.032541Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:02:03.668592928Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
headers:
Content-Length:
- - "1203"
+ - "1250"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 16 Sep 2024 05:27:28 GMT
+ - Fri, 20 Sep 2024 13:02:03 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge03)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -903,11 +1001,60 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dbcf69f5-dc40-4a1d-941a-fdc8de6fd81a
+ - 7f7d548a-a7c5-41f8-adae-a21f66ba8fd3
status: 200 OK
code: 200
- duration: 359.659642ms
- - id: 18
+ duration: 309.978435ms
+ - id: 20
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1250
+ uncompressed: false
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":"2024-09-20T13:02:01.032541Z","name":"validation-validation.scaleway-terraform.com","next_check_at":"2024-09-20T13:03:01.032541Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.validation-validation","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:02:04.300963649Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ headers:
+ Content-Length:
+ - "1250"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:02:04 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 3f579357-3212-409c-b4ee-ae6ae03454ff
+ status: 200 OK
+ code: 200
+ duration: 62.974536ms
+ - id: 21
request:
proto: HTTP/1.1
proto_major: 1
@@ -925,7 +1072,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9d69ee5a-c80a-425b-82e5-7de5af3beb93/revoke
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/revoke
method: POST
response:
proto: HTTP/2.0
@@ -933,20 +1080,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1003
+ content_length: 1025
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-16T05:26:18.871703Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk84rSUtCU560v6gZGD4OSrdtVQ7D/LvbeepiM6ZYZ5b8fbMUoJE5oG+di03Yt72Zyq4MJuWhcfYDcNz97pRmqklEgmx4Iz8c7lQEVJahGNjDuA8TsKybHJlzXwJNJGpOQtDOm/DrrWm9j4c44xwl88X39hUn2Fm+Voc0GMmjSNzZ4u/iROJApkuAW6XwQsFTNdKez1ygKl4RQReMCId9JsVqJhbzLFbtky1PvGl7jan/11RTqub31DBFc7AON2Ee5ZAzAJXtN+lpO0/dmrvqfBA2/5AwZngaPJLHkEoNHcL61z8X+IKys9OS+BMk5CjQVslFqFMY41WKhdESIPWJmQIDAQAB","id":"9d69ee5a-c80a-425b-82e5-7de5af3beb93","last_error":null,"last_valid_at":"2024-09-16T05:27:18.655899Z","name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-16T05:27:29.360189003Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":"2024-09-20T13:02:01.032541Z","name":"validation-validation.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-20T13:02:05.011669076Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "1003"
+ - "1025"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 16 Sep 2024 05:27:29 GMT
+ - Fri, 20 Sep 2024 13:02:05 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge03)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -954,11 +1101,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0f736d9a-04dc-46cf-9b93-98b0460c0145
+ - ab1fff71-a379-468c-ad28-dac950ab36aa
status: 200 OK
code: 200
- duration: 963.128933ms
- - id: 19
+ duration: 694.429692ms
+ - id: 22
request:
proto: HTTP/1.1
proto_major: 1
@@ -974,7 +1121,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9d69ee5a-c80a-425b-82e5-7de5af3beb93
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111
method: GET
response:
proto: HTTP/2.0
@@ -982,20 +1129,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1152
+ content_length: 1177
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-16T05:26:18.871703Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk84rSUtCU560v6gZGD4OSrdtVQ7D/LvbeepiM6ZYZ5b8fbMUoJE5oG+di03Yt72Zyq4MJuWhcfYDcNz97pRmqklEgmx4Iz8c7lQEVJahGNjDuA8TsKybHJlzXwJNJGpOQtDOm/DrrWm9j4c44xwl88X39hUn2Fm+Voc0GMmjSNzZ4u/iROJApkuAW6XwQsFTNdKez1ygKl4RQReMCId9JsVqJhbzLFbtky1PvGl7jan/11RTqub31DBFc7AON2Ee5ZAzAJXtN+lpO0/dmrvqfBA2/5AwZngaPJLHkEoNHcL61z8X+IKys9OS+BMk5CjQVslFqFMY41WKhdESIPWJmQIDAQAB","id":"9d69ee5a-c80a-425b-82e5-7de5af3beb93","last_error":null,"last_valid_at":"2024-09-16T05:27:18.655899Z","name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-16T05:27:25.686062Z","status":"excellent"},"revoked_at":"2024-09-16T05:27:29.360189Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":"2024-09-20T13:02:01.032541Z","name":"validation-validation.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:02:05.051376719Z","status":"excellent"},"revoked_at":"2024-09-20T13:02:05.011669Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "1152"
+ - "1177"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 16 Sep 2024 05:27:29 GMT
+ - Fri, 20 Sep 2024 13:02:05 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge03)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1003,11 +1150,109 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3fdcf17e-09e5-438a-96e7-cf53721180d8
+ - 59599e3e-8e3c-4697-b3f2-29cd39258913
status: 200 OK
code: 200
- duration: 366.963904ms
- - id: 20
+ duration: 57.739283ms
+ - id: 23
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=validation-validation.scaleway-terraform.com&domain=&order_by=domain_asc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 374
+ uncompressed: false
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"validation-validation","updated_at":"2024-09-20T13:01:49Z"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "374"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:02:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - b4e7fff7-7d3a-4808-862b-6a9bb9c25a56
+ status: 200 OK
+ code: 200
+ duration: 87.709169ms
+ - id: 24
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones/validation-validation.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 2
+ uncompressed: false
+ body: '{}'
+ headers:
+ Content-Length:
+ - "2"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:02:05 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - eeea0369-6d62-4eb4-8f3a-1c4efe860881
+ status: 200 OK
+ code: 200
+ duration: 357.223241ms
+ - id: 25
request:
proto: HTTP/1.1
proto_major: 1
@@ -1025,7 +1270,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9d69ee5a-c80a-425b-82e5-7de5af3beb93/revoke
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111/revoke
method: POST
response:
proto: HTTP/2.0
@@ -1033,20 +1278,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1000
+ content_length: 1022
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-09-16T05:26:18.871703Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk84rSUtCU560v6gZGD4OSrdtVQ7D/LvbeepiM6ZYZ5b8fbMUoJE5oG+di03Yt72Zyq4MJuWhcfYDcNz97pRmqklEgmx4Iz8c7lQEVJahGNjDuA8TsKybHJlzXwJNJGpOQtDOm/DrrWm9j4c44xwl88X39hUn2Fm+Voc0GMmjSNzZ4u/iROJApkuAW6XwQsFTNdKez1ygKl4RQReMCId9JsVqJhbzLFbtky1PvGl7jan/11RTqub31DBFc7AON2Ee5ZAzAJXtN+lpO0/dmrvqfBA2/5AwZngaPJLHkEoNHcL61z8X+IKys9OS+BMk5CjQVslFqFMY41WKhdESIPWJmQIDAQAB","id":"9d69ee5a-c80a-425b-82e5-7de5af3beb93","last_error":null,"last_valid_at":"2024-09-16T05:27:18.655899Z","name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-16T05:27:29.360189Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":"2024-09-20T13:02:01.032541Z","name":"validation-validation.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-20T13:02:05.011669Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "1000"
+ - "1022"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 16 Sep 2024 05:27:29 GMT
+ - Fri, 20 Sep 2024 13:02:05 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge03)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1054,11 +1299,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c38894bd-1611-47ba-a0aa-1a594776b6ab
+ - 3ebb39b0-f539-4480-a155-884513117d7b
status: 200 OK
code: 200
- duration: 73.554609ms
- - id: 21
+ duration: 107.032031ms
+ - id: 26
request:
proto: HTTP/1.1
proto_major: 1
@@ -1074,7 +1319,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9d69ee5a-c80a-425b-82e5-7de5af3beb93
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ddb366a-5381-4f37-9c4f-e8783464a111
method: GET
response:
proto: HTTP/2.0
@@ -1082,20 +1327,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1152
+ content_length: 1177
uncompressed: false
- body: '{"autoconfig":true,"created_at":"2024-09-16T05:26:18.871703Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk84rSUtCU560v6gZGD4OSrdtVQ7D/LvbeepiM6ZYZ5b8fbMUoJE5oG+di03Yt72Zyq4MJuWhcfYDcNz97pRmqklEgmx4Iz8c7lQEVJahGNjDuA8TsKybHJlzXwJNJGpOQtDOm/DrrWm9j4c44xwl88X39hUn2Fm+Voc0GMmjSNzZ4u/iROJApkuAW6XwQsFTNdKez1ygKl4RQReMCId9JsVqJhbzLFbtky1PvGl7jan/11RTqub31DBFc7AON2Ee5ZAzAJXtN+lpO0/dmrvqfBA2/5AwZngaPJLHkEoNHcL61z8X+IKys9OS+BMk5CjQVslFqFMY41WKhdESIPWJmQIDAQAB","id":"9d69ee5a-c80a-425b-82e5-7de5af3beb93","last_error":null,"last_valid_at":"2024-09-16T05:27:18.655899Z","name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-16T05:27:25.686062Z","status":"excellent"},"revoked_at":"2024-09-16T05:27:29.360189Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:05.807555Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA43enUYut1w+3OBDDlGe3Uq4uzfukSW730kkTu45eW+6czEp+tntII69m8ANzXv1VpUJvFbOQxqRpKGr6x8O8TLeigUR11QZBbhjy2I+W/r6jbk8WAtrq9ShOj2hdnqKDf4pAjNusGOKvhY2kB7NRLCi5qgiOckva9sis/Kpu4sSCjQ9v0uBVLxcvqQ8WjJqMY4LA6iddUh6wvx4kXkqxdgj4B55s1BEJu9RJm3+eWoegFpAp0iZhKOaLlLs92PmWIUF2EA4x9wmWhrs2MgiR+6VgsjXeEW/Nq9Ez2XDuk4AFsRpjLga+1TaocY/3zihh26OFt/xWZFrFOHSgwaoGCwIDAQAB","id":"5ddb366a-5381-4f37-9c4f-e8783464a111","last_error":null,"last_valid_at":"2024-09-20T13:02:01.032541Z","name":"validation-validation.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:02:05.733653626Z","status":"excellent"},"revoked_at":"2024-09-20T13:02:05.011669Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "1152"
+ - "1177"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Mon, 16 Sep 2024 05:27:29 GMT
+ - Fri, 20 Sep 2024 13:02:05 GMT
Server:
- - Scaleway API Gateway (fr-par-1;edge03)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -1103,7 +1348,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a38ca5ab-efad-4d35-8c50-9d4e94381997
+ - e6966ced-469f-4447-a88c-d90df7f8b0c7
status: 200 OK
code: 200
- duration: 69.155016ms
+ duration: 60.782207ms
diff --git a/internal/services/tem/testdata/webhook-basic-and-update.cassette.yaml b/internal/services/tem/testdata/webhook-basic-and-update.cassette.yaml
new file mode 100644
index 000000000..5cb3333b4
--- /dev/null
+++ b/internal/services/tem/testdata/webhook-basic-and-update.cassette.yaml
@@ -0,0 +1,4715 @@
+---
+version: 2
+interactions:
+ - id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 259
+ uncompressed: false
+ body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "259"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:27 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 4698a440-8405-4c7d-a7e7-4c0f93dc97e2
+ status: 200 OK
+ code: 200
+ duration: 853.491711ms
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 227
+ uncompressed: false
+ body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
+ headers:
+ Content-Length:
+ - "227"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:27 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 00247af1-f0da-4ee7-95de-621c37e741cf
+ status: 200 OK
+ code: 200
+ duration: 120.840485ms
+ - id: 2
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 238
+ uncompressed: false
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
+ headers:
+ Content-Length:
+ - "238"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:27 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - f7d8d228-1b49-4f6b-96b8-a3e8fb03ba61
+ status: 200 OK
+ code: 200
+ duration: 63.825981ms
+ - id: 3
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 238
+ uncompressed: false
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
+ headers:
+ Content-Length:
+ - "238"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:28 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 40806753-676b-42bd-b888-6b23dde75fe0
+ status: 200 OK
+ code: 200
+ duration: 64.834701ms
+ - id: 4
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 259
+ uncompressed: false
+ body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "259"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:29 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - a3a52ea1-7091-4e64-a799-ee0b31dbf89f
+ status: 200 OK
+ code: 200
+ duration: 1.148492169s
+ - id: 5
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 227
+ uncompressed: false
+ body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
+ headers:
+ Content-Length:
+ - "227"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:29 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 1614fa05-d084-411d-9e15-79c52fe9f0cd
+ status: 200 OK
+ code: 200
+ duration: 87.964412ms
+ - id: 6
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 238
+ uncompressed: false
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
+ headers:
+ Content-Length:
+ - "238"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:29 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 5e130cab-d89d-4dde-b4bd-a5c4f30227e3
+ status: 200 OK
+ code: 200
+ duration: 53.760025ms
+ - id: 7
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 238
+ uncompressed: false
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
+ headers:
+ Content-Length:
+ - "238"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:29 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 8ac4a00d-f3a5-42f9-ac3b-91cb35b7376e
+ status: 200 OK
+ code: 200
+ duration: 47.806571ms
+ - id: 8
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=webhook-test.scaleway-terraform.com&domain=&order_by=domain_asc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 33
+ uncompressed: false
+ body: '{"dns_zones":[],"total_count":0}'
+ headers:
+ Content-Length:
+ - "33"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:29 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 01af46f4-da61-4489-8cfb-b47ddc40deaa
+ status: 200 OK
+ code: 200
+ duration: 66.511521ms
+ - id: 9
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 172
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-sns-credentials-cocky-montalcini","permissions":{"can_publish":false,"can_receive":false,"can_manage":true}}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 486
+ uncompressed: false
+ body: '{"access_key":"yTiLRrmdRRopBRIMuS6L","created_at":"2024-09-20T13:21:29.899356161Z","id":"5730e7b2-6b33-4be8-ab11-f1e87b50b894","name":"tf-sns-credentials-cocky-montalcini","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"b9423a15da8798f4a070c321f50cfc408c3adf00","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}'
+ headers:
+ Content-Length:
+ - "486"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:29 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 6a66640f-ba08-4f54-984c-5aac15bb7aaf
+ status: 200 OK
+ code: 200
+ duration: 81.814882ms
+ - id: 10
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/5730e7b2-6b33-4be8-ab11-f1e87b50b894
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 419
+ uncompressed: false
+ body: '{"access_key":"yTiLRrmdRRopBRIMuS6L","created_at":"2024-09-20T13:21:29.899356Z","id":"5730e7b2-6b33-4be8-ab11-f1e87b50b894","name":"tf-sns-credentials-cocky-montalcini","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"b9423a15da8798f4a070c321f50cfc408c3adf00","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}'
+ headers:
+ Content-Length:
+ - "419"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:29 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 201c7d4a-18e6-46e6-b796-59ed01be656c
+ status: 200 OK
+ code: 200
+ duration: 71.479574ms
+ - id: 11
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 238
+ uncompressed: false
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
+ headers:
+ Content-Length:
+ - "238"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:30 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 4a8dc2bd-6bbb-4763-a2c8-2028d4a7ed81
+ status: 200 OK
+ code: 200
+ duration: 73.677351ms
+ - id: 12
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 79
+ transfer_encoding: []
+ trailer: {}
+ host: sns.mnq.fr-par.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: Action=CreateTopic&Attributes=&Name=test-mnq-sns-topic-basic&Version=2010-03-31
+ form:
+ Action:
+ - CreateTopic
+ Attributes:
+ - ""
+ Name:
+ - test-mnq-sns-topic-basic
+ Version:
+ - "2010-03-31"
+ headers:
+ Content-Length:
+ - "79"
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ User-Agent:
+ - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64)
+ X-Amz-Date:
+ - 20240920T132130Z
+ url: https://sns.mnq.fr-par.scaleway.com/
+ method: POST
+ response:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ transfer_encoding: []
+ trailer: {}
+ content_length: 378
+ uncompressed: false
+ body: |
+
+
+ arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic
+
+
+ tx36e0f2a9-0f8f-46f7-af4f-0a2d45d518b3
+
+
+ headers:
+ Content-Length:
+ - "378"
+ Content-Type:
+ - text/xml; charset=UTF-8
+ Date:
+ - Fri, 20 Sep 2024 13:21:30 GMT
+ status: 200 OK
+ code: 200
+ duration: 298.643648ms
+ - id: 13
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 152
+ transfer_encoding: []
+ trailer: {}
+ host: sns.mnq.fr-par.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: Action=GetTopicAttributes&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31
+ form:
+ Action:
+ - GetTopicAttributes
+ TopicArn:
+ - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic
+ Version:
+ - "2010-03-31"
+ headers:
+ Content-Length:
+ - "152"
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ User-Agent:
+ - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64)
+ X-Amz-Date:
+ - 20240920T132130Z
+ url: https://sns.mnq.fr-par.scaleway.com/
+ method: POST
+ response:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1046
+ uncompressed: false
+ body: |
+
+
+
+
+ Owner
+ project-105bdce1-64c0-48ab-899d-868455867ecf
+
+
+ SubscriptionsConfirmed
+ 0
+
+
+ SubscriptionsDeleted
+ 0
+
+
+ SubscriptionsPending
+ 0
+
+
+ TopicArn
+ arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic
+
+
+
+
+ tx6f978e63-cdbf-42dd-9149-abc0a4e2093c
+
+
+ headers:
+ Content-Length:
+ - "1046"
+ Content-Type:
+ - text/xml; charset=UTF-8
+ Date:
+ - Fri, 20 Sep 2024 13:21:30 GMT
+ status: 200 OK
+ code: 200
+ duration: 27.875817ms
+ - id: 14
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 114
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: '{"domain":"scaleway-terraform.com","subdomain":"webhook-test","project_id":"105bdce1-64c0-48ab-899d-868455867ecf"}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 332
+ uncompressed: false
+ body: '{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"webhook-test","updated_at":"2024-09-20T13:21:29Z"}'
+ headers:
+ Content-Length:
+ - "332"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:30 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - effece2d-3775-49f6-83e7-42886cad7a46
+ status: 200 OK
+ code: 200
+ duration: 561.301349ms
+ - id: 15
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=webhook-test.scaleway-terraform.com&domain=&order_by=domain_asc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 365
+ uncompressed: false
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"webhook-test","updated_at":"2024-09-20T13:21:29Z"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "365"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:30 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 75f13e0f-c82b-4b46-87f1-3102c751170a
+ status: 200 OK
+ code: 200
+ duration: 74.833502ms
+ - id: 16
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 141
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"webhook-test.scaleway-terraform.com","accept_tos":true,"autoconfig":true}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1209
+ uncompressed: false
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:21:31.083570Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:21:31.162189727Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ headers:
+ Content-Length:
+ - "1209"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:31 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 7b461dc0-f6f5-40f8-9565-285f4abc98fa
+ status: 200 OK
+ code: 200
+ duration: 637.567023ms
+ - id: 17
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1209
+ uncompressed: false
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:21:31.083570Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:21:31.218254347Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ headers:
+ Content-Length:
+ - "1209"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:31 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - c6ec409c-a8d6-4eaa-b41a-bcb52ae42cd6
+ status: 200 OK
+ code: 200
+ duration: 61.561061ms
+ - id: 18
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1209
+ uncompressed: false
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:21:31.083570Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:21:31.304247887Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ headers:
+ Content-Length:
+ - "1209"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:31 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 72b4b768-da50-4be6-9190-a654a42b964d
+ status: 200 OK
+ code: 200
+ duration: 28.428883ms
+ - id: 19
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 2
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: '{}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17/check
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1086
+ uncompressed: false
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:21:31.367308980Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ headers:
+ Content-Length:
+ - "1086"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:31 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - b371441d-ca0a-4bc6-baed-8fea817de537
+ status: 200 OK
+ code: 200
+ duration: 73.519866ms
+ - id: 20
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 287
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: '{"domain_id":"9a4b2900-cc98-4962-8db1-911c88868d17","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"terraform-webhook-test","event_types":["email_delivered","email_dropped"],"sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic"}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 483
+ uncompressed: false
+ body: '{"created_at":"2024-09-20T13:21:31.340570Z","domain_id":"9a4b2900-cc98-4962-8db1-911c88868d17","event_types":["email_delivered","email_dropped"],"id":"8ad410d0-69e4-476d-aaee-f63a54f6aa65","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:21:31.340570Z"}'
+ headers:
+ Content-Length:
+ - "483"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:31 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 2af3f5ee-d388-4794-87af-488c01c83f13
+ status: 200 OK
+ code: 200
+ duration: 177.723876ms
+ - id: 21
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/8ad410d0-69e4-476d-aaee-f63a54f6aa65
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 483
+ uncompressed: false
+ body: '{"created_at":"2024-09-20T13:21:31.340570Z","domain_id":"9a4b2900-cc98-4962-8db1-911c88868d17","event_types":["email_delivered","email_dropped"],"id":"8ad410d0-69e4-476d-aaee-f63a54f6aa65","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:21:31.340570Z"}'
+ headers:
+ Content-Length:
+ - "483"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:31 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 3f338a7f-1cba-4495-a8e6-4a3d8b99f85a
+ status: 200 OK
+ code: 200
+ duration: 68.333729ms
+ - id: 22
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 2
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: '{}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17/check
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1086
+ uncompressed: false
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:21:31.909379805Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ headers:
+ Content-Length:
+ - "1086"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:31 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - a7239da7-a3a0-4a24-998d-78d43d8226f5
+ status: 200 OK
+ code: 200
+ duration: 42.89604ms
+ - id: 23
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 2
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: '{}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17/check
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1083
+ uncompressed: false
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:21:31.909379Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ headers:
+ Content-Length:
+ - "1083"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:33 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - c0465d1d-05de-4a07-9bdb-d39368072607
+ status: 200 OK
+ code: 200
+ duration: 74.231547ms
+ - id: 24
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 2
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: '{}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17/check
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1083
+ uncompressed: false
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:21:31.909379Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ headers:
+ Content-Length:
+ - "1083"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:35 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 0b27c5b8-95c3-409b-9886-46159b8a493e
+ status: 200 OK
+ code: 200
+ duration: 72.641376ms
+ - id: 25
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 2
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: '{}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17/check
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1086
+ uncompressed: false
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:21:39.145791338Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ headers:
+ Content-Length:
+ - "1086"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:39 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 7727e751-2447-4fc3-8292-171485e33f6c
+ status: 200 OK
+ code: 200
+ duration: 97.970324ms
+ - id: 26
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 2
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: '{}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17/check
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1086
+ uncompressed: false
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:21:47.283860824Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ headers:
+ Content-Length:
+ - "1086"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:47 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 8a77b280-d41c-45de-a48d-fbd6040ed92e
+ status: 200 OK
+ code: 200
+ duration: 118.86094ms
+ - id: 27
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 2
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: '{}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17/check
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1086
+ uncompressed: false
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:21:57.356294759Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ headers:
+ Content-Length:
+ - "1086"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:21:57 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - e2410564-72a9-45b6-ad7e-2e1ec2779e3c
+ status: 200 OK
+ code: 200
+ duration: 76.66122ms
+ - id: 28
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 2
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: '{}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17/check
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1106
+ uncompressed: false
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":"2024-09-20T13:22:02.531663Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:23:02.531663Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ headers:
+ Content-Length:
+ - "1106"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 8e34aade-58b4-4de9-8d3a-925854806c76
+ status: 200 OK
+ code: 200
+ duration: 97.730268ms
+ - id: 29
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1232
+ uncompressed: false
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":"2024-09-20T13:22:02.531663Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:23:02.531663Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:22:07.664137133Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ headers:
+ Content-Length:
+ - "1232"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 561f6849-18d0-42bc-94db-1ba85f1bedc7
+ status: 200 OK
+ code: 200
+ duration: 199.698082ms
+ - id: 30
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/8ad410d0-69e4-476d-aaee-f63a54f6aa65
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 483
+ uncompressed: false
+ body: '{"created_at":"2024-09-20T13:21:31.340570Z","domain_id":"9a4b2900-cc98-4962-8db1-911c88868d17","event_types":["email_delivered","email_dropped"],"id":"8ad410d0-69e4-476d-aaee-f63a54f6aa65","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:21:31.340570Z"}'
+ headers:
+ Content-Length:
+ - "483"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:07 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 144dab31-1642-4220-b655-232724812023
+ status: 200 OK
+ code: 200
+ duration: 71.961169ms
+ - id: 31
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 259
+ uncompressed: false
+ body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "259"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 6d0ab956-83cd-491e-8724-75432ad73470
+ status: 200 OK
+ code: 200
+ duration: 690.891054ms
+ - id: 32
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 227
+ uncompressed: false
+ body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
+ headers:
+ Content-Length:
+ - "227"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 10dfe6c4-af42-41d6-b511-a7915e5a5e40
+ status: 200 OK
+ code: 200
+ duration: 101.740208ms
+ - id: 33
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 238
+ uncompressed: false
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
+ headers:
+ Content-Length:
+ - "238"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 5ad6391a-c609-472b-8b78-a02302ee792b
+ status: 200 OK
+ code: 200
+ duration: 60.704687ms
+ - id: 34
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 238
+ uncompressed: false
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
+ headers:
+ Content-Length:
+ - "238"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:08 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 79877c86-a246-4d5f-a02a-7cd65ecd51de
+ status: 200 OK
+ code: 200
+ duration: 83.83306ms
+ - id: 35
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=webhook-test.scaleway-terraform.com&domain=&order_by=domain_asc&project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 365
+ uncompressed: false
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"webhook-test","updated_at":"2024-09-20T13:21:57Z"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "365"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:09 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - d79b5883-4577-454a-825d-bc1b3bb0a961
+ status: 200 OK
+ code: 200
+ duration: 99.560499ms
+ - id: 36
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1232
+ uncompressed: false
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":"2024-09-20T13:22:02.531663Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:23:02.531663Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:22:09.433643276Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ headers:
+ Content-Length:
+ - "1232"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:09 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - a6bdbee8-879b-4c22-b4f1-b969f0632bff
+ status: 200 OK
+ code: 200
+ duration: 255.235133ms
+ - id: 37
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1232
+ uncompressed: false
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":"2024-09-20T13:22:02.531663Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:23:02.531663Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:22:09.707209596Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ headers:
+ Content-Length:
+ - "1232"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:09 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 79c77fbe-6e8f-466c-b0da-0bc127137329
+ status: 200 OK
+ code: 200
+ duration: 301.475314ms
+ - id: 38
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 259
+ uncompressed: false
+ body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "259"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:09 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - e2304052-568a-4ca8-813a-0c2869a6795b
+ status: 200 OK
+ code: 200
+ duration: 770.845228ms
+ - id: 39
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 227
+ uncompressed: false
+ body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
+ headers:
+ Content-Length:
+ - "227"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:10 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - b1793621-2b63-4a46-9370-b7332bdfc1ff
+ status: 200 OK
+ code: 200
+ duration: 111.77344ms
+ - id: 40
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 238
+ uncompressed: false
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
+ headers:
+ Content-Length:
+ - "238"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:10 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 0f630719-5c73-46be-b444-2b9cd0921a95
+ status: 200 OK
+ code: 200
+ duration: 67.423899ms
+ - id: 41
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 238
+ uncompressed: false
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
+ headers:
+ Content-Length:
+ - "238"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:10 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 40af64ee-60f7-4ac5-a58a-1f2e3826af48
+ status: 200 OK
+ code: 200
+ duration: 52.3701ms
+ - id: 42
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/5730e7b2-6b33-4be8-ab11-f1e87b50b894
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 419
+ uncompressed: false
+ body: '{"access_key":"yTiLRrmdRRopBRIMuS6L","created_at":"2024-09-20T13:21:29.899356Z","id":"5730e7b2-6b33-4be8-ab11-f1e87b50b894","name":"tf-sns-credentials-cocky-montalcini","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"b9423a15da8798f4a070c321f50cfc408c3adf00","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}'
+ headers:
+ Content-Length:
+ - "419"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:10 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 43609da4-3ee3-4127-8cc5-57d6d0773f2a
+ status: 200 OK
+ code: 200
+ duration: 58.654467ms
+ - id: 43
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 152
+ transfer_encoding: []
+ trailer: {}
+ host: sns.mnq.fr-par.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: Action=GetTopicAttributes&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31
+ form:
+ Action:
+ - GetTopicAttributes
+ TopicArn:
+ - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic
+ Version:
+ - "2010-03-31"
+ headers:
+ Content-Length:
+ - "152"
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ User-Agent:
+ - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64)
+ X-Amz-Date:
+ - 20240920T132210Z
+ url: https://sns.mnq.fr-par.scaleway.com/
+ method: POST
+ response:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1046
+ uncompressed: false
+ body: |
+
+
+
+
+ Owner
+ project-105bdce1-64c0-48ab-899d-868455867ecf
+
+
+ SubscriptionsConfirmed
+ 0
+
+
+ SubscriptionsDeleted
+ 0
+
+
+ SubscriptionsPending
+ 0
+
+
+ TopicArn
+ arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic
+
+
+
+
+ txaab535d1-7321-4514-b2f9-e97fdb7c7423
+
+
+ headers:
+ Content-Length:
+ - "1046"
+ Content-Type:
+ - text/xml; charset=UTF-8
+ Date:
+ - Fri, 20 Sep 2024 13:22:10 GMT
+ status: 200 OK
+ code: 200
+ duration: 40.451289ms
+ - id: 44
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/8ad410d0-69e4-476d-aaee-f63a54f6aa65
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 483
+ uncompressed: false
+ body: '{"created_at":"2024-09-20T13:21:31.340570Z","domain_id":"9a4b2900-cc98-4962-8db1-911c88868d17","event_types":["email_delivered","email_dropped"],"id":"8ad410d0-69e4-476d-aaee-f63a54f6aa65","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:21:31.340570Z"}'
+ headers:
+ Content-Length:
+ - "483"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:10 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 172cfc62-b08f-48b2-8138-f5b70d3b47c7
+ status: 200 OK
+ code: 200
+ duration: 62.248245ms
+ - id: 45
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 259
+ uncompressed: false
+ body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "259"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:11 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 57bb45b2-4308-4b5d-bcbd-626a24521c28
+ status: 200 OK
+ code: 200
+ duration: 798.990895ms
+ - id: 46
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 227
+ uncompressed: false
+ body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
+ headers:
+ Content-Length:
+ - "227"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:11 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - db092199-381f-4f5b-85b8-55614b3ae85e
+ status: 200 OK
+ code: 200
+ duration: 81.117813ms
+ - id: 47
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 238
+ uncompressed: false
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
+ headers:
+ Content-Length:
+ - "238"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:11 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 94e4b2e5-dbd2-4b3b-8ab9-8bddddab9b56
+ status: 200 OK
+ code: 200
+ duration: 69.507864ms
+ - id: 48
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 238
+ uncompressed: false
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
+ headers:
+ Content-Length:
+ - "238"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:11 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 249f5789-ca3c-4630-83a7-ea10745c3315
+ status: 200 OK
+ code: 200
+ duration: 52.649601ms
+ - id: 49
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=webhook-test.scaleway-terraform.com&domain=&order_by=domain_asc&project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 365
+ uncompressed: false
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"webhook-test","updated_at":"2024-09-20T13:21:57Z"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "365"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:11 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 5b8ffc19-a912-4112-98e9-fba6e186521d
+ status: 200 OK
+ code: 200
+ duration: 81.063018ms
+ - id: 50
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1232
+ uncompressed: false
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":"2024-09-20T13:22:02.531663Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:23:02.531663Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:22:11.765735671Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ headers:
+ Content-Length:
+ - "1232"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:11 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 346abe30-b028-40f3-bc81-45952d30487e
+ status: 200 OK
+ code: 200
+ duration: 73.013262ms
+ - id: 51
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1232
+ uncompressed: false
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":"2024-09-20T13:22:02.531663Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:23:02.531663Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:22:12.039618467Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ headers:
+ Content-Length:
+ - "1232"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:12 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 7435edf7-8da4-458c-a5b2-9a01ea37616a
+ status: 200 OK
+ code: 200
+ duration: 268.241163ms
+ - id: 52
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 259
+ uncompressed: false
+ body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "259"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:12 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 5c4e4c51-4db2-4c06-a413-5631357157c2
+ status: 200 OK
+ code: 200
+ duration: 653.845684ms
+ - id: 53
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 227
+ uncompressed: false
+ body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
+ headers:
+ Content-Length:
+ - "227"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:12 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 2a40108e-815f-4926-a6da-0a07b44a5dd7
+ status: 200 OK
+ code: 200
+ duration: 102.83227ms
+ - id: 54
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 238
+ uncompressed: false
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
+ headers:
+ Content-Length:
+ - "238"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:12 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - fc8729c6-d869-4bf7-820d-91919a244314
+ status: 200 OK
+ code: 200
+ duration: 73.180741ms
+ - id: 55
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 238
+ uncompressed: false
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
+ headers:
+ Content-Length:
+ - "238"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:12 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 1748b687-7ac8-4e5f-b4f4-30f751d6edf5
+ status: 200 OK
+ code: 200
+ duration: 63.521993ms
+ - id: 56
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/5730e7b2-6b33-4be8-ab11-f1e87b50b894
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 419
+ uncompressed: false
+ body: '{"access_key":"yTiLRrmdRRopBRIMuS6L","created_at":"2024-09-20T13:21:29.899356Z","id":"5730e7b2-6b33-4be8-ab11-f1e87b50b894","name":"tf-sns-credentials-cocky-montalcini","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"b9423a15da8798f4a070c321f50cfc408c3adf00","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}'
+ headers:
+ Content-Length:
+ - "419"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:12 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 740fa949-6751-4697-bdae-caac24f3f326
+ status: 200 OK
+ code: 200
+ duration: 57.050589ms
+ - id: 57
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 152
+ transfer_encoding: []
+ trailer: {}
+ host: sns.mnq.fr-par.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: Action=GetTopicAttributes&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31
+ form:
+ Action:
+ - GetTopicAttributes
+ TopicArn:
+ - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic
+ Version:
+ - "2010-03-31"
+ headers:
+ Content-Length:
+ - "152"
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ User-Agent:
+ - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64)
+ X-Amz-Date:
+ - 20240920T132212Z
+ url: https://sns.mnq.fr-par.scaleway.com/
+ method: POST
+ response:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1046
+ uncompressed: false
+ body: |
+
+
+
+
+ Owner
+ project-105bdce1-64c0-48ab-899d-868455867ecf
+
+
+ SubscriptionsConfirmed
+ 0
+
+
+ SubscriptionsDeleted
+ 0
+
+
+ SubscriptionsPending
+ 0
+
+
+ TopicArn
+ arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic
+
+
+
+
+ tx8b324376-a81f-489a-9cfe-cbe379f654ec
+
+
+ headers:
+ Content-Length:
+ - "1046"
+ Content-Type:
+ - text/xml; charset=UTF-8
+ Date:
+ - Fri, 20 Sep 2024 13:22:12 GMT
+ status: 200 OK
+ code: 200
+ duration: 22.753057ms
+ - id: 58
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/8ad410d0-69e4-476d-aaee-f63a54f6aa65
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 483
+ uncompressed: false
+ body: '{"created_at":"2024-09-20T13:21:31.340570Z","domain_id":"9a4b2900-cc98-4962-8db1-911c88868d17","event_types":["email_delivered","email_dropped"],"id":"8ad410d0-69e4-476d-aaee-f63a54f6aa65","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:21:31.340570Z"}'
+ headers:
+ Content-Length:
+ - "483"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:12 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - d2f256b6-e09f-4f5d-b0a5-ac620b79c3f9
+ status: 200 OK
+ code: 200
+ duration: 56.425632ms
+ - id: 59
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 259
+ uncompressed: false
+ body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "259"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:13 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 38522220-a9d9-4be0-9b84-83ce580b0841
+ status: 200 OK
+ code: 200
+ duration: 755.95591ms
+ - id: 60
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 227
+ uncompressed: false
+ body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
+ headers:
+ Content-Length:
+ - "227"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:13 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - e5250760-55c7-455e-ad2c-ab6649ad6f37
+ status: 200 OK
+ code: 200
+ duration: 94.657821ms
+ - id: 61
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 238
+ uncompressed: false
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
+ headers:
+ Content-Length:
+ - "238"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:13 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - f35a17cc-29bd-4ecd-a920-fbd991a0a21f
+ status: 200 OK
+ code: 200
+ duration: 51.898073ms
+ - id: 62
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 238
+ uncompressed: false
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
+ headers:
+ Content-Length:
+ - "238"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:13 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 1ea9554a-f166-4f5b-8072-da89ea4d7e5d
+ status: 200 OK
+ code: 200
+ duration: 63.309682ms
+ - id: 63
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 67
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: '{"name":"terraform-webhook-updated","event_types":["email_queued"]}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/8ad410d0-69e4-476d-aaee-f63a54f6aa65
+ method: PATCH
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 466
+ uncompressed: false
+ body: '{"created_at":"2024-09-20T13:21:31.340570Z","domain_id":"9a4b2900-cc98-4962-8db1-911c88868d17","event_types":["email_queued"],"id":"8ad410d0-69e4-476d-aaee-f63a54f6aa65","name":"terraform-webhook-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:21:31.340570Z"}'
+ headers:
+ Content-Length:
+ - "466"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:14 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - facee04c-eae7-4ec3-8a3c-89397a128e33
+ status: 200 OK
+ code: 200
+ duration: 141.78272ms
+ - id: 64
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/8ad410d0-69e4-476d-aaee-f63a54f6aa65
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 466
+ uncompressed: false
+ body: '{"created_at":"2024-09-20T13:21:31.340570Z","domain_id":"9a4b2900-cc98-4962-8db1-911c88868d17","event_types":["email_queued"],"id":"8ad410d0-69e4-476d-aaee-f63a54f6aa65","name":"terraform-webhook-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:21:31.340570Z"}'
+ headers:
+ Content-Length:
+ - "466"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:14 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 2821605b-9314-47dc-b7ed-796d780d86ba
+ status: 200 OK
+ code: 200
+ duration: 77.575134ms
+ - id: 65
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/8ad410d0-69e4-476d-aaee-f63a54f6aa65
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 466
+ uncompressed: false
+ body: '{"created_at":"2024-09-20T13:21:31.340570Z","domain_id":"9a4b2900-cc98-4962-8db1-911c88868d17","event_types":["email_queued"],"id":"8ad410d0-69e4-476d-aaee-f63a54f6aa65","name":"terraform-webhook-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:21:31.340570Z"}'
+ headers:
+ Content-Length:
+ - "466"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:14 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 120a50e1-3822-4417-959c-bfe8738703fa
+ status: 200 OK
+ code: 200
+ duration: 32.243452ms
+ - id: 66
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 259
+ uncompressed: false
+ body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "259"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:15 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 67b1e3a4-af66-4eba-8228-cf97482f2075
+ status: 200 OK
+ code: 200
+ duration: 638.880826ms
+ - id: 67
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 227
+ uncompressed: false
+ body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
+ headers:
+ Content-Length:
+ - "227"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:15 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - c1799f50-71c5-4dd1-bea9-da432369b326
+ status: 200 OK
+ code: 200
+ duration: 89.732332ms
+ - id: 68
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 238
+ uncompressed: false
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
+ headers:
+ Content-Length:
+ - "238"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:15 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - cca53aa2-163d-4941-b182-d220e192ca6b
+ status: 200 OK
+ code: 200
+ duration: 58.238951ms
+ - id: 69
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 238
+ uncompressed: false
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
+ headers:
+ Content-Length:
+ - "238"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:15 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 51a802d1-0f34-4afa-bb02-71776fd8eae3
+ status: 200 OK
+ code: 200
+ duration: 54.924087ms
+ - id: 70
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=webhook-test.scaleway-terraform.com&domain=&order_by=domain_asc&project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 365
+ uncompressed: false
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"webhook-test","updated_at":"2024-09-20T13:21:57Z"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "365"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:15 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 67f007a7-2feb-49ce-9547-8fd3023b3f59
+ status: 200 OK
+ code: 200
+ duration: 75.118942ms
+ - id: 71
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1232
+ uncompressed: false
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":"2024-09-20T13:22:02.531663Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:23:02.531663Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:22:15.916803879Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ headers:
+ Content-Length:
+ - "1232"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:15 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 9e014bb0-3931-4e5f-98b0-9ee22c2b875e
+ status: 200 OK
+ code: 200
+ duration: 309.263624ms
+ - id: 72
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1232
+ uncompressed: false
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":"2024-09-20T13:22:02.531663Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:23:02.531663Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:22:16.078016560Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ headers:
+ Content-Length:
+ - "1232"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:16 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 5f91cdf9-0edb-4d92-be16-ec9dc7ceec47
+ status: 200 OK
+ code: 200
+ duration: 78.064079ms
+ - id: 73
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 259
+ uncompressed: false
+ body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "259"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:16 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 34f487f2-ef7a-44a6-ad17-552bf9e77061
+ status: 200 OK
+ code: 200
+ duration: 699.104322ms
+ - id: 74
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 227
+ uncompressed: false
+ body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
+ headers:
+ Content-Length:
+ - "227"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:16 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - c44129e2-d320-473e-a4cc-8c4e34fad74e
+ status: 200 OK
+ code: 200
+ duration: 126.144422ms
+ - id: 75
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 238
+ uncompressed: false
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
+ headers:
+ Content-Length:
+ - "238"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:16 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 18d38760-3434-4f2e-80c0-8e40f952e185
+ status: 200 OK
+ code: 200
+ duration: 60.168099ms
+ - id: 76
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 238
+ uncompressed: false
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
+ headers:
+ Content-Length:
+ - "238"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:16 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - ae62d344-f25b-4c12-a57e-f4e3fcaf3a5a
+ status: 200 OK
+ code: 200
+ duration: 53.705792ms
+ - id: 77
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/5730e7b2-6b33-4be8-ab11-f1e87b50b894
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 419
+ uncompressed: false
+ body: '{"access_key":"yTiLRrmdRRopBRIMuS6L","created_at":"2024-09-20T13:21:29.899356Z","id":"5730e7b2-6b33-4be8-ab11-f1e87b50b894","name":"tf-sns-credentials-cocky-montalcini","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"b9423a15da8798f4a070c321f50cfc408c3adf00","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}'
+ headers:
+ Content-Length:
+ - "419"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:16 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 5c2eb778-b842-4267-9284-6889a01d40bb
+ status: 200 OK
+ code: 200
+ duration: 81.304468ms
+ - id: 78
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 152
+ transfer_encoding: []
+ trailer: {}
+ host: sns.mnq.fr-par.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: Action=GetTopicAttributes&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31
+ form:
+ Action:
+ - GetTopicAttributes
+ TopicArn:
+ - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic
+ Version:
+ - "2010-03-31"
+ headers:
+ Content-Length:
+ - "152"
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ User-Agent:
+ - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64)
+ X-Amz-Date:
+ - 20240920T132216Z
+ url: https://sns.mnq.fr-par.scaleway.com/
+ method: POST
+ response:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1046
+ uncompressed: false
+ body: |
+
+
+
+
+ Owner
+ project-105bdce1-64c0-48ab-899d-868455867ecf
+
+
+ SubscriptionsConfirmed
+ 0
+
+
+ SubscriptionsDeleted
+ 0
+
+
+ SubscriptionsPending
+ 0
+
+
+ TopicArn
+ arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic
+
+
+
+
+ tx9a6b4b20-d5f2-4a09-af5a-56397adef6e3
+
+
+ headers:
+ Content-Length:
+ - "1046"
+ Content-Type:
+ - text/xml; charset=UTF-8
+ Date:
+ - Fri, 20 Sep 2024 13:22:16 GMT
+ status: 200 OK
+ code: 200
+ duration: 45.314604ms
+ - id: 79
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/8ad410d0-69e4-476d-aaee-f63a54f6aa65
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 466
+ uncompressed: false
+ body: '{"created_at":"2024-09-20T13:21:31.340570Z","domain_id":"9a4b2900-cc98-4962-8db1-911c88868d17","event_types":["email_queued"],"id":"8ad410d0-69e4-476d-aaee-f63a54f6aa65","name":"terraform-webhook-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:21:31.340570Z"}'
+ headers:
+ Content-Length:
+ - "466"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:16 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - df1c0db4-3892-43ad-bc41-30fe602b17c0
+ status: 200 OK
+ code: 200
+ duration: 56.436287ms
+ - id: 80
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 259
+ uncompressed: false
+ body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "259"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:17 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 2a23dc0a-d340-41de-a7f7-33f5d9d71574
+ status: 200 OK
+ code: 200
+ duration: 655.189901ms
+ - id: 81
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 227
+ uncompressed: false
+ body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
+ headers:
+ Content-Length:
+ - "227"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:17 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - efa4a9b4-af8e-4e3c-9d80-3d332c99276c
+ status: 200 OK
+ code: 200
+ duration: 99.738887ms
+ - id: 82
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 238
+ uncompressed: false
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
+ headers:
+ Content-Length:
+ - "238"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:17 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 62a03c73-db0a-409d-8f9f-8179210093bb
+ status: 200 OK
+ code: 200
+ duration: 53.762847ms
+ - id: 83
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 238
+ uncompressed: false
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
+ headers:
+ Content-Length:
+ - "238"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:17 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 5792f56c-5865-4f6e-bee3-d7dc1d2e1079
+ status: 200 OK
+ code: 200
+ duration: 53.490022ms
+ - id: 84
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/8ad410d0-69e4-476d-aaee-f63a54f6aa65
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 0
+ uncompressed: false
+ body: ""
+ headers:
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:18 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 6fb13010-3929-485b-8737-ecdd49257486
+ status: 204 No Content
+ code: 204
+ duration: 135.184884ms
+ - id: 85
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 145
+ transfer_encoding: []
+ trailer: {}
+ host: sns.mnq.fr-par.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: Action=DeleteTopic&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31
+ form:
+ Action:
+ - DeleteTopic
+ TopicArn:
+ - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic
+ Version:
+ - "2010-03-31"
+ headers:
+ Content-Length:
+ - "145"
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
+ User-Agent:
+ - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64)
+ X-Amz-Date:
+ - 20240920T132218Z
+ url: https://sns.mnq.fr-par.scaleway.com/
+ method: POST
+ response:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ transfer_encoding: []
+ trailer: {}
+ content_length: 211
+ uncompressed: false
+ body: |
+
+
+ txf6e94131-eda3-44dc-889f-da3eb34f9380
+
+
+ headers:
+ Content-Length:
+ - "211"
+ Content-Type:
+ - text/xml; charset=UTF-8
+ Date:
+ - Fri, 20 Sep 2024 13:22:18 GMT
+ status: 200 OK
+ code: 200
+ duration: 63.90306ms
+ - id: 86
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1229
+ uncompressed: false
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":"2024-09-20T13:22:02.531663Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:23:02.531663Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:22:16.628346Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ headers:
+ Content-Length:
+ - "1229"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:18 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - e7a70db1-4bd3-41a4-af4d-da58cfe50705
+ status: 200 OK
+ code: 200
+ duration: 77.867962ms
+ - id: 87
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/5730e7b2-6b33-4be8-ab11-f1e87b50b894
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 0
+ uncompressed: false
+ body: ""
+ headers:
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:18 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 65ad33d9-aa8e-4c09-95de-db4829f5ff1d
+ status: 204 No Content
+ code: 204
+ duration: 76.488703ms
+ - id: 88
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 2
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: '{}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17/revoke
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1016
+ uncompressed: false
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":"2024-09-20T13:22:02.531663Z","name":"webhook-test.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-20T13:22:19.359926046Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ headers:
+ Content-Length:
+ - "1016"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:19 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - f8ffb16e-1349-482d-b390-528a265b7e27
+ status: 200 OK
+ code: 200
+ duration: 1.085535521s
+ - id: 89
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/9a4b2900-cc98-4962-8db1-911c88868d17
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1165
+ uncompressed: false
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:21:31.091010Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwXjwrJGqO/xmVkidHFVN89tYGuOC+8eH1vVwR+gI3YZIpDoh5B7fCZjJZEqV7XzzaW1qySWNSgk6q6l8WR3b3Own7zs5ceWRZMULYnzhITjRkdD5nDl+EsTb2qILIH0jerVdBMkV2FMTUXohcIywyMT7uAn9c0uFz3hH2v8Eu9diDL/0vy3mKG7fGuW5iBHKXH6M953pdSKDOOZTqwd0f83IvKfL/4wuhpcPSS92Aa09JUlGblIEgfJ1r0U3jv2YVWrc3kcvfegJKpPkXDIXW981TCm8eyTjr8crCRJTrCFEchu+trXFhn7rHjLytSwRRtMJbShATWtBNxd7sainyQIDAQAB","id":"9a4b2900-cc98-4962-8db1-911c88868d17","last_error":null,"last_valid_at":"2024-09-20T13:22:02.531663Z","name":"webhook-test.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:22:16.628346Z","status":"excellent"},"revoked_at":"2024-09-20T13:22:19.359926Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ headers:
+ Content-Length:
+ - "1165"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:19 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - b66fc29d-6924-40d8-9b46-85ada5617a3b
+ status: 200 OK
+ code: 200
+ duration: 211.883143ms
+ - id: 90
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=webhook-test.scaleway-terraform.com&domain=&order_by=domain_asc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 365
+ uncompressed: false
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"webhook-test","updated_at":"2024-09-20T13:21:57Z"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "365"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:19 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 322a6caa-8667-4aba-8e00-a1bf6eabea1a
+ status: 200 OK
+ code: 200
+ duration: 93.071417ms
+ - id: 91
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones/webhook-test.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 2
+ uncompressed: false
+ body: '{}'
+ headers:
+ Content-Length:
+ - "2"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:20 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 32d46cb3-0e35-4832-82c0-6ba7e767c9b1
+ status: 200 OK
+ code: 200
+ duration: 270.080842ms
+ - id: 92
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 0
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: ""
+ form: {}
+ headers:
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/8ad410d0-69e4-476d-aaee-f63a54f6aa65
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 131
+ uncompressed: false
+ body: '{"message":"resource is not found","resource":"webhook_id","resource_id":"8ad410d0-69e4-476d-aaee-f63a54f6aa65","type":"not_found"}'
+ headers:
+ Content-Length:
+ - "131"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:22:20 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge01)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 518c7c45-56f3-4389-abaf-29db4ec9d33a
+ status: 404 Not Found
+ code: 404
+ duration: 25.718624ms
diff --git a/internal/services/tem/testdata/webhook-basic.cassette.yaml b/internal/services/tem/testdata/webhook-basic.cassette.yaml
index 12bf70cf4..4311ac74b 100644
--- a/internal/services/tem/testdata/webhook-basic.cassette.yaml
+++ b/internal/services/tem/testdata/webhook-basic.cassette.yaml
@@ -25,20 +25,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 253
+ content_length: 259
uncompressed: false
body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
headers:
Content-Length:
- - "253"
+ - "259"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:59:22 GMT
+ - Fri, 20 Sep 2024 13:00:58 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -46,10 +46,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f4c8a109-d137-4d53-9d7b-2e8c89069eda
+ - f05082e7-75e8-4601-8d43-498c35741eb1
status: 200 OK
code: 200
- duration: 823.252861ms
+ duration: 776.882682ms
- id: 1
request:
proto: HTTP/1.1
@@ -74,20 +74,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 222
+ content_length: 227
uncompressed: false
body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
headers:
Content-Length:
- - "222"
+ - "227"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:59:22 GMT
+ - Fri, 20 Sep 2024 13:00:58 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -95,10 +95,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4c093bf5-e26b-40a0-bc09-617196a4bac0
+ - a99eb2e8-1254-45bc-969c-8a27b0d9dd92
status: 200 OK
code: 200
- duration: 66.181538ms
+ duration: 85.223661ms
- id: 2
request:
proto: HTTP/1.1
@@ -123,20 +123,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 238
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
headers:
Content-Length:
- - "233"
+ - "238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:59:22 GMT
+ - Fri, 20 Sep 2024 13:00:58 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -144,10 +144,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d712503c-7496-4bee-8b4b-b0050985e6d2
+ - 3bc83fc6-0391-484c-aa8a-f17cec054a06
status: 200 OK
code: 200
- duration: 58.239711ms
+ duration: 61.863657ms
- id: 3
request:
proto: HTTP/1.1
@@ -172,20 +172,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 238
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
headers:
Content-Length:
- - "233"
+ - "238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:59:22 GMT
+ - Fri, 20 Sep 2024 13:00:58 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -193,10 +193,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c7e98b1f-01e8-4d0f-a059-35566b46d2d9
+ - 8d859a4e-7a29-49b8-849d-51eec6751f9c
status: 200 OK
code: 200
- duration: 48.934152ms
+ duration: 59.299274ms
- id: 4
request:
proto: HTTP/1.1
@@ -221,20 +221,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 253
+ content_length: 259
uncompressed: false
body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
headers:
Content-Length:
- - "253"
+ - "259"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:59:23 GMT
+ - Fri, 20 Sep 2024 13:00:59 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -242,10 +242,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - aee6e658-9d68-41d8-8aca-fcf67047e663
+ - 3e243f8a-8d60-416b-8090-0de7aca20ce4
status: 200 OK
code: 200
- duration: 686.434594ms
+ duration: 1.118707051s
- id: 5
request:
proto: HTTP/1.1
@@ -270,20 +270,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 222
+ content_length: 227
uncompressed: false
body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
headers:
Content-Length:
- - "222"
+ - "227"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:59:23 GMT
+ - Fri, 20 Sep 2024 13:00:59 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -291,10 +291,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1b415727-add7-4035-a101-826f32f51081
+ - 7572f9bf-1ba8-4b4c-92a1-dd0d0d000d62
status: 200 OK
code: 200
- duration: 56.353667ms
+ duration: 99.422507ms
- id: 6
request:
proto: HTTP/1.1
@@ -319,20 +319,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 238
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
headers:
Content-Length:
- - "233"
+ - "238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:59:23 GMT
+ - Fri, 20 Sep 2024 13:00:59 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -340,10 +340,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 44dc2eee-f032-4dff-aa76-15ee2e17be2a
+ - 89751900-12a5-4700-b9eb-285dc2ea93f2
status: 200 OK
code: 200
- duration: 62.86931ms
+ duration: 76.6793ms
- id: 7
request:
proto: HTTP/1.1
@@ -368,20 +368,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 238
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
headers:
Content-Length:
- - "233"
+ - "238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:59:23 GMT
+ - Fri, 20 Sep 2024 13:00:59 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -389,62 +389,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 74a85451-127d-4521-b157-a8b432388a10
+ - 675a03e0-7d0f-4906-bb75-efafa527759c
status: 200 OK
code: 200
- duration: 52.782078ms
+ duration: 58.230041ms
- id: 8
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 169
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-sns-credentials-gallant-nobel","permissions":{"can_publish":false,"can_receive":false,"can_manage":true}}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 472
- uncompressed: false
- body: '{"access_key":"IjzRRzg9oSZHv7lbBXG8","created_at":"2024-08-30T04:59:23.938804332Z","id":"8058cd5b-887d-406f-855e-36d9d9209cf6","name":"tf-sns-credentials-gallant-nobel","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"d7bdbb81283be41242515644765a1d0a0611f2fc","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}'
- headers:
- Content-Length:
- - "472"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:23 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3ef5114f-5c51-46d0-ad4b-a1ea35499fa3
- status: 200 OK
- code: 200
- duration: 72.892377ms
- - id: 9
request:
proto: HTTP/1.1
proto_major: 1
@@ -460,7 +409,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/8058cd5b-887d-406f-855e-36d9d9209cf6
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=webhook-test.scaleway-terraform.com&domain=&order_by=domain_asc
method: GET
response:
proto: HTTP/2.0
@@ -468,20 +417,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 405
+ content_length: 33
uncompressed: false
- body: '{"access_key":"IjzRRzg9oSZHv7lbBXG8","created_at":"2024-08-30T04:59:23.938804Z","id":"8058cd5b-887d-406f-855e-36d9d9209cf6","name":"tf-sns-credentials-gallant-nobel","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"d7bdbb81283be41242515644765a1d0a0611f2fc","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}'
+ body: '{"dns_zones":[],"total_count":0}'
headers:
Content-Length:
- - "405"
+ - "33"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
+ - Fri, 20 Sep 2024 13:01:00 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -489,50 +438,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c8a92426-43e7-4d70-a4a2-a6fee5e50333
+ - eb2c4119-5220-4773-9ee8-243e813fa42e
status: 200 OK
code: 200
- duration: 54.263916ms
- - id: 10
+ duration: 69.933383ms
+ - id: 9
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 179
+ content_length: 166
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"changes":[{"add":{"records":[{"data":".","name":"","priority":0,"ttl":3600,"type":"MX","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}'
+ body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-sns-credentials-zen-mclean","permissions":{"can_publish":false,"can_receive":false,"can_manage":true}}'
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records
- method: PATCH
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 133
+ content_length: 480
uncompressed: false
- body: '{"records":[{"comment":null,"data":"0 .","id":"dc97c415-02a8-432a-b7fa-50b0c64af0e9","name":"","priority":0,"ttl":3600,"type":"MX"}]}'
+ body: '{"access_key":"Woi412g4sUn9aJWD0Q1z","created_at":"2024-09-20T13:01:00.315579963Z","id":"19d4a109-c812-4f9a-9d49-55ce89f05d5d","name":"tf-sns-credentials-zen-mclean","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"47214efc2e91d8d45617246b460b6d1a7f904032","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}'
headers:
Content-Length:
- - "133"
+ - "480"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
+ - Fri, 20 Sep 2024 13:01:00 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -540,11 +489,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b88c91e1-e3ec-4418-8bfe-554ce849c4a5
+ - 7a858182-14d8-4da8-b5ab-6800fb7ff4de
status: 200 OK
code: 200
- duration: 138.517326ms
- - id: 11
+ duration: 96.960379ms
+ - id: 10
request:
proto: HTTP/1.1
proto_major: 1
@@ -560,7 +509,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?name=&order_by=name_asc&type=MX
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/19d4a109-c812-4f9a-9d49-55ce89f05d5d
method: GET
response:
proto: HTTP/2.0
@@ -568,20 +517,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 149
+ content_length: 413
uncompressed: false
- body: '{"records":[{"comment":null,"data":"0 .","id":"dc97c415-02a8-432a-b7fa-50b0c64af0e9","name":"","priority":0,"ttl":3600,"type":"MX"}],"total_count":1}'
+ body: '{"access_key":"Woi412g4sUn9aJWD0Q1z","created_at":"2024-09-20T13:01:00.315579Z","id":"19d4a109-c812-4f9a-9d49-55ce89f05d5d","name":"tf-sns-credentials-zen-mclean","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"47214efc2e91d8d45617246b460b6d1a7f904032","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}'
headers:
Content-Length:
- - "149"
+ - "413"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
+ - Fri, 20 Sep 2024 13:01:00 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -589,11 +538,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - afb837f7-813b-4932-b9d3-dca470395c44
+ - 227c241b-aca7-4905-9aaa-1d7f8542d804
status: 200 OK
code: 200
- duration: 59.109188ms
- - id: 12
+ duration: 151.7893ms
+ - id: 11
request:
proto: HTTP/1.1
proto_major: 1
@@ -617,20 +566,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 238
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
headers:
Content-Length:
- - "233"
+ - "238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
+ - Fri, 20 Sep 2024 13:01:00 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -638,29 +587,29 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 823ebf16-b52e-4f78-97c8-39056ba4262c
+ - c7036e91-e2bf-48ed-8831-8e09b06dc4c0
status: 200 OK
code: 200
- duration: 46.01373ms
- - id: 13
+ duration: 58.299557ms
+ - id: 12
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 110
+ content_length: 114
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"scaleway-terraform.com","accept_tos":true}'
+ body: '{"domain":"scaleway-terraform.com","subdomain":"webhook-test","project_id":"105bdce1-64c0-48ab-899d-868455867ecf"}'
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones
method: POST
response:
proto: HTTP/2.0
@@ -668,20 +617,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1135
+ content_length: 332
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:59:24.051438Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-08-30T04:59:24.051435486Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"webhook-test","updated_at":"2024-09-20T13:01:00Z"}'
headers:
Content-Length:
- - "1135"
+ - "332"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
+ - Fri, 20 Sep 2024 13:01:00 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -689,11 +638,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dadd96ff-3561-4d30-bd80-49b60117700f
+ - 555a044a-f496-465a-bd28-64a660f4f662
status: 200 OK
code: 200
- duration: 260.559547ms
- - id: 14
+ duration: 428.758753ms
+ - id: 13
request:
proto: HTTP/1.1
proto_major: 1
@@ -709,7 +658,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?name=&order_by=name_asc&page=1&type=MX
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=webhook-test.scaleway-terraform.com&domain=&order_by=domain_asc
method: GET
response:
proto: HTTP/2.0
@@ -717,20 +666,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 149
+ content_length: 365
uncompressed: false
- body: '{"records":[{"comment":null,"data":"0 .","id":"dc97c415-02a8-432a-b7fa-50b0c64af0e9","name":"","priority":0,"ttl":3600,"type":"MX"}],"total_count":1}'
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"webhook-test","updated_at":"2024-09-20T13:01:00Z"}],"total_count":1}'
headers:
Content-Length:
- - "149"
+ - "365"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
+ - Fri, 20 Sep 2024 13:01:00 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -738,146 +687,109 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7c1b29c5-bd29-4dd5-8c69-9afbd89211e4
+ - 15337cca-3c2e-4e53-aab9-02264d1b8a5c
status: 200 OK
code: 200
- duration: 70.498264ms
- - id: 15
+ duration: 67.31495ms
+ - id: 14
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 79
transfer_encoding: []
trailer: {}
- host: api.scaleway.com
+ host: sns.mnq.fr-par.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=dc97c415-02a8-432a-b7fa-50b0c64af0e9&name=&order_by=name_asc&page=1&type=unknown
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 149
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"0 .","id":"dc97c415-02a8-432a-b7fa-50b0c64af0e9","name":"","priority":0,"ttl":3600,"type":"MX"}],"total_count":1}'
+ body: Action=CreateTopic&Attributes=&Name=test-mnq-sns-topic-basic&Version=2010-03-31
+ form:
+ Action:
+ - CreateTopic
+ Attributes:
+ - ""
+ Name:
+ - test-mnq-sns-topic-basic
+ Version:
+ - "2010-03-31"
headers:
Content-Length:
- - "149"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
+ - "79"
Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 93755c78-aef5-4ee4-8247-4489353884fe
- status: 200 OK
- code: 200
- duration: 60.52029ms
- - id: 16
- request:
+ - application/x-www-form-urlencoded; charset=utf-8
+ User-Agent:
+ - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64)
+ X-Amz-Date:
+ - 20240920T130100Z
+ url: https://sns.mnq.fr-par.scaleway.com/
+ method: POST
+ response:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/3a51401f-d593-4e81-9c5b-422e5f17eee3
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1012
+ content_length: 378
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:59:24.051438Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: |
+
+
+ arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic
+
+
+ txcec9675d-eccd-45c4-a855-94bede0a4c26
+
+
headers:
Content-Length:
- - "1012"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
+ - "378"
Content-Type:
- - application/json
+ - text/xml; charset=UTF-8
Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3fa5d6a8-2866-446d-9e3f-d08fcebd7dec
+ - Fri, 20 Sep 2024 13:01:01 GMT
status: 200 OK
code: 200
- duration: 79.060671ms
- - id: 17
+ duration: 759.876174ms
+ - id: 15
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 141
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"webhook-test.scaleway-terraform.com","accept_tos":true,"autoconfig":true}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
- method: GET
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 342
+ content_length: 1209
uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"","updated_at":"2024-08-30T04:59:23Z"}],"total_count":1}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:01.304822Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:01.332349954Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "342"
+ - "1209"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
+ - Fri, 20 Sep 2024 13:01:01 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -885,11 +797,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b561b210-4156-4de8-b085-28b666ad5b23
+ - b3c6be25-caf3-43e3-aa11-1bb84e3babcb
status: 200 OK
code: 200
- duration: 55.836685ms
- - id: 18
+ duration: 516.212447ms
+ - id: 16
request:
proto: HTTP/1.1
proto_major: 1
@@ -905,7 +817,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/3a51401f-d593-4e81-9c5b-422e5f17eee3
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a
method: GET
response:
proto: HTTP/2.0
@@ -913,20 +825,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1012
+ content_length: 1209
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:59:24.051438Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:01.304822Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:01.350553918Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1012"
+ - "1209"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
+ - Fri, 20 Sep 2024 13:01:01 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -934,377 +846,94 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 93e6d209-26f0-4b40-9d6d-d7d8f3d63efc
+ - 979669f9-d0b6-45c6-b3a3-4e95de828a56
status: 200 OK
code: 200
- duration: 53.661236ms
- - id: 19
+ duration: 18.085389ms
+ - id: 17
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 2
+ content_length: 152
transfer_encoding: []
trailer: {}
- host: api.scaleway.com
+ host: sns.mnq.fr-par.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{}'
- form: {}
+ body: Action=GetTopicAttributes&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31
+ form:
+ Action:
+ - GetTopicAttributes
+ TopicArn:
+ - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic
+ Version:
+ - "2010-03-31"
headers:
+ Content-Length:
+ - "152"
Content-Type:
- - application/json
+ - application/x-www-form-urlencoded; charset=utf-8
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/3a51401f-d593-4e81-9c5b-422e5f17eee3/check
+ - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64)
+ X-Amz-Date:
+ - 20240920T130101Z
+ url: https://sns.mnq.fr-par.scaleway.com/
method: POST
response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
transfer_encoding: []
trailer: {}
- content_length: 1040
+ content_length: 1046
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:59:24.051438Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:59:24.331152634Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: |
+
+
+
+
+ Owner
+ project-105bdce1-64c0-48ab-899d-868455867ecf
+
+
+ SubscriptionsConfirmed
+ 0
+
+
+ SubscriptionsDeleted
+ 0
+
+
+ SubscriptionsPending
+ 0
+
+
+ TopicArn
+ arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic
+
+
+
+
+ tx98a8d803-7417-493b-bcf0-b75631b63ad5
+
+
headers:
Content-Length:
- - "1040"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
+ - "1046"
Content-Type:
- - application/json
+ - text/xml; charset=UTF-8
Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0e1aa090-8a74-4d2f-bc68-69d31eaa1ad3
+ - Fri, 20 Sep 2024 13:01:01 GMT
status: 200 OK
code: 200
- duration: 40.45418ms
- - id: 20
+ duration: 36.859488ms
+ - id: 18
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 220
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"changes":[{"add":{"records":[{"data":"v=spf1 include:_spf.tem.scaleway.com -all","name":"","priority":0,"ttl":3600,"type":"TXT","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records
- method: PATCH
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 176
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=spf1 include:_spf.tem.scaleway.com -all\"","id":"8aa63a38-8b59-438f-b5cc-2fee144710d1","name":"","priority":0,"ttl":3600,"type":"TXT"}]}'
- headers:
- Content-Length:
- - "176"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 671fb0e0-230d-404e-9845-945526b02f5b
- status: 200 OK
- code: 200
- duration: 127.478277ms
- - id: 21
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?name=&order_by=name_asc&type=TXT
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 192
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=spf1 include:_spf.tem.scaleway.com -all\"","id":"8aa63a38-8b59-438f-b5cc-2fee144710d1","name":"","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
- headers:
- Content-Length:
- - "192"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ba41fbef-174c-47c8-8e40-218c0d95fb71
- status: 200 OK
- code: 200
- duration: 71.289128ms
- - id: 22
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 646
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"changes":[{"add":{"records":[{"data":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","name":"105bdce1-64c0-48ab-899d-868455867ecf._domainkey","priority":0,"ttl":3600,"type":"TXT","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records
- method: PATCH
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 602
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB\"","id":"42c9ac40-7001-4097-a309-4be0e0d4cd19","name":"105bdce1-64c0-48ab-899d-868455867ecf._domainkey","priority":0,"ttl":3600,"type":"TXT"}]}'
- headers:
- Content-Length:
- - "602"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - af358bbb-50cb-45ef-b291-564238b5d001
- status: 200 OK
- code: 200
- duration: 207.336769ms
- - id: 23
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 79
- transfer_encoding: []
- trailer: {}
- host: sns.mnq.fr-par.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: Action=CreateTopic&Attributes=&Name=test-mnq-sns-topic-basic&Version=2010-03-31
- form:
- Action:
- - CreateTopic
- Attributes:
- - ""
- Name:
- - test-mnq-sns-topic-basic
- Version:
- - "2010-03-31"
- headers:
- Content-Length:
- - "79"
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- User-Agent:
- - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64)
- X-Amz-Date:
- - 20240830T045924Z
- url: https://sns.mnq.fr-par.scaleway.com/
- method: POST
- response:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- transfer_encoding: []
- trailer: {}
- content_length: 378
- uncompressed: false
- body: |
-
-
- arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic
-
-
- tx2a3a53fc-ff09-4b45-91a5-f871405221e6
-
-
- headers:
- Content-Length:
- - "378"
- Content-Type:
- - text/xml; charset=UTF-8
- Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
- status: 200 OK
- code: 200
- duration: 427.772438ms
- - id: 24
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?name=&order_by=name_asc&page=1&type=TXT
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 781
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=spf1 include:_spf.tem.scaleway.com -all\"","id":"8aa63a38-8b59-438f-b5cc-2fee144710d1","name":"","priority":0,"ttl":3600,"type":"TXT"},{"comment":null,"data":"\"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB\"","id":"42c9ac40-7001-4097-a309-4be0e0d4cd19","name":"105bdce1-64c0-48ab-899d-868455867ecf._domainkey","priority":0,"ttl":3600,"type":"TXT"}],"total_count":2}'
- headers:
- Content-Length:
- - "781"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d605915d-237a-4b86-9c41-637ffae98480
- status: 200 OK
- code: 200
- duration: 59.152819ms
- - id: 25
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 201
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"changes":[{"add":{"records":[{"data":"v=DMARC1; p=none","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records
- method: PATCH
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 157
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DMARC1; p=none\"","id":"d440a184-0099-4442-a094-b89d7b346009","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}]}'
- headers:
- Content-Length:
- - "157"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 82589cbc-ead1-4e09-a03a-a2d104ca32e4
- status: 200 OK
- code: 200
- duration: 276.822957ms
- - id: 26
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
@@ -1315,1057 +944,28 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?name=105bdce1-64c0-48ab-899d-868455867ecf._domainkey&order_by=name_asc&type=TXT
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 618
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB\"","id":"42c9ac40-7001-4097-a309-4be0e0d4cd19","name":"105bdce1-64c0-48ab-899d-868455867ecf._domainkey","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
- headers:
- Content-Length:
- - "618"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0eb519b0-7340-4631-9f1d-de9da5fb5381
- status: 200 OK
- code: 200
- duration: 77.826603ms
- - id: 27
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 152
- transfer_encoding: []
- trailer: {}
- host: sns.mnq.fr-par.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: Action=GetTopicAttributes&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31
- form:
- Action:
- - GetTopicAttributes
- TopicArn:
- - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic
- Version:
- - "2010-03-31"
- headers:
- Content-Length:
- - "152"
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- User-Agent:
- - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64)
- X-Amz-Date:
- - 20240830T045924Z
- url: https://sns.mnq.fr-par.scaleway.com/
- method: POST
- response:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- transfer_encoding: []
- trailer: {}
- content_length: 1046
- uncompressed: false
- body: |
-
-
-
-
- Owner
- project-105bdce1-64c0-48ab-899d-868455867ecf
-
-
- SubscriptionsConfirmed
- 0
-
-
- SubscriptionsDeleted
- 0
-
-
- SubscriptionsPending
- 0
-
-
- TopicArn
- arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic
-
-
-
-
- txbf928de1-2fb3-4d88-ae00-3790bd3c181f
-
-
- headers:
- Content-Length:
- - "1046"
- Content-Type:
- - text/xml; charset=UTF-8
- Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
- status: 200 OK
- code: 200
- duration: 42.625006ms
- - id: 28
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=8aa63a38-8b59-438f-b5cc-2fee144710d1&name=&order_by=name_asc&page=1&type=unknown
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 192
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=spf1 include:_spf.tem.scaleway.com -all\"","id":"8aa63a38-8b59-438f-b5cc-2fee144710d1","name":"","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
- headers:
- Content-Length:
- - "192"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - bd13faf6-41ac-477f-a88d-96a565803ba4
- status: 200 OK
- code: 200
- duration: 61.910776ms
- - id: 29
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?name=_dmarc&order_by=name_asc&type=TXT
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 173
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DMARC1; p=none\"","id":"d440a184-0099-4442-a094-b89d7b346009","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
- headers:
- Content-Length:
- - "173"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - cab7756d-59fe-4b04-9d0b-4db54bdc9f81
- status: 200 OK
- code: 200
- duration: 65.426955ms
- - id: 30
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?name=105bdce1-64c0-48ab-899d-868455867ecf._domainkey&order_by=name_asc&page=1&type=TXT
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 618
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB\"","id":"42c9ac40-7001-4097-a309-4be0e0d4cd19","name":"105bdce1-64c0-48ab-899d-868455867ecf._domainkey","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
- headers:
- Content-Length:
- - "618"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 688f541f-b935-482a-99be-485ad0cd4fa2
- status: 200 OK
- code: 200
- duration: 65.862827ms
- - id: 31
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 342
- uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"","updated_at":"2024-08-30T04:59:24Z"}],"total_count":1}'
- headers:
- Content-Length:
- - "342"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 76ec68e9-ad43-450b-ac9e-8e3dfbb35eed
- status: 200 OK
- code: 200
- duration: 58.152674ms
- - id: 32
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?name=_dmarc&order_by=name_asc&page=1&type=TXT
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 173
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DMARC1; p=none\"","id":"d440a184-0099-4442-a094-b89d7b346009","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
- headers:
- Content-Length:
- - "173"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - eee9053a-4a2f-4e2d-9bb4-ff3cf820c90a
- status: 200 OK
- code: 200
- duration: 67.640968ms
- - id: 33
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=42c9ac40-7001-4097-a309-4be0e0d4cd19&name=&order_by=name_asc&page=1&type=unknown
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 618
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB\"","id":"42c9ac40-7001-4097-a309-4be0e0d4cd19","name":"105bdce1-64c0-48ab-899d-868455867ecf._domainkey","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
- headers:
- Content-Length:
- - "618"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 84b7b713-4898-4ef8-8ff1-e2218a47352d
- status: 200 OK
- code: 200
- duration: 56.938878ms
- - id: 34
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 342
- uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"","updated_at":"2024-08-30T04:59:24Z"}],"total_count":1}'
- headers:
- Content-Length:
- - "342"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 8714d003-ef94-41f3-a21d-d896a8c54583
- status: 200 OK
- code: 200
- duration: 80.0696ms
- - id: 35
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=d440a184-0099-4442-a094-b89d7b346009&name=&order_by=name_asc&page=1&type=unknown
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 173
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DMARC1; p=none\"","id":"d440a184-0099-4442-a094-b89d7b346009","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
- headers:
- Content-Length:
- - "173"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ade1b16d-7fac-443f-bfdd-a150dd889d23
- status: 200 OK
- code: 200
- duration: 86.009402ms
- - id: 36
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 342
- uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"","updated_at":"2024-08-30T04:59:24Z"}],"total_count":1}'
- headers:
- Content-Length:
- - "342"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 7bb1d9ba-89cf-4328-864d-521b430a0b9b
- status: 200 OK
- code: 200
- duration: 62.818705ms
- - id: 37
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/3a51401f-d593-4e81-9c5b-422e5f17eee3/check
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1040
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:59:24.051438Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:59:24.872992650Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1040"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:24 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3d2fdb40-f54a-46c0-81b9-5ecd7d3436f2
- status: 200 OK
- code: 200
- duration: 41.40933ms
- - id: 38
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/3a51401f-d593-4e81-9c5b-422e5f17eee3/check
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1040
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:59:24.051438Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:59:25.933215365Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1040"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:25 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ad5bb753-899b-4491-851e-276898655a45
- status: 200 OK
- code: 200
- duration: 56.5267ms
- - id: 39
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/3a51401f-d593-4e81-9c5b-422e5f17eee3/check
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1040
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:59:24.051438Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:59:27.992465551Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1040"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:28 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e43bb5b4-4999-4ab0-8a58-c4f5d73af35d
- status: 200 OK
- code: 200
- duration: 58.130849ms
- - id: 40
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/3a51401f-d593-4e81-9c5b-422e5f17eee3/check
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1040
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:59:24.051438Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:59:32.065529340Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1040"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:32 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 99f4249e-9f41-4a46-b155-684a07b504ee
- status: 200 OK
- code: 200
- duration: 73.804567ms
- - id: 41
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/3a51401f-d593-4e81-9c5b-422e5f17eee3/check
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1306
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:59:24.051438Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","last_error":"no SPF record found\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.scaleway-terraform.com\": nxdomain\nno MX record found\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-08-30T05:00:32.239053Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1306"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:40 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 26709051-9754-4358-b6b9-d3fb82c1f5d3
- status: 200 OK
- code: 200
- duration: 136.668805ms
- - id: 42
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/3a51401f-d593-4e81-9c5b-422e5f17eee3/check
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1306
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:59:24.051438Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","last_error":"no SPF record found\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.scaleway-terraform.com\": nxdomain\nno MX record found\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-08-30T05:00:32.239053Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1306"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:59:50 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - cc862d69-88e7-4d1a-b661-9644c3b14c6f
- status: 200 OK
- code: 200
- duration: 73.874902ms
- - id: 43
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/3a51401f-d593-4e81-9c5b-422e5f17eee3/check
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1306
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:59:24.051438Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","last_error":"no SPF record found\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.scaleway-terraform.com\": nxdomain\nno MX record found\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-08-30T05:00:32.239053Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1306"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 05:00:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - cce3fa12-3837-4112-9077-9d002f2c41f0
- status: 200 OK
- code: 200
- duration: 58.918675ms
- - id: 44
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/3a51401f-d593-4e81-9c5b-422e5f17eee3/check
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1306
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:59:24.051438Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","last_error":"no SPF record found\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.scaleway-terraform.com\": nxdomain\nno MX record found\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-08-30T05:00:32.239053Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1306"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 05:00:10 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 8d2a049f-3042-42de-9f68-4279e5b56cab
- status: 200 OK
- code: 200
- duration: 68.750293ms
- - id: 45
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/3a51401f-d593-4e81-9c5b-422e5f17eee3/check
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1306
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:59:24.051438Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","last_error":"no SPF record found\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.scaleway-terraform.com\": nxdomain\nno MX record found\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-08-30T05:00:32.239053Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1306"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 05:00:20 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - edad1cea-f1ed-44ea-bca0-6de75ef400ae
- status: 200 OK
- code: 200
- duration: 70.552494ms
- - id: 46
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/3a51401f-d593-4e81-9c5b-422e5f17eee3/check
- method: POST
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1306
+ content_length: 1209
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:59:24.051438Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","last_error":"no SPF record found\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.scaleway-terraform.com\": nxdomain\nno MX record found\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-08-30T05:00:32.239053Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:01.304822Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:01.417227443Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1306"
+ - "1209"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:30 GMT
+ - Fri, 20 Sep 2024 13:01:01 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2373,11 +973,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f1ab19c3-0de4-41e1-9ae2-4dd11c7d72a0
+ - ca6cfbc0-0cb6-4e08-947b-78b412fa0ef1
status: 200 OK
code: 200
- duration: 81.820037ms
- - id: 47
+ duration: 26.788905ms
+ - id: 19
request:
proto: HTTP/1.1
proto_major: 1
@@ -2395,7 +995,7 @@ interactions:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/3a51401f-d593-4e81-9c5b-422e5f17eee3/check
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a/check
method: POST
response:
proto: HTTP/2.0
@@ -2403,20 +1003,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1309
+ content_length: 1086
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:59:24.051438Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","last_error":"no SPF record found\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.scaleway-terraform.com\": nxdomain\nno MX record found\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-08-30T05:00:40.638573463Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:01.452471079Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1309"
+ - "1086"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:40 GMT
+ - Fri, 20 Sep 2024 13:01:01 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2424,29 +1024,29 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a5cddb46-52cb-412a-b115-60265e4d3d8e
+ - 280eef8d-f291-4050-8162-71ac518c5042
status: 200 OK
code: 200
- duration: 72.234447ms
- - id: 48
+ duration: 48.424321ms
+ - id: 20
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 2
+ content_length: 287
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{}'
+ body: '{"domain_id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"terraform-webhook-test","event_types":["email_delivered","email_dropped"],"sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic"}'
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/3a51401f-d593-4e81-9c5b-422e5f17eee3/check
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks
method: POST
response:
proto: HTTP/2.0
@@ -2454,20 +1054,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1060
+ content_length: 483
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:59:24.051438Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","last_error":null,"last_valid_at":"2024-08-30T05:00:42.238958Z","name":"scaleway-terraform.com","next_check_at":"2024-08-30T05:01:42.238958Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"created_at":"2024-09-20T13:01:01.460826Z","domain_id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","event_types":["email_delivered","email_dropped"],"id":"57bc0f16-88fb-466a-85ac-67cb46768a63","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:01:01.460826Z"}'
headers:
Content-Length:
- - "1060"
+ - "483"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:50 GMT
+ - Fri, 20 Sep 2024 13:01:01 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2475,11 +1075,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5a33ccac-d4dc-42a3-9d7b-3d6f6d8564e7
+ - d156cb71-0c76-4913-b7d9-1940031a99f3
status: 200 OK
code: 200
- duration: 68.241969ms
- - id: 49
+ duration: 105.73104ms
+ - id: 21
request:
proto: HTTP/1.1
proto_major: 1
@@ -2495,7 +1095,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/3a51401f-d593-4e81-9c5b-422e5f17eee3
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/57bc0f16-88fb-466a-85ac-67cb46768a63
method: GET
response:
proto: HTTP/2.0
@@ -2503,20 +1103,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1180
+ content_length: 483
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:59:24.051438Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","last_error":null,"last_valid_at":"2024-08-30T05:00:42.238958Z","name":"scaleway-terraform.com","next_check_at":"2024-08-30T05:01:42.238958Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-08-30T05:00:43.805465Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"created_at":"2024-09-20T13:01:01.460826Z","domain_id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","event_types":["email_delivered","email_dropped"],"id":"57bc0f16-88fb-466a-85ac-67cb46768a63","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:01:01.460826Z"}'
headers:
Content-Length:
- - "1180"
+ - "483"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:50 GMT
+ - Fri, 20 Sep 2024 13:01:01 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2524,29 +1124,29 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a9ef80c2-55da-44ad-b10f-cc9fe8599423
+ - d6ef8c40-cb4c-4df1-a87b-cfb205b395f1
status: 200 OK
code: 200
- duration: 40.781508ms
- - id: 50
+ duration: 52.685243ms
+ - id: 22
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 287
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"domain_id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"terraform-webhook-test","event_types":["email_delivered","email_dropped"],"sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic"}'
+ body: '{}'
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a/check
method: POST
response:
proto: HTTP/2.0
@@ -2554,20 +1154,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 474
+ content_length: 1086
uncompressed: false
- body: '{"created_at":"2024-08-30T05:00:50.858036Z","domain_id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","event_types":["email_delivered","email_dropped"],"id":"e49c1730-deb4-4ef7-b5bf-eebc324a8bb1","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-08-30T05:00:50.858036Z"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:01.994119055Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "474"
+ - "1086"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:51 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2575,48 +1175,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3ddaa263-f9f3-4ef7-9b9c-b17cecf8cef4
+ - d5c24afc-efdb-4968-be3a-e188db681e9b
status: 200 OK
code: 200
- duration: 598.267015ms
- - id: 51
+ duration: 48.089054ms
+ - id: 23
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/e49c1730-deb4-4ef7-b5bf-eebc324a8bb1
- method: GET
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a/check
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 474
+ content_length: 1086
uncompressed: false
- body: '{"created_at":"2024-08-30T05:00:50.858036Z","domain_id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","event_types":["email_delivered","email_dropped"],"id":"e49c1730-deb4-4ef7-b5bf-eebc324a8bb1","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-08-30T05:00:50.858036Z"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:03.097694890Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "474"
+ - "1086"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:51 GMT
+ - Fri, 20 Sep 2024 13:01:03 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2624,48 +1226,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 80c07363-9581-4d3d-908e-e6aa32f04f00
+ - a41a5af3-73e3-4d12-a0fb-4eda36c5c433
status: 200 OK
code: 200
- duration: 60.378236ms
- - id: 52
+ duration: 98.94639ms
+ - id: 24
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/e49c1730-deb4-4ef7-b5bf-eebc324a8bb1
- method: GET
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a/check
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 474
+ content_length: 1086
uncompressed: false
- body: '{"created_at":"2024-08-30T05:00:50.858036Z","domain_id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","event_types":["email_delivered","email_dropped"],"id":"e49c1730-deb4-4ef7-b5bf-eebc324a8bb1","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-08-30T05:00:50.858036Z"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:05.147415023Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "474"
+ - "1086"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:51 GMT
+ - Fri, 20 Sep 2024 13:01:05 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2673,48 +1277,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4e4a30f1-b526-4531-8a52-d7f4d62d92c9
+ - 9cc33afe-ee37-4e10-9953-fcec5167359e
status: 200 OK
code: 200
- duration: 69.167843ms
- - id: 53
+ duration: 40.634823ms
+ - id: 25
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a/check
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 253
+ content_length: 1086
uncompressed: false
- body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:09.236836946Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "253"
+ - "1086"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:52 GMT
+ - Fri, 20 Sep 2024 13:01:09 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2722,48 +1328,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 26b64669-72e9-4d2d-b87e-c7f7b8d02be8
+ - 4adba47c-6141-4c8b-b57d-bf3e6b314f1a
status: 200 OK
code: 200
- duration: 692.455657ms
- - id: 54
+ duration: 98.954986ms
+ - id: 26
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a/check
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 222
+ content_length: 1086
uncompressed: false
- body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:17.347632142Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "222"
+ - "1086"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:52 GMT
+ - Fri, 20 Sep 2024 13:01:17 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2771,48 +1379,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8d745a59-9004-4aa4-83d4-2c4d2418fbbb
+ - 222d7c8e-93a4-429d-a58c-3be41030afcd
status: 200 OK
code: 200
- duration: 54.812994ms
- - id: 55
+ duration: 106.126643ms
+ - id: 27
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a/check
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 1086
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:27.429197982Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "233"
+ - "1086"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:52 GMT
+ - Fri, 20 Sep 2024 13:01:27 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2820,48 +1430,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e55f1d16-90fd-4bb8-8fae-28b1beb3acee
+ - b2c9f3fb-4572-42dd-87fb-1c94408a13b7
status: 200 OK
code: 200
- duration: 51.972791ms
- - id: 56
+ duration: 80.530157ms
+ - id: 28
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a/check
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 1086
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":null,"name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:37.512972821Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "233"
+ - "1086"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:52 GMT
+ - Fri, 20 Sep 2024 13:01:37 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2869,48 +1481,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - eb1d44a8-f16e-45e7-9fa7-23bf6bd33115
+ - 6e256706-4429-4461-aa94-a508311c9d3b
status: 200 OK
code: 200
- duration: 47.362424ms
- - id: 57
+ duration: 76.074433ms
+ - id: 29
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=dc97c415-02a8-432a-b7fa-50b0c64af0e9&name=&order_by=name_asc&page=1&type=MX
- method: GET
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a/check
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 149
+ content_length: 1106
uncompressed: false
- body: '{"records":[{"comment":null,"data":"0 .","id":"dc97c415-02a8-432a-b7fa-50b0c64af0e9","name":"","priority":0,"ttl":3600,"type":"MX"}],"total_count":1}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":"2024-09-20T13:01:42.455990Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:42.455990Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
headers:
Content-Length:
- - "149"
+ - "1106"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:53 GMT
+ - Fri, 20 Sep 2024 13:01:47 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2918,11 +1532,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 2b35efab-f631-4ea9-9e8d-44a93e7db519
+ - 73d81eab-f8e7-496c-9ebb-f78abbd2d56f
status: 200 OK
code: 200
- duration: 53.419031ms
- - id: 58
+ duration: 79.385928ms
+ - id: 30
request:
proto: HTTP/1.1
proto_major: 1
@@ -2938,7 +1552,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/3a51401f-d593-4e81-9c5b-422e5f17eee3
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a
method: GET
response:
proto: HTTP/2.0
@@ -2946,20 +1560,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1180
+ content_length: 1232
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:59:24.051438Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","last_error":null,"last_valid_at":"2024-08-30T05:00:42.238958Z","name":"scaleway-terraform.com","next_check_at":"2024-08-30T05:01:42.238958Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-08-30T05:00:43.805465Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":"2024-09-20T13:01:42.455990Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:42.455990Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:47.828715249Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
headers:
Content-Length:
- - "1180"
+ - "1232"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:53 GMT
+ - Fri, 20 Sep 2024 13:01:47 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -2967,11 +1581,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4cb48517-74ab-443f-adb4-e9378a1f0d38
+ - 5f8adb94-94ba-4abf-a540-27becd220c3b
status: 200 OK
code: 200
- duration: 60.37932ms
- - id: 59
+ duration: 212.083711ms
+ - id: 31
request:
proto: HTTP/1.1
proto_major: 1
@@ -2987,7 +1601,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/57bc0f16-88fb-466a-85ac-67cb46768a63
method: GET
response:
proto: HTTP/2.0
@@ -2995,20 +1609,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 341
+ content_length: 483
uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"","updated_at":"2024-08-30T04:59:35Z"}],"total_count":1}'
+ body: '{"created_at":"2024-09-20T13:01:01.460826Z","domain_id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","event_types":["email_delivered","email_dropped"],"id":"57bc0f16-88fb-466a-85ac-67cb46768a63","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:01:01.460826Z"}'
headers:
Content-Length:
- - "341"
+ - "483"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:53 GMT
+ - Fri, 20 Sep 2024 13:01:48 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3016,11 +1630,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 24b9bd3d-1598-4f99-bcdd-25010388d60d
+ - c11697fa-b881-4ee6-a1ff-a6cf1caa22a1
status: 200 OK
code: 200
- duration: 54.9246ms
- - id: 60
+ duration: 62.413032ms
+ - id: 32
request:
proto: HTTP/1.1
proto_major: 1
@@ -3036,7 +1650,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/3a51401f-d593-4e81-9c5b-422e5f17eee3
+ url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
proto: HTTP/2.0
@@ -3044,20 +1658,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1180
+ content_length: 259
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:59:24.051438Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","last_error":null,"last_valid_at":"2024-08-30T05:00:42.238958Z","name":"scaleway-terraform.com","next_check_at":"2024-08-30T05:01:42.238958Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-08-30T05:00:43.805465Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
headers:
Content-Length:
- - "1180"
+ - "259"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:53 GMT
+ - Fri, 20 Sep 2024 13:01:48 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3065,11 +1679,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 6e4a242b-ec63-4d1b-82f0-85d191fadfd3
+ - 5d83f002-e77f-4242-87a4-1f6092839c51
status: 200 OK
code: 200
- duration: 55.123459ms
- - id: 61
+ duration: 747.836798ms
+ - id: 33
request:
proto: HTTP/1.1
proto_major: 1
@@ -3085,7 +1699,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=d440a184-0099-4442-a094-b89d7b346009&name=_dmarc&order_by=name_asc&page=1&type=TXT
+ url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
proto: HTTP/2.0
@@ -3093,20 +1707,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 173
+ content_length: 227
uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DMARC1; p=none\"","id":"d440a184-0099-4442-a094-b89d7b346009","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
+ body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
headers:
Content-Length:
- - "173"
+ - "227"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:53 GMT
+ - Fri, 20 Sep 2024 13:01:49 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3114,11 +1728,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b2d2f98c-42dc-4312-a35a-cafda8890e8b
+ - 828881d2-a431-409f-bdf2-86dfb58a7850
status: 200 OK
code: 200
- duration: 71.536089ms
- - id: 62
+ duration: 99.393805ms
+ - id: 34
request:
proto: HTTP/1.1
proto_major: 1
@@ -3134,7 +1748,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=42c9ac40-7001-4097-a309-4be0e0d4cd19&name=105bdce1-64c0-48ab-899d-868455867ecf._domainkey&order_by=name_asc&page=1&type=TXT
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
proto: HTTP/2.0
@@ -3142,20 +1756,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 618
+ content_length: 238
uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB\"","id":"42c9ac40-7001-4097-a309-4be0e0d4cd19","name":"105bdce1-64c0-48ab-899d-868455867ecf._domainkey","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
headers:
Content-Length:
- - "618"
+ - "238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:53 GMT
+ - Fri, 20 Sep 2024 13:01:49 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3163,11 +1777,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a445ae11-30ad-4bea-9d9b-451679fac663
+ - acd7b5e5-02a6-4640-b205-91dc4d21e63b
status: 200 OK
code: 200
- duration: 71.570103ms
- - id: 63
+ duration: 52.299121ms
+ - id: 35
request:
proto: HTTP/1.1
proto_major: 1
@@ -3183,7 +1797,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=8aa63a38-8b59-438f-b5cc-2fee144710d1&name=&order_by=name_asc&page=1&type=TXT
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
proto: HTTP/2.0
@@ -3191,20 +1805,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 192
+ content_length: 238
uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=spf1 include:_spf.tem.scaleway.com -all\"","id":"8aa63a38-8b59-438f-b5cc-2fee144710d1","name":"","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
headers:
Content-Length:
- - "192"
+ - "238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:53 GMT
+ - Fri, 20 Sep 2024 13:01:49 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3212,11 +1826,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f92ef203-e912-468e-8179-13dbbd180381
+ - 53caf6b0-5f7d-480c-ade7-2c2ba5121a11
status: 200 OK
code: 200
- duration: 72.303076ms
- - id: 64
+ duration: 58.533889ms
+ - id: 36
request:
proto: HTTP/1.1
proto_major: 1
@@ -3232,7 +1846,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=webhook-test.scaleway-terraform.com&domain=&order_by=domain_asc&project_id=105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
proto: HTTP/2.0
@@ -3240,20 +1854,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 341
+ content_length: 365
uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"","updated_at":"2024-08-30T04:59:35Z"}],"total_count":1}'
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"webhook-test","updated_at":"2024-09-20T13:01:39Z"}],"total_count":1}'
headers:
Content-Length:
- - "341"
+ - "365"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:53 GMT
+ - Fri, 20 Sep 2024 13:01:49 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3261,11 +1875,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 127d1efa-3f57-4f6a-89d4-61fa47dbd68f
+ - d15bad73-cf4f-46f5-9ac2-50456100fa0e
status: 200 OK
code: 200
- duration: 60.555104ms
- - id: 65
+ duration: 83.017454ms
+ - id: 37
request:
proto: HTTP/1.1
proto_major: 1
@@ -3281,7 +1895,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a
method: GET
response:
proto: HTTP/2.0
@@ -3289,20 +1903,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 341
+ content_length: 1232
uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"","updated_at":"2024-08-30T04:59:35Z"}],"total_count":1}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":"2024-09-20T13:01:42.455990Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:42.455990Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:49.792517838Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
headers:
Content-Length:
- - "341"
+ - "1232"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:53 GMT
+ - Fri, 20 Sep 2024 13:01:49 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3310,11 +1924,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c6407597-2424-4eda-8717-a8fa4e4d7991
+ - f4a153cc-70f5-406e-86ba-744809292e2a
status: 200 OK
code: 200
- duration: 64.126035ms
- - id: 66
+ duration: 239.911363ms
+ - id: 38
request:
proto: HTTP/1.1
proto_major: 1
@@ -3330,7 +1944,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a
method: GET
response:
proto: HTTP/2.0
@@ -3338,20 +1952,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 341
+ content_length: 1232
uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"","updated_at":"2024-08-30T04:59:35Z"}],"total_count":1}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":"2024-09-20T13:01:42.455990Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:42.455990Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:49.829882004Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
headers:
Content-Length:
- - "341"
+ - "1232"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:53 GMT
+ - Fri, 20 Sep 2024 13:01:49 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3359,11 +1973,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 97d0c0a0-1ef1-459c-8abc-bd42931839b5
+ - 7739bb8c-cadb-4423-bf46-bfe64662ee87
status: 200 OK
code: 200
- duration: 63.465308ms
- - id: 67
+ duration: 70.57974ms
+ - id: 39
request:
proto: HTTP/1.1
proto_major: 1
@@ -3387,20 +2001,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 253
+ content_length: 259
uncompressed: false
body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
headers:
Content-Length:
- - "253"
+ - "259"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:53 GMT
+ - Fri, 20 Sep 2024 13:01:50 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3408,11 +2022,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 0555562f-31f7-4db7-8821-0aed4ddd60ab
+ - 869b08ca-d09e-4cf8-9af7-e43f5d69708e
status: 200 OK
code: 200
- duration: 698.769179ms
- - id: 68
+ duration: 792.050246ms
+ - id: 40
request:
proto: HTTP/1.1
proto_major: 1
@@ -3436,20 +2050,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 222
+ content_length: 227
uncompressed: false
body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
headers:
Content-Length:
- - "222"
+ - "227"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:53 GMT
+ - Fri, 20 Sep 2024 13:01:50 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3457,11 +2071,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e42bfb29-f54d-487e-87d8-f204a7411db3
+ - cda9f8ce-d262-4ff9-a538-aabb984bbe27
status: 200 OK
code: 200
- duration: 67.629275ms
- - id: 69
+ duration: 112.738067ms
+ - id: 41
request:
proto: HTTP/1.1
proto_major: 1
@@ -3485,20 +2099,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 238
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
headers:
Content-Length:
- - "233"
+ - "238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:53 GMT
+ - Fri, 20 Sep 2024 13:01:50 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3506,11 +2120,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 878b7a3e-2605-41d1-aad3-e202949a1fca
+ - 616b926e-bffd-4674-972e-09d0c2d674f1
status: 200 OK
code: 200
- duration: 53.159751ms
- - id: 70
+ duration: 66.919933ms
+ - id: 42
request:
proto: HTTP/1.1
proto_major: 1
@@ -3534,20 +2148,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 238
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
headers:
Content-Length:
- - "233"
+ - "238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:53 GMT
+ - Fri, 20 Sep 2024 13:01:50 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3555,11 +2169,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 49923bd3-9e50-4ffc-bfb3-77d1b317a0ec
+ - 90d10c04-985b-4be0-8e8a-5651fe3f9738
status: 200 OK
code: 200
- duration: 48.31181ms
- - id: 71
+ duration: 63.809983ms
+ - id: 43
request:
proto: HTTP/1.1
proto_major: 1
@@ -3575,7 +2189,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/8058cd5b-887d-406f-855e-36d9d9209cf6
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/19d4a109-c812-4f9a-9d49-55ce89f05d5d
method: GET
response:
proto: HTTP/2.0
@@ -3583,20 +2197,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 405
+ content_length: 413
uncompressed: false
- body: '{"access_key":"IjzRRzg9oSZHv7lbBXG8","created_at":"2024-08-30T04:59:23.938804Z","id":"8058cd5b-887d-406f-855e-36d9d9209cf6","name":"tf-sns-credentials-gallant-nobel","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"d7bdbb81283be41242515644765a1d0a0611f2fc","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}'
+ body: '{"access_key":"Woi412g4sUn9aJWD0Q1z","created_at":"2024-09-20T13:01:00.315579Z","id":"19d4a109-c812-4f9a-9d49-55ce89f05d5d","name":"tf-sns-credentials-zen-mclean","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"47214efc2e91d8d45617246b460b6d1a7f904032","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}'
headers:
Content-Length:
- - "405"
+ - "413"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:54 GMT
+ - Fri, 20 Sep 2024 13:01:50 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3604,11 +2218,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cbddaf45-a150-4d8a-89de-d78d9b8c21ec
+ - bce3682f-641c-4ce9-b0fe-847c1cdb80db
status: 200 OK
code: 200
- duration: 54.264175ms
- - id: 72
+ duration: 55.729879ms
+ - id: 44
request:
proto: HTTP/1.1
proto_major: 1
@@ -3635,7 +2249,7 @@ interactions:
User-Agent:
- aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64)
X-Amz-Date:
- - 20240830T050053Z
+ - 20240920T130150Z
url: https://sns.mnq.fr-par.scaleway.com/
method: POST
response:
@@ -3673,7 +2287,7 @@ interactions:
- tx1ee81172-2937-4397-b4c2-faf1f4ab1232
+ txf2b14c72-62c3-4462-8166-601e9cf18df0
headers:
@@ -3682,11 +2296,11 @@ interactions:
Content-Type:
- text/xml; charset=UTF-8
Date:
- - Fri, 30 Aug 2024 05:00:54 GMT
+ - Fri, 20 Sep 2024 13:01:50 GMT
status: 200 OK
code: 200
- duration: 32.752796ms
- - id: 73
+ duration: 27.010067ms
+ - id: 45
request:
proto: HTTP/1.1
proto_major: 1
@@ -3702,7 +2316,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/e49c1730-deb4-4ef7-b5bf-eebc324a8bb1
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/57bc0f16-88fb-466a-85ac-67cb46768a63
method: GET
response:
proto: HTTP/2.0
@@ -3710,20 +2324,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 474
+ content_length: 483
uncompressed: false
- body: '{"created_at":"2024-08-30T05:00:50.858036Z","domain_id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","event_types":["email_delivered","email_dropped"],"id":"e49c1730-deb4-4ef7-b5bf-eebc324a8bb1","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-08-30T05:00:50.858036Z"}'
+ body: '{"created_at":"2024-09-20T13:01:01.460826Z","domain_id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","event_types":["email_delivered","email_dropped"],"id":"57bc0f16-88fb-466a-85ac-67cb46768a63","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:01:01.460826Z"}'
headers:
Content-Length:
- - "474"
+ - "483"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:54 GMT
+ - Fri, 20 Sep 2024 13:01:50 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3731,11 +2345,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - fccf19ff-29fa-4f03-9f05-6b839fe49849
+ - 743f1af8-9e67-4634-8615-5ccb0c7faedf
status: 200 OK
code: 200
- duration: 58.172931ms
- - id: 74
+ duration: 79.758394ms
+ - id: 46
request:
proto: HTTP/1.1
proto_major: 1
@@ -3759,20 +2373,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 253
+ content_length: 259
uncompressed: false
body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
headers:
Content-Length:
- - "253"
+ - "259"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:54 GMT
+ - Fri, 20 Sep 2024 13:01:51 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3780,11 +2394,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - be8689b9-31f7-49c0-924d-bbfad3f820dc
+ - 3e0f1cf2-537a-43b9-bd85-cc56b74d53b9
status: 200 OK
code: 200
- duration: 835.005995ms
- - id: 75
+ duration: 717.551689ms
+ - id: 47
request:
proto: HTTP/1.1
proto_major: 1
@@ -3808,20 +2422,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 222
+ content_length: 227
uncompressed: false
body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
headers:
Content-Length:
- - "222"
+ - "227"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:55 GMT
+ - Fri, 20 Sep 2024 13:01:51 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3829,11 +2443,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 55c6e34c-0ae7-46ba-b8ef-e9854fb71f16
+ - 6156e4e2-b114-436e-a47f-8a9b6961934b
status: 200 OK
code: 200
- duration: 56.504877ms
- - id: 76
+ duration: 99.110607ms
+ - id: 48
request:
proto: HTTP/1.1
proto_major: 1
@@ -3857,20 +2471,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 238
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
headers:
Content-Length:
- - "233"
+ - "238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:55 GMT
+ - Fri, 20 Sep 2024 13:01:51 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3878,11 +2492,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b3c14b5b-5727-4104-99ec-ff087c3e74cd
+ - e8f7e2b4-0bfc-4466-862b-5d244c1894eb
status: 200 OK
code: 200
- duration: 53.035846ms
- - id: 77
+ duration: 53.255272ms
+ - id: 49
request:
proto: HTTP/1.1
proto_major: 1
@@ -3906,20 +2520,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 238
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
headers:
Content-Length:
- - "233"
+ - "238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:55 GMT
+ - Fri, 20 Sep 2024 13:01:51 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3927,11 +2541,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e6adc41b-c333-4203-ab62-bb8bfa9aa09b
+ - 5c914711-b0f7-40b0-8c36-788dfe500f05
status: 200 OK
code: 200
- duration: 41.404485ms
- - id: 78
+ duration: 57.560947ms
+ - id: 50
request:
proto: HTTP/1.1
proto_major: 1
@@ -3947,7 +2561,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/e49c1730-deb4-4ef7-b5bf-eebc324a8bb1
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/57bc0f16-88fb-466a-85ac-67cb46768a63
method: DELETE
response:
proto: HTTP/2.0
@@ -3964,9 +2578,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:55 GMT
+ - Fri, 20 Sep 2024 13:01:52 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -3974,152 +2588,48 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 074cc961-9925-4e60-8e84-a6d662b7f77e
+ - d1c80e15-2deb-4339-a5c6-cf1ad42cb596
status: 204 No Content
code: 204
- duration: 85.415701ms
- - id: 79
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 132
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"changes":[{"delete":{"id":"8aa63a38-8b59-438f-b5cc-2fee144710d1"}}],"return_all_records":false,"disallow_new_zone_creation":false}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records
- method: PATCH
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 14
- uncompressed: false
- body: '{"records":[]}'
- headers:
- Content-Length:
- - "14"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 05:00:55 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d96a2e7d-4658-4282-9b40-238fde359823
- status: 200 OK
- code: 200
- duration: 87.50171ms
- - id: 80
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 132
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"changes":[{"delete":{"id":"42c9ac40-7001-4097-a309-4be0e0d4cd19"}}],"return_all_records":false,"disallow_new_zone_creation":false}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records
- method: PATCH
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 14
- uncompressed: false
- body: '{"records":[]}'
- headers:
- Content-Length:
- - "14"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 05:00:55 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge01)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - bef32caf-e98e-4b96-8cc9-f0d86e51d8a8
- status: 200 OK
- code: 200
- duration: 129.883476ms
- - id: 81
+ duration: 106.294084ms
+ - id: 51
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 132
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"changes":[{"delete":{"id":"d440a184-0099-4442-a094-b89d7b346009"}}],"return_all_records":false,"disallow_new_zone_creation":false}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records
- method: PATCH
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 14
+ content_length: 1232
uncompressed: false
- body: '{"records":[]}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":"2024-09-20T13:01:42.455990Z","name":"webhook-test.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:42.455990Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:52.252339982Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
headers:
Content-Length:
- - "14"
+ - "1232"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:55 GMT
+ - Fri, 20 Sep 2024 13:01:52 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4127,11 +2637,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 513e5918-6ce9-4bf5-94b3-d8034ec82f45
+ - 02e7d6ab-2ee4-4886-9c3e-3f37c0970ecd
status: 200 OK
code: 200
- duration: 182.621468ms
- - id: 82
+ duration: 56.908953ms
+ - id: 52
request:
proto: HTTP/1.1
proto_major: 1
@@ -4158,7 +2668,7 @@ interactions:
User-Agent:
- aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64)
X-Amz-Date:
- - 20240830T050055Z
+ - 20240920T130152Z
url: https://sns.mnq.fr-par.scaleway.com/
method: POST
response:
@@ -4172,7 +2682,7 @@ interactions:
body: |
- tx8480ed6e-51ba-4076-93f5-a88b7028eef2
+ tx8b37d0e9-fe4f-4e07-9479-46b1daab1998
headers:
@@ -4181,50 +2691,46 @@ interactions:
Content-Type:
- text/xml; charset=UTF-8
Date:
- - Fri, 30 Aug 2024 05:00:55 GMT
+ - Fri, 20 Sep 2024 13:01:52 GMT
status: 200 OK
code: 200
- duration: 97.417353ms
- - id: 83
+ duration: 90.969473ms
+ - id: 53
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 132
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"changes":[{"delete":{"id":"dc97c415-02a8-432a-b7fa-50b0c64af0e9"}}],"return_all_records":false,"disallow_new_zone_creation":false}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records
- method: PATCH
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/19d4a109-c812-4f9a-9d49-55ce89f05d5d
+ method: DELETE
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 14
+ content_length: 0
uncompressed: false
- body: '{"records":[]}'
+ body: ""
headers:
- Content-Length:
- - "14"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:55 GMT
+ - Fri, 20 Sep 2024 13:01:52 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4232,48 +2738,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 5038f738-a475-43b1-bcbf-c605b7fadde7
- status: 200 OK
- code: 200
- duration: 231.703434ms
- - id: 84
+ - 1b0cd70d-ac04-4586-8ceb-d0eabf00289a
+ status: 204 No Content
+ code: 204
+ duration: 105.478946ms
+ - id: 54
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/3a51401f-d593-4e81-9c5b-422e5f17eee3
- method: GET
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a/revoke
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1180
+ content_length: 1016
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:59:24.051438Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","last_error":null,"last_valid_at":"2024-08-30T05:00:42.238958Z","name":"scaleway-terraform.com","next_check_at":"2024-08-30T05:01:42.238958Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-08-30T05:00:43.805465Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":"2024-09-20T13:01:42.455990Z","name":"webhook-test.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-20T13:01:53.273252691Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "1180"
+ - "1016"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:55 GMT
+ - Fri, 20 Sep 2024 13:01:53 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4281,11 +2789,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b3bf5634-3eb7-4db8-89af-88405783a5ea
+ - 2a00d53a-24ce-4dac-a9fc-2d0f8c9e2e29
status: 200 OK
code: 200
- duration: 51.676964ms
- - id: 85
+ duration: 1.003752476s
+ - id: 55
request:
proto: HTTP/1.1
proto_major: 1
@@ -4301,26 +2809,28 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/8058cd5b-887d-406f-855e-36d9d9209cf6
- method: DELETE
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 0
+ content_length: 1168
uncompressed: false
- body: ""
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:01.312528Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuMRHnBgHUcEpuHuOIo6wykaFBuD3uUpljNB6RqvaxJ5a69jzwD7pB5TMIVNCEzl7yOPUppWGBeuMc8OJrJk3q9n8oRw38h8mVA0U/l2RUW+CUa5PU8imF+Mn3ikduXJxmlmEIBb4hHsYjPJzHBdUSKPh8zINOISf+mpEcu11WJwkFnyRij3bIv7uXXi5Dt5yj/HSPL/E3ckT+/iij6gcGdVvyYUGGVNsnWGDMZCfBsoi6MidIlxsSjZHJYS3YqwfbHiDU5HPmYJ3PD0RhUALcsFBqmFaaVNdPDFMtIu7YjAQtsmiE6Nytwd/bFvlU7XZYkGXPjd48tH5C4j/yL8RlQIDAQAB","id":"72d2cd85-96d6-4e26-ad6b-8bb9e4d41c9a","last_error":null,"last_valid_at":"2024-09-20T13:01:42.455990Z","name":"webhook-test.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:53.315442760Z","status":"excellent"},"revoked_at":"2024-09-20T13:01:53.273252Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
+ Content-Length:
+ - "1168"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:55 GMT
+ - Fri, 20 Sep 2024 13:01:53 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4328,50 +2838,48 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - f9630617-bc25-48ee-be4c-2889f6ad9a3d
- status: 204 No Content
- code: 204
- duration: 59.944921ms
- - id: 86
+ - fecd71e5-c5ee-4513-b536-f3d7edddf242
+ status: 200 OK
+ code: 200
+ duration: 61.715091ms
+ - id: 56
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 2
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/3a51401f-d593-4e81-9c5b-422e5f17eee3/revoke
- method: POST
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=webhook-test.scaleway-terraform.com&domain=&order_by=domain_asc
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 984
+ content_length: 365
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:59:24.051438Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","last_error":null,"last_valid_at":"2024-08-30T05:00:42.238958Z","name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-08-30T05:00:56.708673755Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"webhook-test","updated_at":"2024-09-20T13:01:39Z"}],"total_count":1}'
headers:
Content-Length:
- - "984"
+ - "365"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:56 GMT
+ - Fri, 20 Sep 2024 13:01:53 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4379,11 +2887,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1d0176a6-d5f8-4bef-b361-3c8207c74f3c
+ - 8465377d-f6c6-422d-a9a3-bedcd0dd0189
status: 200 OK
code: 200
- duration: 1.001707805s
- - id: 87
+ duration: 66.934173ms
+ - id: 57
request:
proto: HTTP/1.1
proto_major: 1
@@ -4399,28 +2907,28 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/3a51401f-d593-4e81-9c5b-422e5f17eee3
- method: GET
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones/webhook-test.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: DELETE
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1130
+ content_length: 2
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:59:24.051438Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ETlSfOvwBp0XT3P7I2SPOxWhOxI/Czt7NQgRhta3V4t5pwx6h3RlQ93t2GEJoIzm6zFi3dGhmUmUsBaZWJp29DedgawH2kZhKYXkpYfPjfQGERJiqk472DpPhd5oWZyX/CBvu9qGLoQy9JK1BlfVoMjQqSAfLSZitmm3NTxyP6ggWL0hIfT94yU0HJgJIkidpKIHxmMyPyAW2QHZ+9TPG19yuGiDUn2aUTWAyM1Z9tvOMItRUQ+GBVtmomBugITTwVTRev+y/TBu8SaEfKe81UTWStlWJmOJHxSwXazwwhTpwJ3HSVx8VSWono8I8UuoXqG3XR/iyd+ZAcMQbP5rwIDAQAB","id":"3a51401f-d593-4e81-9c5b-422e5f17eee3","last_error":null,"last_valid_at":"2024-08-30T05:00:42.238958Z","name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-08-30T05:00:43.805465Z","status":"excellent"},"revoked_at":"2024-08-30T05:00:56.708673Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{}'
headers:
Content-Length:
- - "1130"
+ - "2"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:56 GMT
+ - Fri, 20 Sep 2024 13:01:53 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4428,11 +2936,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 682c9ee4-fbc0-44ff-b8cc-be590b3e6928
+ - 9104cc97-531f-4d4c-a9cb-92f422bc8485
status: 200 OK
code: 200
- duration: 60.088968ms
- - id: 88
+ duration: 440.59615ms
+ - id: 58
request:
proto: HTTP/1.1
proto_major: 1
@@ -4448,7 +2956,7 @@ interactions:
headers:
User-Agent:
- scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/e49c1730-deb4-4ef7-b5bf-eebc324a8bb1
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/57bc0f16-88fb-466a-85ac-67cb46768a63
method: GET
response:
proto: HTTP/2.0
@@ -4458,7 +2966,7 @@ interactions:
trailer: {}
content_length: 131
uncompressed: false
- body: '{"message":"resource is not found","resource":"webhook_id","resource_id":"e49c1730-deb4-4ef7-b5bf-eebc324a8bb1","type":"not_found"}'
+ body: '{"message":"resource is not found","resource":"webhook_id","resource_id":"57bc0f16-88fb-466a-85ac-67cb46768a63","type":"not_found"}'
headers:
Content-Length:
- "131"
@@ -4467,9 +2975,9 @@ interactions:
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 05:00:56 GMT
+ - Fri, 20 Sep 2024 13:01:53 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge01)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4477,7 +2985,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1fac6a74-953f-48fe-bab9-74390588a7e9
+ - fd0f679c-0072-4580-823f-cfdf29d04f66
status: 404 Not Found
code: 404
- duration: 29.870726ms
+ duration: 19.846423ms
diff --git a/internal/services/tem/testdata/webhook-update.cassette.yaml b/internal/services/tem/testdata/webhook-update.cassette.yaml
index 5e8a860ec..5a7991048 100644
--- a/internal/services/tem/testdata/webhook-update.cassette.yaml
+++ b/internal/services/tem/testdata/webhook-update.cassette.yaml
@@ -16,7 +16,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
@@ -25,20 +25,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 253
+ content_length: 259
uncompressed: false
body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
headers:
Content-Length:
- - "253"
+ - "259"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:37:58 GMT
+ - Fri, 20 Sep 2024 13:00:59 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -46,10 +46,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c9535972-ea38-45a2-acc4-8f9fccb51f96
+ - 6810d934-3ab8-4468-9e10-30bfedc59721
status: 200 OK
code: 200
- duration: 933.169439ms
+ duration: 712.84752ms
- id: 1
request:
proto: HTTP/1.1
@@ -65,7 +65,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
@@ -74,20 +74,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 222
+ content_length: 227
uncompressed: false
body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
headers:
Content-Length:
- - "222"
+ - "227"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:37:58 GMT
+ - Fri, 20 Sep 2024 13:00:59 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -95,10 +95,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 575d8e19-e53f-40f8-8133-75f2da9a73e6
+ - c2b0bb83-8263-45c8-a4c7-7e5cb4dfb88c
status: 200 OK
code: 200
- duration: 62.257656ms
+ duration: 509.086833ms
- id: 2
request:
proto: HTTP/1.1
@@ -114,7 +114,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
@@ -123,20 +123,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 238
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
headers:
Content-Length:
- - "233"
+ - "238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:37:58 GMT
+ - Fri, 20 Sep 2024 13:00:59 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -144,10 +144,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 9e644473-bd6c-4cd1-9022-8fa438c53c32
+ - 04ce6503-0375-4d07-bf51-9ba3c580ca3e
status: 200 OK
code: 200
- duration: 75.684828ms
+ duration: 65.656966ms
- id: 3
request:
proto: HTTP/1.1
@@ -163,7 +163,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
@@ -172,20 +172,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 238
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
headers:
Content-Length:
- - "233"
+ - "238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:37:58 GMT
+ - Fri, 20 Sep 2024 13:00:59 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -193,10 +193,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 801b639b-e286-44bb-a380-5e73d802dd41
+ - 3a2d2290-c99c-48a3-b501-a2854dab3ac9
status: 200 OK
code: 200
- duration: 63.030025ms
+ duration: 87.781673ms
- id: 4
request:
proto: HTTP/1.1
@@ -212,7 +212,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
@@ -221,20 +221,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 253
+ content_length: 259
uncompressed: false
body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
headers:
Content-Length:
- - "253"
+ - "259"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:37:59 GMT
+ - Fri, 20 Sep 2024 13:01:00 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -242,10 +242,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cec9c9b7-3f60-4b89-ae20-b15e0e10e825
+ - 81813679-5aa7-4c02-ae78-de63945b5632
status: 200 OK
code: 200
- duration: 803.676207ms
+ duration: 664.146742ms
- id: 5
request:
proto: HTTP/1.1
@@ -261,7 +261,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
@@ -270,20 +270,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 222
+ content_length: 227
uncompressed: false
body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
headers:
Content-Length:
- - "222"
+ - "227"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:37:59 GMT
+ - Fri, 20 Sep 2024 13:01:00 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -291,10 +291,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a95a71cd-4afa-4d06-b554-646013f1bf78
+ - f5eeb3f9-754d-4a5d-a61a-999f5efbf790
status: 200 OK
code: 200
- duration: 66.99492ms
+ duration: 90.45829ms
- id: 6
request:
proto: HTTP/1.1
@@ -310,7 +310,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
@@ -319,20 +319,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 238
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
headers:
Content-Length:
- - "233"
+ - "238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:37:59 GMT
+ - Fri, 20 Sep 2024 13:01:00 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -340,10 +340,10 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d65394c4-3cd4-4193-b082-f182de1ccbac
+ - 1651dd66-3420-4097-a6cb-08cc5c6d342f
status: 200 OK
code: 200
- duration: 57.077777ms
+ duration: 51.521398ms
- id: 7
request:
proto: HTTP/1.1
@@ -359,7 +359,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
@@ -368,20 +368,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 238
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
headers:
Content-Length:
- - "233"
+ - "238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:37:59 GMT
+ - Fri, 20 Sep 2024 13:01:00 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -389,3888 +389,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4e69c52c-cb07-4c3a-8dfc-7e1a94680163
+ - 6d299c89-8fdc-4a3c-b819-d641d866ad70
status: 200 OK
code: 200
- duration: 58.423774ms
+ duration: 48.884099ms
- id: 8
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 172
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-sns-credentials-amazing-lovelace","permissions":{"can_publish":false,"can_receive":false,"can_manage":true}}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 475
- uncompressed: false
- body: '{"access_key":"kHESad4hv4gjMbVDrJo4","created_at":"2024-08-30T04:37:59.933641754Z","id":"7d6cc471-6426-4412-94c4-e91cd96828ba","name":"tf-sns-credentials-amazing-lovelace","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"cb01ae7d9562656cd2024058d4bd22a49bc15482","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}'
- headers:
- Content-Length:
- - "475"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:37:59 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b713df93-7d1d-4c9a-b2e7-fec66a13e2aa
- status: 200 OK
- code: 200
- duration: 80.348946ms
- - id: 9
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 179
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"changes":[{"add":{"records":[{"data":".","name":"","priority":0,"ttl":3600,"type":"MX","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records
- method: PATCH
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 133
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"0 .","id":"c74949fd-79c3-475a-82d6-5a04a651506e","name":"","priority":0,"ttl":3600,"type":"MX"}]}'
- headers:
- Content-Length:
- - "133"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:37:59 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 4cb398c4-95d9-4b34-a078-835a036a22d0
- status: 200 OK
- code: 200
- duration: 126.926648ms
- - id: 10
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/7d6cc471-6426-4412-94c4-e91cd96828ba
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 408
- uncompressed: false
- body: '{"access_key":"kHESad4hv4gjMbVDrJo4","created_at":"2024-08-30T04:37:59.933641Z","id":"7d6cc471-6426-4412-94c4-e91cd96828ba","name":"tf-sns-credentials-amazing-lovelace","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"cb01ae7d9562656cd2024058d4bd22a49bc15482","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}'
- headers:
- Content-Length:
- - "408"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 852c45c3-d788-4f9b-8971-f2b3c007a4f1
- status: 200 OK
- code: 200
- duration: 68.994379ms
- - id: 11
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?name=&order_by=name_asc&type=MX
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 149
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"0 .","id":"c74949fd-79c3-475a-82d6-5a04a651506e","name":"","priority":0,"ttl":3600,"type":"MX"}],"total_count":1}'
- headers:
- Content-Length:
- - "149"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - b1a4f485-648d-4a06-acc7-e66a84362aae
- status: 200 OK
- code: 200
- duration: 59.619139ms
- - id: 12
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 233
- uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
- headers:
- Content-Length:
- - "233"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - bc2362ea-10f4-46e2-9efa-8a4f91a044dd
- status: 200 OK
- code: 200
- duration: 63.453872ms
- - id: 13
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?name=&order_by=name_asc&page=1&type=MX
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 149
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"0 .","id":"c74949fd-79c3-475a-82d6-5a04a651506e","name":"","priority":0,"ttl":3600,"type":"MX"}],"total_count":1}'
- headers:
- Content-Length:
- - "149"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2ee31a09-5277-4ff7-ba1e-43c86f9efef3
- status: 200 OK
- code: 200
- duration: 65.149461ms
- - id: 14
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=c74949fd-79c3-475a-82d6-5a04a651506e&name=&order_by=name_asc&page=1&type=unknown
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 149
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"0 .","id":"c74949fd-79c3-475a-82d6-5a04a651506e","name":"","priority":0,"ttl":3600,"type":"MX"}],"total_count":1}'
- headers:
- Content-Length:
- - "149"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3d26c93d-c371-48ce-9166-fecb022f248a
- status: 200 OK
- code: 200
- duration: 68.750228ms
- - id: 15
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 342
- uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"","updated_at":"2024-08-30T04:37:59Z"}],"total_count":1}'
- headers:
- Content-Length:
- - "342"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 78905c7e-093d-4ac9-a5da-66fcaaae7e01
- status: 200 OK
- code: 200
- duration: 62.091624ms
- - id: 16
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 110
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"scaleway-terraform.com","accept_tos":true}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1135
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-08-30T04:38:00.347593785Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1135"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a2d26066-9c87-49e9-80c7-fe50a3e396cf
- status: 200 OK
- code: 200
- duration: 547.40378ms
- - id: 17
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1012
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1012"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - bf3a04bd-3b2d-492a-b815-fff99f280db8
- status: 200 OK
- code: 200
- duration: 52.006728ms
- - id: 18
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1012
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1012"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 96746162-5652-4a2f-a799-dcdfac9688bc
- status: 200 OK
- code: 200
- duration: 31.202121ms
- - id: 19
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 646
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"changes":[{"add":{"records":[{"data":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","name":"105bdce1-64c0-48ab-899d-868455867ecf._domainkey","priority":0,"ttl":3600,"type":"TXT","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records
- method: PATCH
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 602
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB\"","id":"57a02221-dfc8-4c84-b268-d6f04d55ab06","name":"105bdce1-64c0-48ab-899d-868455867ecf._domainkey","priority":0,"ttl":3600,"type":"TXT"}]}'
- headers:
- Content-Length:
- - "602"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 45bd5fbb-beef-4836-84ff-88fc28e429ec
- status: 200 OK
- code: 200
- duration: 114.55049ms
- - id: 20
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c/check
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1040
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:38:00.586169732Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1040"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d92295f1-0855-402c-a1ca-3e67a31ec69b
- status: 200 OK
- code: 200
- duration: 100.084848ms
- - id: 21
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 80
- transfer_encoding: []
- trailer: {}
- host: sns.mnq.fr-par.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: Action=CreateTopic&Attributes=&Name=test-mnq-sns-topic-update&Version=2010-03-31
- form:
- Action:
- - CreateTopic
- Attributes:
- - ""
- Name:
- - test-mnq-sns-topic-update
- Version:
- - "2010-03-31"
- headers:
- Content-Length:
- - "80"
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- User-Agent:
- - aws-sdk-go/1.55.5 (go1.22.4; darwin; amd64)
- X-Amz-Date:
- - 20240830T043800Z
- url: https://sns.mnq.fr-par.scaleway.com/
- method: POST
- response:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- transfer_encoding: []
- trailer: {}
- content_length: 379
- uncompressed: false
- body: |
-
-
- arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-update
-
-
- txf20a3dbe-904b-4757-8788-9a2f92791bc5
-
-
- headers:
- Content-Length:
- - "379"
- Content-Type:
- - text/xml; charset=UTF-8
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- status: 200 OK
- code: 200
- duration: 532.810892ms
- - id: 22
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 153
- transfer_encoding: []
- trailer: {}
- host: sns.mnq.fr-par.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: Action=GetTopicAttributes&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-update&Version=2010-03-31
- form:
- Action:
- - GetTopicAttributes
- TopicArn:
- - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-update
- Version:
- - "2010-03-31"
- headers:
- Content-Length:
- - "153"
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- User-Agent:
- - aws-sdk-go/1.55.5 (go1.22.4; darwin; amd64)
- X-Amz-Date:
- - 20240830T043800Z
- url: https://sns.mnq.fr-par.scaleway.com/
- method: POST
- response:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- transfer_encoding: []
- trailer: {}
- content_length: 1047
- uncompressed: false
- body: |
-
-
-
-
- Owner
- project-105bdce1-64c0-48ab-899d-868455867ecf
-
-
- SubscriptionsConfirmed
- 0
-
-
- SubscriptionsDeleted
- 0
-
-
- SubscriptionsPending
- 0
-
-
- TopicArn
- arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-update
-
-
-
-
- tx90823ec1-e226-48c8-a170-a6e17a627d81
-
-
- headers:
- Content-Length:
- - "1047"
- Content-Type:
- - text/xml; charset=UTF-8
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- status: 200 OK
- code: 200
- duration: 50.586966ms
- - id: 23
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 201
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"changes":[{"add":{"records":[{"data":"v=DMARC1; p=none","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records
- method: PATCH
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 157
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DMARC1; p=none\"","id":"ab73f353-5f21-41bc-8de8-a968cb8d60ce","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}]}'
- headers:
- Content-Length:
- - "157"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f9386f2b-7ceb-4681-b88d-0d31c65857df
- status: 200 OK
- code: 200
- duration: 194.953265ms
- - id: 24
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?name=105bdce1-64c0-48ab-899d-868455867ecf._domainkey&order_by=name_asc&type=TXT
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 618
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB\"","id":"57a02221-dfc8-4c84-b268-d6f04d55ab06","name":"105bdce1-64c0-48ab-899d-868455867ecf._domainkey","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
- headers:
- Content-Length:
- - "618"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5da1595e-73a5-4d5a-9a94-fe6d7fd7e74f
- status: 200 OK
- code: 200
- duration: 79.897956ms
- - id: 25
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?name=_dmarc&order_by=name_asc&type=TXT
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 173
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DMARC1; p=none\"","id":"ab73f353-5f21-41bc-8de8-a968cb8d60ce","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
- headers:
- Content-Length:
- - "173"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 1a0f6e86-77ee-4a8d-9636-c08d9984b1ae
- status: 200 OK
- code: 200
- duration: 60.013524ms
- - id: 26
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?name=105bdce1-64c0-48ab-899d-868455867ecf._domainkey&order_by=name_asc&page=1&type=TXT
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 618
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB\"","id":"57a02221-dfc8-4c84-b268-d6f04d55ab06","name":"105bdce1-64c0-48ab-899d-868455867ecf._domainkey","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
- headers:
- Content-Length:
- - "618"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 08f0b1ed-caed-4849-a6cb-ec77eb173747
- status: 200 OK
- code: 200
- duration: 66.880364ms
- - id: 27
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 220
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"changes":[{"add":{"records":[{"data":"v=spf1 include:_spf.tem.scaleway.com -all","name":"","priority":0,"ttl":3600,"type":"TXT","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records
- method: PATCH
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 176
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=spf1 include:_spf.tem.scaleway.com -all\"","id":"b4e63b81-f885-426a-a2ae-b43bd9d59348","name":"","priority":0,"ttl":3600,"type":"TXT"}]}'
- headers:
- Content-Length:
- - "176"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 7de54968-11bf-4519-90f8-9fb7bfe0264c
- status: 200 OK
- code: 200
- duration: 275.031439ms
- - id: 28
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?name=_dmarc&order_by=name_asc&page=1&type=TXT
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 173
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DMARC1; p=none\"","id":"ab73f353-5f21-41bc-8de8-a968cb8d60ce","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
- headers:
- Content-Length:
- - "173"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d9395365-ab14-481f-a50d-4961612de141
- status: 200 OK
- code: 200
- duration: 63.932233ms
- - id: 29
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=57a02221-dfc8-4c84-b268-d6f04d55ab06&name=&order_by=name_asc&page=1&type=unknown
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 618
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB\"","id":"57a02221-dfc8-4c84-b268-d6f04d55ab06","name":"105bdce1-64c0-48ab-899d-868455867ecf._domainkey","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
- headers:
- Content-Length:
- - "618"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - fec04e9b-751f-4dce-84ff-29f2351e39a3
- status: 200 OK
- code: 200
- duration: 66.418572ms
- - id: 30
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?name=&order_by=name_asc&type=TXT
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 925
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=spf1 include:_spf.tem.scaleway.com -all\"","id":"b4e63b81-f885-426a-a2ae-b43bd9d59348","name":"","priority":0,"ttl":3600,"type":"TXT"},{"comment":null,"data":"\"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB\"","id":"57a02221-dfc8-4c84-b268-d6f04d55ab06","name":"105bdce1-64c0-48ab-899d-868455867ecf._domainkey","priority":0,"ttl":3600,"type":"TXT"},{"comment":null,"data":"\"v=DMARC1; p=none\"","id":"ab73f353-5f21-41bc-8de8-a968cb8d60ce","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":3}'
- headers:
- Content-Length:
- - "925"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e1308b37-70f3-4697-95ad-c4fef4e9ec7f
- status: 200 OK
- code: 200
- duration: 65.390379ms
- - id: 31
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=ab73f353-5f21-41bc-8de8-a968cb8d60ce&name=&order_by=name_asc&page=1&type=unknown
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 173
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DMARC1; p=none\"","id":"ab73f353-5f21-41bc-8de8-a968cb8d60ce","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
- headers:
- Content-Length:
- - "173"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 57abb0c2-ac9c-488b-a250-965e6347819d
- status: 200 OK
- code: 200
- duration: 60.852666ms
- - id: 32
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 342
- uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"","updated_at":"2024-08-30T04:38:00Z"}],"total_count":1}'
- headers:
- Content-Length:
- - "342"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 6ce0f136-3b98-4ae9-9d74-2f08802a49c2
- status: 200 OK
- code: 200
- duration: 69.270477ms
- - id: 33
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?name=&order_by=name_asc&page=1&type=TXT
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 925
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=spf1 include:_spf.tem.scaleway.com -all\"","id":"b4e63b81-f885-426a-a2ae-b43bd9d59348","name":"","priority":0,"ttl":3600,"type":"TXT"},{"comment":null,"data":"\"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB\"","id":"57a02221-dfc8-4c84-b268-d6f04d55ab06","name":"105bdce1-64c0-48ab-899d-868455867ecf._domainkey","priority":0,"ttl":3600,"type":"TXT"},{"comment":null,"data":"\"v=DMARC1; p=none\"","id":"ab73f353-5f21-41bc-8de8-a968cb8d60ce","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":3}'
- headers:
- Content-Length:
- - "925"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 7d7da85c-c5ec-41f7-bec9-adb47ef94ce9
- status: 200 OK
- code: 200
- duration: 64.566814ms
- - id: 34
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 342
- uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"","updated_at":"2024-08-30T04:38:00Z"}],"total_count":1}'
- headers:
- Content-Length:
- - "342"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - c43bf429-b34f-4f68-a93c-66ad35528ece
- status: 200 OK
- code: 200
- duration: 65.560741ms
- - id: 35
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=b4e63b81-f885-426a-a2ae-b43bd9d59348&name=&order_by=name_asc&page=1&type=unknown
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 192
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=spf1 include:_spf.tem.scaleway.com -all\"","id":"b4e63b81-f885-426a-a2ae-b43bd9d59348","name":"","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
- headers:
- Content-Length:
- - "192"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:00 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 22b4fd87-5452-4d5d-874d-50131841948e
- status: 200 OK
- code: 200
- duration: 61.124868ms
- - id: 36
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 342
- uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"","updated_at":"2024-08-30T04:38:00Z"}],"total_count":1}'
- headers:
- Content-Length:
- - "342"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:01 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 344ac728-0d30-44ef-b7ee-a326c379e354
- status: 200 OK
- code: 200
- duration: 67.85916ms
- - id: 37
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c/check
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1040
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":null,"last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:38:01.194600507Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1040"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:01 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0f7263c0-8fae-4d05-8aa7-ba8f2389acb2
- status: 200 OK
- code: 200
- duration: 88.118991ms
- - id: 38
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c/check
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1286
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":"no SPF record found\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.scaleway-terraform.com\": nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:39:01.972634Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1286"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:02 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 1240f1b6-5fff-4f77-baa0-e48dfce02b38
- status: 200 OK
- code: 200
- duration: 70.340812ms
- - id: 39
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c/check
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1286
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":"no SPF record found\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.scaleway-terraform.com\": nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:39:01.972634Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1286"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:04 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 7dc78a1a-3f29-4ad7-beb2-95301bc6eddb
- status: 200 OK
- code: 200
- duration: 72.498174ms
- - id: 40
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c/check
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1286
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":"no SPF record found\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.scaleway-terraform.com\": nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:39:01.972634Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1286"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:08 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d2a99cce-87f0-44c6-993e-a76bdc693333
- status: 200 OK
- code: 200
- duration: 70.04252ms
- - id: 41
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c/check
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1286
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":"no SPF record found\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.scaleway-terraform.com\": nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:39:01.972634Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1286"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:16 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3b0eb6d3-e196-4fec-9d26-3ca03f30cde6
- status: 200 OK
- code: 200
- duration: 63.676787ms
- - id: 42
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c/check
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1286
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":"no SPF record found\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.scaleway-terraform.com\": nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:39:01.972634Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1286"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:26 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 886fafbe-7976-48ee-a429-8d9083fd581d
- status: 200 OK
- code: 200
- duration: 77.233701ms
- - id: 43
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c/check
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1286
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":"no SPF record found\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.scaleway-terraform.com\": nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:39:01.972634Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1286"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:36 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 088ae42f-3c3b-46b2-9c3b-bef4e8fa7085
- status: 200 OK
- code: 200
- duration: 73.964411ms
- - id: 44
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c/check
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1286
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":"no SPF record found\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.scaleway-terraform.com\": nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:39:01.972634Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1286"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:46 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 745f1d55-1557-4382-b260-c687ce9cdcee
- status: 200 OK
- code: 200
- duration: 60.283089ms
- - id: 45
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c/check
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1286
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":"no SPF record found\nfailed lookup for TXT record on the DKIM selector \"105bdce1-64c0-48ab-899d-868455867ecf._domainkey.scaleway-terraform.com\": nxdomain\nfailed lookup for TXT record on the DMARC selector \"_dmarc.scaleway-terraform.com\": nxdomain","last_valid_at":null,"name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:39:01.972634Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
- headers:
- Content-Length:
- - "1286"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:38:56 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 267a459d-fe01-4daa-9629-96d4699e38c3
- status: 200 OK
- code: 200
- duration: 109.894467ms
- - id: 46
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 2
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c/check
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1060
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":null,"last_valid_at":"2024-08-30T04:39:06.043530Z","name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:40:06.043530Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
- headers:
- Content-Length:
- - "1060"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:06 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 8f553f6d-0b49-412d-b310-ca46195531b1
- status: 200 OK
- code: 200
- duration: 113.934239ms
- - id: 47
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1060
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":null,"last_valid_at":"2024-08-30T04:39:06.043530Z","name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:40:06.043530Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
- headers:
- Content-Length:
- - "1060"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:07 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2bc79d70-6d1c-430d-be82-4b0e8a74535f
- status: 200 OK
- code: 200
- duration: 242.770979ms
- - id: 48
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 272
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: '{"domain_id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"terraform-webhook-test","event_types":["email_delivered"],"sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-update"}'
- form: {}
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 459
- uncompressed: false
- body: '{"created_at":"2024-08-30T04:39:07.293621Z","domain_id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","event_types":["email_delivered"],"id":"c13232e7-ac8b-45b4-b3fa-440d3d6331ee","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-update","updated_at":"2024-08-30T04:39:07.293621Z"}'
- headers:
- Content-Length:
- - "459"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:07 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0e1e8cbd-6f24-426d-b1fd-0b2e92ddbaa1
- status: 200 OK
- code: 200
- duration: 605.776635ms
- - id: 49
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/c13232e7-ac8b-45b4-b3fa-440d3d6331ee
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 459
- uncompressed: false
- body: '{"created_at":"2024-08-30T04:39:07.293621Z","domain_id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","event_types":["email_delivered"],"id":"c13232e7-ac8b-45b4-b3fa-440d3d6331ee","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-update","updated_at":"2024-08-30T04:39:07.293621Z"}'
- headers:
- Content-Length:
- - "459"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:07 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f2724452-7608-4e55-a870-affa984e1e1e
- status: 200 OK
- code: 200
- duration: 72.850061ms
- - id: 50
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/c13232e7-ac8b-45b4-b3fa-440d3d6331ee
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 459
- uncompressed: false
- body: '{"created_at":"2024-08-30T04:39:07.293621Z","domain_id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","event_types":["email_delivered"],"id":"c13232e7-ac8b-45b4-b3fa-440d3d6331ee","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-update","updated_at":"2024-08-30T04:39:07.293621Z"}'
- headers:
- Content-Length:
- - "459"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:08 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 1a84c564-8030-4bfa-ba69-3e2876d3ddc0
- status: 200 OK
- code: 200
- duration: 56.00294ms
- - id: 51
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 253
- uncompressed: false
- body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
- headers:
- Content-Length:
- - "253"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:08 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - bcadb0ed-10f8-40d6-9383-404dfd5af0ac
- status: 200 OK
- code: 200
- duration: 725.300345ms
- - id: 52
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 222
- uncompressed: false
- body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
- headers:
- Content-Length:
- - "222"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:08 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ec9577ef-c473-4ac0-affc-028297d8480e
- status: 200 OK
- code: 200
- duration: 67.758729ms
- - id: 53
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 233
- uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
- headers:
- Content-Length:
- - "233"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:09 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ddc086b8-0e6a-45c6-948e-545256d08b33
- status: 200 OK
- code: 200
- duration: 52.333996ms
- - id: 54
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 233
- uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
- headers:
- Content-Length:
- - "233"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:09 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - e90e1397-135a-459c-a63b-32d96ef9a483
- status: 200 OK
- code: 200
- duration: 41.879577ms
- - id: 55
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=c74949fd-79c3-475a-82d6-5a04a651506e&name=&order_by=name_asc&page=1&type=MX
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 149
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"0 .","id":"c74949fd-79c3-475a-82d6-5a04a651506e","name":"","priority":0,"ttl":3600,"type":"MX"}],"total_count":1}'
- headers:
- Content-Length:
- - "149"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:09 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 1419c2b9-a2b5-45a0-a66f-a5a824df39e7
- status: 200 OK
- code: 200
- duration: 64.564526ms
- - id: 56
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 341
- uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"","updated_at":"2024-08-30T04:38:14Z"}],"total_count":1}'
- headers:
- Content-Length:
- - "341"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:09 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 6dd38593-fb2d-4f2d-be2e-ad0b2b603cdd
- status: 200 OK
- code: 200
- duration: 61.9497ms
- - id: 57
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1180
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":null,"last_valid_at":"2024-08-30T04:39:06.043530Z","name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:40:06.043530Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-08-30T04:39:07.897480Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
- headers:
- Content-Length:
- - "1180"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:09 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 3fc04cf3-1b36-40c6-9f01-07b9dc5fa71c
- status: 200 OK
- code: 200
- duration: 210.491965ms
- - id: 58
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=b4e63b81-f885-426a-a2ae-b43bd9d59348&name=&order_by=name_asc&page=1&type=TXT
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 192
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=spf1 include:_spf.tem.scaleway.com -all\"","id":"b4e63b81-f885-426a-a2ae-b43bd9d59348","name":"","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
- headers:
- Content-Length:
- - "192"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:09 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - a8514b79-8123-4068-b965-e7f7ceb67406
- status: 200 OK
- code: 200
- duration: 78.104819ms
- - id: 59
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=ab73f353-5f21-41bc-8de8-a968cb8d60ce&name=_dmarc&order_by=name_asc&page=1&type=TXT
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 173
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DMARC1; p=none\"","id":"ab73f353-5f21-41bc-8de8-a968cb8d60ce","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
- headers:
- Content-Length:
- - "173"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:09 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 54bb1fde-1d0e-46f1-999b-12bc4a9ba7f9
- status: 200 OK
- code: 200
- duration: 82.063717ms
- - id: 60
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=57a02221-dfc8-4c84-b268-d6f04d55ab06&name=105bdce1-64c0-48ab-899d-868455867ecf._domainkey&order_by=name_asc&page=1&type=TXT
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 618
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB\"","id":"57a02221-dfc8-4c84-b268-d6f04d55ab06","name":"105bdce1-64c0-48ab-899d-868455867ecf._domainkey","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
- headers:
- Content-Length:
- - "618"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:09 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - d6b10f41-f6ee-4b88-9f0b-4fb82f0173ec
- status: 200 OK
- code: 200
- duration: 89.951039ms
- - id: 61
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 341
- uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"","updated_at":"2024-08-30T04:38:14Z"}],"total_count":1}'
- headers:
- Content-Length:
- - "341"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:09 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - afc9e09b-5b48-4816-8c99-602d2daef5e7
- status: 200 OK
- code: 200
- duration: 54.397281ms
- - id: 62
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 341
- uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"","updated_at":"2024-08-30T04:38:14Z"}],"total_count":1}'
- headers:
- Content-Length:
- - "341"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:09 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 39a14a0e-bf8d-446e-871f-0f0640a430d8
- status: 200 OK
- code: 200
- duration: 55.948046ms
- - id: 63
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 341
- uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"","updated_at":"2024-08-30T04:38:14Z"}],"total_count":1}'
- headers:
- Content-Length:
- - "341"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:09 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 1163978b-0060-434c-908e-2be7ff8d28cc
- status: 200 OK
- code: 200
- duration: 55.688087ms
- - id: 64
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1180
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":null,"last_valid_at":"2024-08-30T04:39:06.043530Z","name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:40:06.043530Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-08-30T04:39:07.897480Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
- headers:
- Content-Length:
- - "1180"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:09 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 93ecb2c7-6ddb-4825-8ddb-e56ea0107c50
- status: 200 OK
- code: 200
- duration: 217.642874ms
- - id: 65
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 253
- uncompressed: false
- body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
- headers:
- Content-Length:
- - "253"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:09 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 9b32d432-2930-4b62-aa3f-58224dafbe18
- status: 200 OK
- code: 200
- duration: 697.778469ms
- - id: 66
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 222
- uncompressed: false
- body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
- headers:
- Content-Length:
- - "222"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:10 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - be31653d-29dd-411d-8b8a-e3555cb299c8
- status: 200 OK
- code: 200
- duration: 53.731168ms
- - id: 67
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 233
- uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
- headers:
- Content-Length:
- - "233"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:10 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 9644a678-fb0b-49ff-8f0a-c799aa863e1c
- status: 200 OK
- code: 200
- duration: 60.034371ms
- - id: 68
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 233
- uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
- headers:
- Content-Length:
- - "233"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:10 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 87c8f3e1-fb0c-4758-b32c-f9b1a1fa7283
- status: 200 OK
- code: 200
- duration: 55.051199ms
- - id: 69
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/7d6cc471-6426-4412-94c4-e91cd96828ba
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 408
- uncompressed: false
- body: '{"access_key":"kHESad4hv4gjMbVDrJo4","created_at":"2024-08-30T04:37:59.933641Z","id":"7d6cc471-6426-4412-94c4-e91cd96828ba","name":"tf-sns-credentials-amazing-lovelace","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"cb01ae7d9562656cd2024058d4bd22a49bc15482","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}'
- headers:
- Content-Length:
- - "408"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:10 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 397d4c57-f0bc-41b5-b548-b356c90c1ed5
- status: 200 OK
- code: 200
- duration: 63.044512ms
- - id: 70
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 153
- transfer_encoding: []
- trailer: {}
- host: sns.mnq.fr-par.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: Action=GetTopicAttributes&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-update&Version=2010-03-31
- form:
- Action:
- - GetTopicAttributes
- TopicArn:
- - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-update
- Version:
- - "2010-03-31"
- headers:
- Content-Length:
- - "153"
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- User-Agent:
- - aws-sdk-go/1.55.5 (go1.22.4; darwin; amd64)
- X-Amz-Date:
- - 20240830T043910Z
- url: https://sns.mnq.fr-par.scaleway.com/
- method: POST
- response:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- transfer_encoding: []
- trailer: {}
- content_length: 1047
- uncompressed: false
- body: |
-
-
-
-
- Owner
- project-105bdce1-64c0-48ab-899d-868455867ecf
-
-
- SubscriptionsConfirmed
- 0
-
-
- SubscriptionsDeleted
- 0
-
-
- SubscriptionsPending
- 0
-
-
- TopicArn
- arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-update
-
-
-
-
- tx0c315560-c16f-4e35-b2be-f70aa1ae04ba
-
-
- headers:
- Content-Length:
- - "1047"
- Content-Type:
- - text/xml; charset=UTF-8
- Date:
- - Fri, 30 Aug 2024 04:39:10 GMT
- status: 200 OK
- code: 200
- duration: 41.676921ms
- - id: 71
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/c13232e7-ac8b-45b4-b3fa-440d3d6331ee
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 459
- uncompressed: false
- body: '{"created_at":"2024-08-30T04:39:07.293621Z","domain_id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","event_types":["email_delivered"],"id":"c13232e7-ac8b-45b4-b3fa-440d3d6331ee","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-update","updated_at":"2024-08-30T04:39:07.293621Z"}'
- headers:
- Content-Length:
- - "459"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:10 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ab26cf59-f0cb-4c53-82ba-adf8c7a3e5f3
- status: 200 OK
- code: 200
- duration: 53.010756ms
- - id: 72
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 253
- uncompressed: false
- body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
- headers:
- Content-Length:
- - "253"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:11 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 1b6c637e-17ae-43e1-9fc0-0bba9825ba2f
- status: 200 OK
- code: 200
- duration: 757.899549ms
- - id: 73
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 222
- uncompressed: false
- body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
- headers:
- Content-Length:
- - "222"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:11 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 957ee5c0-8b5d-43ca-9472-48d8e782d39d
- status: 200 OK
- code: 200
- duration: 61.003445ms
- - id: 74
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 233
- uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
- headers:
- Content-Length:
- - "233"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:11 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f184dcd8-144e-4175-9314-b3b604b9ceb4
- status: 200 OK
- code: 200
- duration: 40.530118ms
- - id: 75
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 233
- uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
- headers:
- Content-Length:
- - "233"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:11 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 56c54b07-111d-45cd-acc8-b1920fe0893f
- status: 200 OK
- code: 200
- duration: 55.640627ms
- - id: 76
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=c74949fd-79c3-475a-82d6-5a04a651506e&name=&order_by=name_asc&page=1&type=MX
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 149
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"0 .","id":"c74949fd-79c3-475a-82d6-5a04a651506e","name":"","priority":0,"ttl":3600,"type":"MX"}],"total_count":1}'
- headers:
- Content-Length:
- - "149"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:11 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 03e9e2c4-a275-42fb-9ae6-a72db306ea88
- status: 200 OK
- code: 200
- duration: 69.204435ms
- - id: 77
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 341
- uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"","updated_at":"2024-08-30T04:38:14Z"}],"total_count":1}'
- headers:
- Content-Length:
- - "341"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:11 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 1de017ac-73be-488f-9838-2830714f909e
- status: 200 OK
- code: 200
- duration: 71.582287ms
- - id: 78
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 1180
- uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":null,"last_valid_at":"2024-08-30T04:39:06.043530Z","name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:40:06.043530Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-08-30T04:39:07.897480Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
- headers:
- Content-Length:
- - "1180"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:11 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - ce647558-fc6a-495c-aa8b-2797046f173c
- status: 200 OK
- code: 200
- duration: 191.62039ms
- - id: 79
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=57a02221-dfc8-4c84-b268-d6f04d55ab06&name=105bdce1-64c0-48ab-899d-868455867ecf._domainkey&order_by=name_asc&page=1&type=TXT
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 618
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB\"","id":"57a02221-dfc8-4c84-b268-d6f04d55ab06","name":"105bdce1-64c0-48ab-899d-868455867ecf._domainkey","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
- headers:
- Content-Length:
- - "618"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:11 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 57eccf18-79f9-48e0-a188-0e3890b8cb44
- status: 200 OK
- code: 200
- duration: 61.759659ms
- - id: 80
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=b4e63b81-f885-426a-a2ae-b43bd9d59348&name=&order_by=name_asc&page=1&type=TXT
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 192
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=spf1 include:_spf.tem.scaleway.com -all\"","id":"b4e63b81-f885-426a-a2ae-b43bd9d59348","name":"","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
- headers:
- Content-Length:
- - "192"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:11 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 008192b5-7e7b-4692-82f4-8814e78a947d
- status: 200 OK
- code: 200
- duration: 69.762321ms
- - id: 81
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=ab73f353-5f21-41bc-8de8-a968cb8d60ce&name=_dmarc&order_by=name_asc&page=1&type=TXT
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 173
- uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DMARC1; p=none\"","id":"ab73f353-5f21-41bc-8de8-a968cb8d60ce","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
- headers:
- Content-Length:
- - "173"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:11 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f6e13c49-fa3b-475c-9136-8b75e865f2ff
- status: 200 OK
- code: 200
- duration: 69.656982ms
- - id: 82
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 341
- uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"","updated_at":"2024-08-30T04:38:14Z"}],"total_count":1}'
- headers:
- Content-Length:
- - "341"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:11 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 812e9004-304e-4576-9c72-8f3ea46e5bbc
- status: 200 OK
- code: 200
- duration: 57.071324ms
- - id: 83
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 341
- uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"","updated_at":"2024-08-30T04:38:14Z"}],"total_count":1}'
- headers:
- Content-Length:
- - "341"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:11 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 111ef76d-b774-44b6-b53a-13d6990f7685
- status: 200 OK
- code: 200
- duration: 60.588088ms
- - id: 84
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 341
- uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"","updated_at":"2024-08-30T04:38:14Z"}],"total_count":1}'
- headers:
- Content-Length:
- - "341"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
- Content-Type:
- - application/json
- Date:
- - Fri, 30 Aug 2024 04:39:11 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 5c2263ee-902c-4961-94ce-e8668615f275
- status: 200 OK
- code: 200
- duration: 64.052718ms
- - id: 85
request:
proto: HTTP/1.1
proto_major: 1
@@ -4285,8 +408,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=webhook-test-1.scaleway-terraform.com&domain=&order_by=domain_asc
method: GET
response:
proto: HTTP/2.0
@@ -4294,20 +417,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1180
+ content_length: 33
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":null,"last_valid_at":"2024-08-30T04:39:06.043530Z","name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:40:06.043530Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-08-30T04:39:07.897480Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"dns_zones":[],"total_count":0}'
headers:
Content-Length:
- - "1180"
+ - "33"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:12 GMT
+ - Fri, 20 Sep 2024 13:01:01 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4315,97 +438,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4196ff9a-b481-4c2e-bda8-98c2f3b8ca02
+ - e38754fc-7952-43ab-b3c5-b39d92bd574b
status: 200 OK
code: 200
- duration: 201.032228ms
- - id: 86
+ duration: 114.68108ms
+ - id: 9
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 159
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"sns-credentials-update","permissions":{"can_publish":false,"can_receive":false,"can_manage":true}}'
form: {}
headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 253
- uncompressed: false
- body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
- headers:
- Content-Length:
- - "253"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
- Date:
- - Fri, 30 Aug 2024 04:39:12 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - f2d7760f-f1e0-4f82-aee1-421c2a176930
- status: 200 OK
- code: 200
- duration: 807.946775ms
- - id: 87
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 222
+ content_length: 473
uncompressed: false
- body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
+ body: '{"access_key":"SIHObl1rPYU8uRxqmovk","created_at":"2024-09-20T13:01:01.198576712Z","id":"8754eb69-c3b0-4370-9261-fb34ee168ed5","name":"sns-credentials-update","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"5a37595bcc34497cb7a3f452d69030c0848b4faf","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}'
headers:
Content-Length:
- - "222"
+ - "473"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:12 GMT
+ - Fri, 20 Sep 2024 13:01:01 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4413,11 +489,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 95bd835d-9e0a-4f02-8a6d-7dfe7398f2c1
+ - 7062aea3-90a3-4bf8-acb7-eca6d12cd029
status: 200 OK
code: 200
- duration: 61.215045ms
- - id: 88
+ duration: 114.495608ms
+ - id: 10
request:
proto: HTTP/1.1
proto_major: 1
@@ -4432,8 +508,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/8754eb69-c3b0-4370-9261-fb34ee168ed5
method: GET
response:
proto: HTTP/2.0
@@ -4441,20 +517,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 406
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"access_key":"SIHObl1rPYU8uRxqmovk","created_at":"2024-09-20T13:01:01.198576Z","id":"8754eb69-c3b0-4370-9261-fb34ee168ed5","name":"sns-credentials-update","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"5a37595bcc34497cb7a3f452d69030c0848b4faf","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}'
headers:
Content-Length:
- - "233"
+ - "406"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:12 GMT
+ - Fri, 20 Sep 2024 13:01:01 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4462,11 +538,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e0441ea3-bb63-433b-babe-79ba780e9465
+ - 430c57fa-b23f-417c-a811-9b71a227ee1c
status: 200 OK
code: 200
- duration: 46.05222ms
- - id: 89
+ duration: 50.393098ms
+ - id: 11
request:
proto: HTTP/1.1
proto_major: 1
@@ -4481,7 +557,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
@@ -4490,20 +566,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 238
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
headers:
Content-Length:
- - "233"
+ - "238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:12 GMT
+ - Fri, 20 Sep 2024 13:01:01 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4511,87 +587,97 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ea3bd5df-458f-4439-9168-8326e7e70282
+ - 9e3c970c-47f2-45a7-ad27-78a66d146d11
status: 200 OK
code: 200
- duration: 46.69804ms
- - id: 90
+ duration: 66.5ms
+ - id: 12
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 79
transfer_encoding: []
trailer: {}
- host: api.scaleway.com
+ host: sns.mnq.fr-par.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
- form: {}
+ body: Action=CreateTopic&Attributes=&Name=test-mnq-sns-topic-basic&Version=2010-03-31
+ form:
+ Action:
+ - CreateTopic
+ Attributes:
+ - ""
+ Name:
+ - test-mnq-sns-topic-basic
+ Version:
+ - "2010-03-31"
headers:
+ Content-Length:
+ - "79"
+ Content-Type:
+ - application/x-www-form-urlencoded; charset=utf-8
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/7d6cc471-6426-4412-94c4-e91cd96828ba
- method: GET
+ - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64)
+ X-Amz-Date:
+ - 20240920T130101Z
+ url: https://sns.mnq.fr-par.scaleway.com/
+ method: POST
response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
transfer_encoding: []
trailer: {}
- content_length: 408
+ content_length: 378
uncompressed: false
- body: '{"access_key":"kHESad4hv4gjMbVDrJo4","created_at":"2024-08-30T04:37:59.933641Z","id":"7d6cc471-6426-4412-94c4-e91cd96828ba","name":"tf-sns-credentials-amazing-lovelace","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"cb01ae7d9562656cd2024058d4bd22a49bc15482","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}'
+ body: |
+
+
+ arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic
+
+
+ tx89fd005a-1c49-4bbc-a7af-8953ee508a74
+
+
headers:
Content-Length:
- - "408"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
+ - "378"
Content-Type:
- - application/json
+ - text/xml; charset=UTF-8
Date:
- - Fri, 30 Aug 2024 04:39:12 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 4b8b3a0a-bb05-4c2f-a3e2-41e554080a63
+ - Fri, 20 Sep 2024 13:01:01 GMT
status: 200 OK
code: 200
- duration: 64.993004ms
- - id: 91
+ duration: 21.250252ms
+ - id: 13
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 153
+ content_length: 152
transfer_encoding: []
trailer: {}
host: sns.mnq.fr-par.scaleway.com
remote_addr: ""
request_uri: ""
- body: Action=GetTopicAttributes&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-update&Version=2010-03-31
+ body: Action=GetTopicAttributes&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31
form:
Action:
- GetTopicAttributes
TopicArn:
- - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-update
+ - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic
Version:
- "2010-03-31"
headers:
Content-Length:
- - "153"
+ - "152"
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
User-Agent:
- - aws-sdk-go/1.55.5 (go1.22.4; darwin; amd64)
+ - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64)
X-Amz-Date:
- - 20240830T043912Z
+ - 20240920T130101Z
url: https://sns.mnq.fr-par.scaleway.com/
method: POST
response:
@@ -4600,7 +686,7 @@ interactions:
proto_minor: 1
transfer_encoding: []
trailer: {}
- content_length: 1047
+ content_length: 1046
uncompressed: false
body: |
@@ -4624,62 +710,64 @@ interactions:
TopicArn
- arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-update
+ arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic
- txeb442cdf-aa17-4757-999f-33ce1279f815
+ txa4630f5e-4e88-4bea-9d70-31dfce924eda
headers:
Content-Length:
- - "1047"
+ - "1046"
Content-Type:
- text/xml; charset=UTF-8
Date:
- - Fri, 30 Aug 2024 04:39:12 GMT
+ - Fri, 20 Sep 2024 13:01:01 GMT
status: 200 OK
code: 200
- duration: 32.257394ms
- - id: 92
+ duration: 24.741484ms
+ - id: 14
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 116
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{"domain":"scaleway-terraform.com","subdomain":"webhook-test-1","project_id":"105bdce1-64c0-48ab-899d-868455867ecf"}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/c13232e7-ac8b-45b4-b3fa-440d3d6331ee
- method: GET
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 459
+ content_length: 334
uncompressed: false
- body: '{"created_at":"2024-08-30T04:39:07.293621Z","domain_id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","event_types":["email_delivered"],"id":"c13232e7-ac8b-45b4-b3fa-440d3d6331ee","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-update","updated_at":"2024-08-30T04:39:07.293621Z"}'
+ body: '{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"webhook-test-1","updated_at":"2024-09-20T13:01:01Z"}'
headers:
Content-Length:
- - "459"
+ - "334"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:12 GMT
+ - Fri, 20 Sep 2024 13:01:01 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4687,11 +775,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dfe2d4e7-401d-4b62-aec1-21458e9405c2
+ - 8751edad-429c-4315-ab01-3dec3991798c
status: 200 OK
code: 200
- duration: 52.294489ms
- - id: 93
+ duration: 534.314387ms
+ - id: 15
request:
proto: HTTP/1.1
proto_major: 1
@@ -4706,8 +794,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=webhook-test-1.scaleway-terraform.com&domain=&order_by=domain_asc
method: GET
response:
proto: HTTP/2.0
@@ -4715,20 +803,71 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 253
+ content_length: 367
uncompressed: false
- body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"webhook-test-1","updated_at":"2024-09-20T13:01:01Z"}],"total_count":1}'
+ headers:
+ Content-Length:
+ - "367"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:01:01 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - 3757fe83-fcf3-416a-b2ec-d3732aeefb6a
+ status: 200 OK
+ code: 200
+ duration: 106.152216ms
+ - id: 16
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 143
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","domain_name":"webhook-test-1.scaleway-terraform.com","accept_tos":true,"autoconfig":true}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 1213
+ uncompressed: false
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:02.302420Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:02.418278121Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "253"
+ - "1213"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:13 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4736,11 +875,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a3aa406a-3db3-4e57-9b40-5ed5391c899c
+ - 0f316c37-244e-4005-ab46-260ce7bb6051
status: 200 OK
code: 200
- duration: 741.726623ms
- - id: 94
+ duration: 514.907419ms
+ - id: 17
request:
proto: HTTP/1.1
proto_major: 1
@@ -4755,8 +894,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e
method: GET
response:
proto: HTTP/2.0
@@ -4764,20 +903,71 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 222
+ content_length: 1213
uncompressed: false
- body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:02.302420Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:02.589156373Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
+ headers:
+ Content-Length:
+ - "1213"
+ Content-Security-Policy:
+ - default-src 'none'; frame-ancestors 'none'
+ Content-Type:
+ - application/json
+ Date:
+ - Fri, 20 Sep 2024 13:01:02 GMT
+ Server:
+ - Scaleway API Gateway (fr-par-1;edge02)
+ Strict-Transport-Security:
+ - max-age=63072000
+ X-Content-Type-Options:
+ - nosniff
+ X-Frame-Options:
+ - DENY
+ X-Request-Id:
+ - c69ff85d-2fc2-446e-9a07-cfc358134677
+ status: 200 OK
+ code: 200
+ duration: 206.554136ms
+ - id: 18
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 271
+ transfer_encoding: []
+ trailer: {}
+ host: api.scaleway.com
+ remote_addr: ""
+ request_uri: ""
+ body: '{"domain_id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"terraform-webhook-test","event_types":["email_delivered"],"sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic"}'
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 466
+ uncompressed: false
+ body: '{"created_at":"2024-09-20T13:01:02.736593Z","domain_id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","event_types":["email_delivered"],"id":"d62cc135-1f9a-4391-b228-d461ae3d9225","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:01:02.736593Z"}'
headers:
Content-Length:
- - "222"
+ - "466"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:13 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4785,11 +975,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ea8f954f-3b19-4733-b3b6-f2d1c84aa78a
+ - 6253dee5-a06b-4e00-a479-1580922388c8
status: 200 OK
code: 200
- duration: 59.744081ms
- - id: 95
+ duration: 124.047071ms
+ - id: 19
request:
proto: HTTP/1.1
proto_major: 1
@@ -4804,8 +994,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/d62cc135-1f9a-4391-b228-d461ae3d9225
method: GET
response:
proto: HTTP/2.0
@@ -4813,20 +1003,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 466
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"created_at":"2024-09-20T13:01:02.736593Z","domain_id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","event_types":["email_delivered"],"id":"d62cc135-1f9a-4391-b228-d461ae3d9225","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:01:02.736593Z"}'
headers:
Content-Length:
- - "233"
+ - "466"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:13 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4834,11 +1024,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ecfbef00-d50c-4508-bcf9-06cdd3365c98
+ - da500353-6b27-4ca2-afe1-4ddc0409cb7c
status: 200 OK
code: 200
- duration: 51.370015ms
- - id: 96
+ duration: 58.792104ms
+ - id: 20
request:
proto: HTTP/1.1
proto_major: 1
@@ -4853,8 +1043,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e
method: GET
response:
proto: HTTP/2.0
@@ -4862,20 +1052,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 1213
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:02.302420Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:01:02.906336962Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "233"
+ - "1213"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:13 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4883,50 +1073,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - dcb3c578-a7aa-4032-bde9-a28e0d23a351
+ - c7b99928-62c2-464b-9899-dada940d219f
status: 200 OK
code: 200
- duration: 48.672753ms
- - id: 97
+ duration: 239.043046ms
+ - id: 21
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 67
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"name":"terraform-webhook-updated","event_types":["email_queued"]}'
+ body: '{}'
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/c13232e7-ac8b-45b4-b3fa-440d3d6331ee
- method: PATCH
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 459
+ content_length: 1090
uncompressed: false
- body: '{"created_at":"2024-08-30T04:39:07.293621Z","domain_id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","event_types":["email_queued"],"id":"c13232e7-ac8b-45b4-b3fa-440d3d6331ee","name":"terraform-webhook-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-update","updated_at":"2024-08-30T04:39:07.293621Z"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:02.933940817Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "459"
+ - "1090"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:14 GMT
+ - Fri, 20 Sep 2024 13:01:02 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4934,48 +1124,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b2d792d1-ae33-43b9-b31d-ec6290183014
+ - 15883a2d-37ae-46b8-951c-8d5974574f5b
status: 200 OK
code: 200
- duration: 122.786796ms
- - id: 98
+ duration: 67.893047ms
+ - id: 22
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/c13232e7-ac8b-45b4-b3fa-440d3d6331ee
- method: GET
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 459
+ content_length: 1090
uncompressed: false
- body: '{"created_at":"2024-08-30T04:39:07.293621Z","domain_id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","event_types":["email_queued"],"id":"c13232e7-ac8b-45b4-b3fa-440d3d6331ee","name":"terraform-webhook-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-update","updated_at":"2024-08-30T04:39:07.293621Z"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:03.498766041Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "459"
+ - "1090"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:14 GMT
+ - Fri, 20 Sep 2024 13:01:03 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -4983,48 +1175,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 818b8daa-695f-411c-870f-8576f4bdc7f6
+ - c574be61-a188-4e4d-a5fd-c01781fb0d19
status: 200 OK
code: 200
- duration: 55.867795ms
- - id: 99
+ duration: 41.134127ms
+ - id: 23
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/c13232e7-ac8b-45b4-b3fa-440d3d6331ee
- method: GET
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 459
+ content_length: 1090
uncompressed: false
- body: '{"created_at":"2024-08-30T04:39:07.293621Z","domain_id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","event_types":["email_queued"],"id":"c13232e7-ac8b-45b4-b3fa-440d3d6331ee","name":"terraform-webhook-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-update","updated_at":"2024-08-30T04:39:07.293621Z"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:04.596431362Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "459"
+ - "1090"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:14 GMT
+ - Fri, 20 Sep 2024 13:01:04 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5032,48 +1226,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 3339dbbd-2920-4dc8-af09-dd3c3142a22b
+ - b62d8e8c-5851-42f6-894c-4e72e5b61311
status: 200 OK
code: 200
- duration: 53.803233ms
- - id: 100
+ duration: 97.469522ms
+ - id: 24
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 253
+ content_length: 1090
uncompressed: false
- body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:06.642798775Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "253"
+ - "1090"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:15 GMT
+ - Fri, 20 Sep 2024 13:01:06 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5081,48 +1277,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a13cbf2a-3de8-4dcb-b65d-2d28d9287272
+ - be052c86-43cd-4b27-9e9a-01510e8f19ca
status: 200 OK
code: 200
- duration: 626.998717ms
- - id: 101
+ duration: 36.641924ms
+ - id: 25
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 222
+ content_length: 1090
uncompressed: false
- body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:10.730310339Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "222"
+ - "1090"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:15 GMT
+ - Fri, 20 Sep 2024 13:01:10 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5130,48 +1328,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d3557081-e9c4-4e56-9146-2b9cdd423269
+ - 2eb15a25-a18e-48aa-8844-0ed108e10f77
status: 200 OK
code: 200
- duration: 62.986445ms
- - id: 102
+ duration: 87.817304ms
+ - id: 26
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 1090
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:18.777172291Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "233"
+ - "1090"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:15 GMT
+ - Fri, 20 Sep 2024 13:01:18 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5179,48 +1379,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - b8fcd397-5ce0-41ac-ae9e-c70128013015
+ - 2cb7912c-ca82-4d0a-b207-84385a83dcfe
status: 200 OK
code: 200
- duration: 46.253388ms
- - id: 103
+ duration: 44.301581ms
+ - id: 27
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
- method: GET
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 1090
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:28.862336556Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "233"
+ - "1090"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:15 GMT
+ - Fri, 20 Sep 2024 13:01:28 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5228,48 +1430,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 56fbf4f1-46a1-462a-874d-367ebabad757
+ - d784faf8-fc1d-4fa4-a25c-6e0b0ec0340a
status: 200 OK
code: 200
- duration: 45.879128ms
- - id: 104
+ duration: 96.104629ms
+ - id: 28
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=c74949fd-79c3-475a-82d6-5a04a651506e&name=&order_by=name_asc&page=1&type=MX
- method: GET
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 149
+ content_length: 1090
uncompressed: false
- body: '{"records":[{"comment":null,"data":"0 .","id":"c74949fd-79c3-475a-82d6-5a04a651506e","name":"","priority":0,"ttl":3600,"type":"MX"}],"total_count":1}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:38.955627207Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "149"
+ - "1090"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:15 GMT
+ - Fri, 20 Sep 2024 13:01:38 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5277,48 +1481,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - bfc6c38e-4e5e-4b29-b192-e110de18a4bb
+ - 6075ab90-1299-4e55-8128-ef21f9cd822b
status: 200 OK
code: 200
- duration: 64.684263ms
- - id: 105
+ duration: 84.147856ms
+ - id: 29
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
- method: GET
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 341
+ content_length: 1090
uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"","updated_at":"2024-08-30T04:38:14Z"}],"total_count":1}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:49.024741287Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "341"
+ - "1090"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:15 GMT
+ - Fri, 20 Sep 2024 13:01:49 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5326,48 +1532,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c2da0446-9222-4d55-bf75-8f59abce349d
+ - d42b7d05-ce04-41fa-9e06-74616dc38aef
status: 200 OK
code: 200
- duration: 64.900235ms
- - id: 106
+ duration: 68.803276ms
+ - id: 30
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c
- method: GET
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1180
+ content_length: 1090
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":null,"last_valid_at":"2024-08-30T04:39:06.043530Z","name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:40:06.043530Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-08-30T04:39:07.897480Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:01:59.110188475Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "1180"
+ - "1090"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:16 GMT
+ - Fri, 20 Sep 2024 13:01:59 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5375,48 +1583,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4383eb73-b5d5-402b-b0ae-42c865a17d93
+ - b5224c34-145b-4844-95b9-1431810478f6
status: 200 OK
code: 200
- duration: 242.493125ms
- - id: 107
+ duration: 89.630267ms
+ - id: 31
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=ab73f353-5f21-41bc-8de8-a968cb8d60ce&name=_dmarc&order_by=name_asc&page=1&type=TXT
- method: GET
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 173
+ content_length: 1090
uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DMARC1; p=none\"","id":"ab73f353-5f21-41bc-8de8-a968cb8d60ce","name":"_dmarc","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:09.211012540Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "173"
+ - "1090"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:16 GMT
+ - Fri, 20 Sep 2024 13:02:09 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5424,48 +1634,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 84f36860-0404-4fe8-979c-4b9d9bff87a8
+ - adcc3df3-ef76-4ddb-9838-55a6ef7470e5
status: 200 OK
code: 200
- duration: 56.748493ms
- - id: 108
+ duration: 86.354314ms
+ - id: 32
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=57a02221-dfc8-4c84-b268-d6f04d55ab06&name=105bdce1-64c0-48ab-899d-868455867ecf._domainkey&order_by=name_asc&page=1&type=TXT
- method: GET
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 618
+ content_length: 1090
uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB\"","id":"57a02221-dfc8-4c84-b268-d6f04d55ab06","name":"105bdce1-64c0-48ab-899d-868455867ecf._domainkey","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:19.292693615Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "618"
+ - "1090"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:16 GMT
+ - Fri, 20 Sep 2024 13:02:19 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5473,48 +1685,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1e2f69e9-c2e9-42cf-9089-3215b30d68c4
+ - c28b279f-f875-4b1b-918c-3012cfeeb046
status: 200 OK
code: 200
- duration: 55.373767ms
- - id: 109
+ duration: 97.799968ms
+ - id: 33
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records?id=b4e63b81-f885-426a-a2ae-b43bd9d59348&name=&order_by=name_asc&page=1&type=TXT
- method: GET
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 192
+ content_length: 1090
uncompressed: false
- body: '{"records":[{"comment":null,"data":"\"v=spf1 include:_spf.tem.scaleway.com -all\"","id":"b4e63b81-f885-426a-a2ae-b43bd9d59348","name":"","priority":0,"ttl":3600,"type":"TXT"}],"total_count":1}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:29.377202535Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "192"
+ - "1090"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:16 GMT
+ - Fri, 20 Sep 2024 13:02:29 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5522,48 +1736,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 90f9ae2d-a422-41a3-b391-e7e6738d3c64
+ - da29a623-dd4e-4623-ab66-1c8831e36e10
status: 200 OK
code: 200
- duration: 60.451275ms
- - id: 110
+ duration: 70.601187ms
+ - id: 34
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
- method: GET
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 341
+ content_length: 1090
uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"","updated_at":"2024-08-30T04:38:14Z"}],"total_count":1}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":null,"name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:02:39.518765678Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"unchecked"}'
headers:
Content-Length:
- - "341"
+ - "1090"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:16 GMT
+ - Fri, 20 Sep 2024 13:02:39 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5571,48 +1787,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 7bb2decf-1912-4ddc-9109-3c80f2707f99
+ - b6965896-dab4-4ebb-af4a-0d5a9ddda9d9
status: 200 OK
code: 200
- duration: 67.427488ms
- - id: 111
+ duration: 136.669659ms
+ - id: 35
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
+ Content-Type:
+ - application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
- method: GET
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/check
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 341
+ content_length: 1110
uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"","updated_at":"2024-08-30T04:38:14Z"}],"total_count":1}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":"2024-09-20T13:02:40.910892Z","name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:03:40.910892Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":null,"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
headers:
Content-Length:
- - "341"
+ - "1110"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:16 GMT
+ - Fri, 20 Sep 2024 13:02:49 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5620,11 +1838,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - c95c8b4d-7627-4da6-9898-5fab72b6c33d
+ - ae88ebe2-990c-41dc-8175-1fb6185ea50a
status: 200 OK
code: 200
- duration: 64.633405ms
- - id: 112
+ duration: 67.370432ms
+ - id: 36
request:
proto: HTTP/1.1
proto_major: 1
@@ -5639,8 +1857,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=scaleway-terraform.com&domain=&order_by=domain_asc&page=1
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e
method: GET
response:
proto: HTTP/2.0
@@ -5648,20 +1866,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 341
+ content_length: 1236
uncompressed: false
- body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"","updated_at":"2024-08-30T04:38:14Z"}],"total_count":1}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":"2024-09-20T13:02:40.910892Z","name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:03:40.910892Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:02:49.789209524Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
headers:
Content-Length:
- - "341"
+ - "1236"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:16 GMT
+ - Fri, 20 Sep 2024 13:02:49 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5669,11 +1887,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 25951027-33b8-47bc-9638-997e5aadaf63
+ - 5d986db6-0d1b-49b0-ab06-eb3c92b22811
status: 200 OK
code: 200
- duration: 71.70234ms
- - id: 113
+ duration: 188.264868ms
+ - id: 37
request:
proto: HTTP/1.1
proto_major: 1
@@ -5688,8 +1906,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/d62cc135-1f9a-4391-b228-d461ae3d9225
method: GET
response:
proto: HTTP/2.0
@@ -5697,20 +1915,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1180
+ content_length: 466
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":null,"last_valid_at":"2024-08-30T04:39:06.043530Z","name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:40:06.043530Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-08-30T04:39:07.897480Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"created_at":"2024-09-20T13:01:02.736593Z","domain_id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","event_types":["email_delivered"],"id":"d62cc135-1f9a-4391-b228-d461ae3d9225","name":"terraform-webhook-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic","updated_at":"2024-09-20T13:01:02.736593Z"}'
headers:
Content-Length:
- - "1180"
+ - "466"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:16 GMT
+ - Fri, 20 Sep 2024 13:02:49 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5718,11 +1936,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 1e695a08-5a4b-4cb1-8a5b-4e5d65edf688
+ - dd084e75-6a94-40dd-82bf-8ead6686d5c2
status: 200 OK
code: 200
- duration: 214.977245ms
- - id: 114
+ duration: 66.022832ms
+ - id: 38
request:
proto: HTTP/1.1
proto_major: 1
@@ -5737,7 +1955,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
@@ -5746,20 +1964,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 253
+ content_length: 259
uncompressed: false
body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
headers:
Content-Length:
- - "253"
+ - "259"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:16 GMT
+ - Fri, 20 Sep 2024 13:02:50 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5767,11 +1985,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 54c0b290-9ad9-4a76-a0d2-2fd0700d2f1b
+ - 877a3d2a-2a17-4f58-9d35-7b9413b95c7d
status: 200 OK
code: 200
- duration: 687.777073ms
- - id: 115
+ duration: 832.808504ms
+ - id: 39
request:
proto: HTTP/1.1
proto_major: 1
@@ -5786,7 +2004,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
@@ -5795,20 +2013,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 222
+ content_length: 227
uncompressed: false
body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
headers:
Content-Length:
- - "222"
+ - "227"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:16 GMT
+ - Fri, 20 Sep 2024 13:02:51 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5816,11 +2034,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a96a69ed-bcc3-4a93-9c3f-6d84b2c7a7ad
+ - 120b5845-f048-470e-a361-2824e096d0e5
status: 200 OK
code: 200
- duration: 60.894313ms
- - id: 116
+ duration: 84.651261ms
+ - id: 40
request:
proto: HTTP/1.1
proto_major: 1
@@ -5835,7 +2053,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
@@ -5844,20 +2062,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 238
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
headers:
Content-Length:
- - "233"
+ - "238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:16 GMT
+ - Fri, 20 Sep 2024 13:02:51 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5865,11 +2083,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d0c03a61-644f-4c1d-b4f4-49d46c12f99c
+ - 5f4d44b9-a0f9-4dfe-81f4-693638726fae
status: 200 OK
code: 200
- duration: 57.683471ms
- - id: 117
+ duration: 65.163615ms
+ - id: 41
request:
proto: HTTP/1.1
proto_major: 1
@@ -5884,7 +2102,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
@@ -5893,20 +2111,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 238
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
headers:
Content-Length:
- - "233"
+ - "238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:16 GMT
+ - Fri, 20 Sep 2024 13:02:51 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5914,11 +2132,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - ab6732db-0518-4abc-8e20-8ab4ffe97197
+ - 1d537321-f212-4380-9061-225e571353a7
status: 200 OK
code: 200
- duration: 53.039502ms
- - id: 118
+ duration: 53.851351ms
+ - id: 42
request:
proto: HTTP/1.1
proto_major: 1
@@ -5933,8 +2151,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/7d6cc471-6426-4412-94c4-e91cd96828ba
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=webhook-test-1.scaleway-terraform.com&domain=&order_by=domain_asc&project_id=105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
proto: HTTP/2.0
@@ -5942,20 +2160,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 408
+ content_length: 367
uncompressed: false
- body: '{"access_key":"kHESad4hv4gjMbVDrJo4","created_at":"2024-08-30T04:37:59.933641Z","id":"7d6cc471-6426-4412-94c4-e91cd96828ba","name":"tf-sns-credentials-amazing-lovelace","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"cb01ae7d9562656cd2024058d4bd22a49bc15482","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}'
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"webhook-test-1","updated_at":"2024-09-20T13:02:39Z"}],"total_count":1}'
headers:
Content-Length:
- - "408"
+ - "367"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:16 GMT
+ - Fri, 20 Sep 2024 13:02:51 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -5963,89 +2181,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - af2f62ec-3149-4209-a062-521ca5c87471
- status: 200 OK
- code: 200
- duration: 53.216814ms
- - id: 119
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 153
- transfer_encoding: []
- trailer: {}
- host: sns.mnq.fr-par.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: Action=GetTopicAttributes&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-update&Version=2010-03-31
- form:
- Action:
- - GetTopicAttributes
- TopicArn:
- - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-update
- Version:
- - "2010-03-31"
- headers:
- Content-Length:
- - "153"
- Content-Type:
- - application/x-www-form-urlencoded; charset=utf-8
- User-Agent:
- - aws-sdk-go/1.55.5 (go1.22.4; darwin; amd64)
- X-Amz-Date:
- - 20240830T043916Z
- url: https://sns.mnq.fr-par.scaleway.com/
- method: POST
- response:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- transfer_encoding: []
- trailer: {}
- content_length: 1047
- uncompressed: false
- body: |
-
-
-
-
- Owner
- project-105bdce1-64c0-48ab-899d-868455867ecf
-
-
- SubscriptionsConfirmed
- 0
-
-
- SubscriptionsDeleted
- 0
-
-
- SubscriptionsPending
- 0
-
-
- TopicArn
- arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-update
-
-
-
-
- tx91b98fc8-821c-46ac-ad87-fcf2733167ff
-
-
- headers:
- Content-Length:
- - "1047"
- Content-Type:
- - text/xml; charset=UTF-8
- Date:
- - Fri, 30 Aug 2024 04:39:16 GMT
+ - 055b18a7-e1d4-44bf-a777-f4e8352d786a
status: 200 OK
code: 200
- duration: 24.015007ms
- - id: 120
+ duration: 66.379769ms
+ - id: 43
request:
proto: HTTP/1.1
proto_major: 1
@@ -6060,8 +2200,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/c13232e7-ac8b-45b4-b3fa-440d3d6331ee
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e
method: GET
response:
proto: HTTP/2.0
@@ -6069,20 +2209,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 459
+ content_length: 1236
uncompressed: false
- body: '{"created_at":"2024-08-30T04:39:07.293621Z","domain_id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","event_types":["email_queued"],"id":"c13232e7-ac8b-45b4-b3fa-440d3d6331ee","name":"terraform-webhook-updated","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","sns_arn":"arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-update","updated_at":"2024-08-30T04:39:07.293621Z"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":"2024-09-20T13:02:40.910892Z","name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:03:40.910892Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:02:51.626732512Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
headers:
Content-Length:
- - "459"
+ - "1236"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:16 GMT
+ - Fri, 20 Sep 2024 13:02:51 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -6090,11 +2230,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - a8ace39c-84c1-498f-9a8a-5c85a9b6d3c6
+ - 1a66ce22-211c-4602-bf0c-c12cfd4ccbf5
status: 200 OK
code: 200
- duration: 62.591961ms
- - id: 121
+ duration: 241.315708ms
+ - id: 44
request:
proto: HTTP/1.1
proto_major: 1
@@ -6109,8 +2249,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e
method: GET
response:
proto: HTTP/2.0
@@ -6118,20 +2258,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 253
+ content_length: 1236
uncompressed: false
- body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":"2024-09-20T13:02:40.910892Z","name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:03:40.910892Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:02:51.698702917Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
headers:
Content-Length:
- - "253"
+ - "1236"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:17 GMT
+ - Fri, 20 Sep 2024 13:02:51 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -6139,11 +2279,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 4e0473c3-d33c-4fe4-8259-43a4583c7698
+ - 9190c861-67b7-4fab-a483-d15935c6ef18
status: 200 OK
code: 200
- duration: 662.447068ms
- - id: 122
+ duration: 75.568814ms
+ - id: 45
request:
proto: HTTP/1.1
proto_major: 1
@@ -6158,8 +2298,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/account/v3/projects?name=default&order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
proto: HTTP/2.0
@@ -6167,20 +2307,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 222
+ content_length: 259
uncompressed: false
- body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
+ body: '{"projects":[{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}],"total_count":1}'
headers:
Content-Length:
- - "222"
+ - "259"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:17 GMT
+ - Fri, 20 Sep 2024 13:02:52 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -6188,11 +2328,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e557c7d1-ddbd-4c85-81e1-e4f68819c618
+ - 2eccc482-41b5-4115-9ae6-bc0840857f3d
status: 200 OK
code: 200
- duration: 58.899063ms
- - id: 123
+ duration: 805.030549ms
+ - id: 46
request:
proto: HTTP/1.1
proto_major: 1
@@ -6207,8 +2347,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/account/v3/projects/105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
proto: HTTP/2.0
@@ -6216,20 +2356,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 227
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"created_at":"2019-09-30T07:52:49.358300Z","description":"","id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","updated_at":"2020-05-03T19:41:17.997124Z"}'
headers:
Content-Length:
- - "233"
+ - "227"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:17 GMT
+ - Fri, 20 Sep 2024 13:02:52 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -6237,11 +2377,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - cc85d02d-d38d-4ec3-8a41-34ab1a7b14eb
+ - f4768d07-2efb-4198-b331-eda1ff186b18
status: 200 OK
code: 200
- duration: 48.603286ms
- - id: 124
+ duration: 136.75966ms
+ - id: 47
request:
proto: HTTP/1.1
proto_major: 1
@@ -6256,7 +2396,7 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
method: GET
response:
@@ -6265,20 +2405,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 233
+ content_length: 238
uncompressed: false
- body: '{"created_at":"2024-08-29T13:19:14.342784Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-08-29T13:19:14.342784Z"}'
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
headers:
Content-Length:
- - "233"
+ - "238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:17 GMT
+ - Fri, 20 Sep 2024 13:02:52 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -6286,11 +2426,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d0b7974a-cdac-40fb-b196-9a1642e9c196
+ - 7e377678-f985-4998-9ce9-ffc49594ae5a
status: 200 OK
code: 200
- duration: 42.686623ms
- - id: 125
+ duration: 56.47322ms
+ - id: 48
request:
proto: HTTP/1.1
proto_major: 1
@@ -6305,27 +2445,29 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/c13232e7-ac8b-45b4-b3fa-440d3d6331ee
- method: DELETE
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-info?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 0
+ content_length: 238
uncompressed: false
- body: ""
+ body: '{"created_at":"2024-09-19T13:36:28.543641Z","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","sns_endpoint_url":"https://sns.mnq.fr-par.scaleway.com","status":"enabled","updated_at":"2024-09-19T13:36:28.543641Z"}'
headers:
+ Content-Length:
+ - "238"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:18 GMT
+ - Fri, 20 Sep 2024 13:02:52 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -6333,50 +2475,48 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 722bf21d-102f-48bc-96e2-9588e63a7b8f
- status: 204 No Content
- code: 204
- duration: 105.480246ms
- - id: 126
+ - a23cfa31-7b65-4f1b-8ca9-2c0509c16437
+ status: 200 OK
+ code: 200
+ duration: 50.907413ms
+ - id: 49
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 132
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"changes":[{"delete":{"id":"ab73f353-5f21-41bc-8de8-a968cb8d60ce"}}],"return_all_records":false,"disallow_new_zone_creation":false}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records
- method: PATCH
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/8754eb69-c3b0-4370-9261-fb34ee168ed5
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 14
+ content_length: 406
uncompressed: false
- body: '{"records":[]}'
+ body: '{"access_key":"SIHObl1rPYU8uRxqmovk","created_at":"2024-09-20T13:01:01.198576Z","id":"8754eb69-c3b0-4370-9261-fb34ee168ed5","name":"sns-credentials-update","permissions":{"can_manage":true,"can_publish":false,"can_receive":false},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","secret_checksum":"5a37595bcc34497cb7a3f452d69030c0848b4faf","secret_key":"00000000-0000-0000-0000-000000000000","updated_at":null}'
headers:
Content-Length:
- - "14"
+ - "406"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:18 GMT
+ - Fri, 20 Sep 2024 13:02:52 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -6384,101 +2524,103 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - d1681aba-d0dc-4c5a-be51-ff15d93e83df
+ - a5010ce6-b0dc-4267-a1a4-0e4d93cde63f
status: 200 OK
code: 200
- duration: 111.957409ms
- - id: 127
+ duration: 76.349899ms
+ - id: 50
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 132
+ content_length: 152
transfer_encoding: []
trailer: {}
- host: api.scaleway.com
+ host: sns.mnq.fr-par.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"changes":[{"delete":{"id":"c74949fd-79c3-475a-82d6-5a04a651506e"}}],"return_all_records":false,"disallow_new_zone_creation":false}'
- form: {}
+ body: Action=GetTopicAttributes&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31
+ form:
+ Action:
+ - GetTopicAttributes
+ TopicArn:
+ - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic
+ Version:
+ - "2010-03-31"
headers:
+ Content-Length:
+ - "152"
Content-Type:
- - application/json
+ - application/x-www-form-urlencoded; charset=utf-8
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records
- method: PATCH
+ - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64)
+ X-Amz-Date:
+ - 20240920T130252Z
+ url: https://sns.mnq.fr-par.scaleway.com/
+ method: POST
response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
transfer_encoding: []
trailer: {}
- content_length: 14
+ content_length: 315
uncompressed: false
- body: '{"records":[]}'
+ body: |
+
+
+ Sender
+ NotFound
+ Topic "test-mnq-sns-topic-basic" does not exist.
+
+ tx1ac2c345-179e-4196-b2ec-d28ee1623989
+
headers:
Content-Length:
- - "14"
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
+ - "315"
Content-Type:
- - application/json
+ - text/xml; charset=UTF-8
Date:
- - Fri, 30 Aug 2024 04:39:18 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 2d98007e-3a38-41f3-a31a-bb3f238fa9ed
- status: 200 OK
- code: 200
- duration: 157.628398ms
- - id: 128
+ - Fri, 20 Sep 2024 13:02:52 GMT
+ status: 404 Not Found
+ code: 404
+ duration: 23.607332ms
+ - id: 51
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 132
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"changes":[{"delete":{"id":"b4e63b81-f885-426a-a2ae-b43bd9d59348"}}],"return_all_records":false,"disallow_new_zone_creation":false}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records
- method: PATCH
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/d62cc135-1f9a-4391-b228-d461ae3d9225
+ method: DELETE
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 14
+ content_length: 0
uncompressed: false
- body: '{"records":[]}'
+ body: ""
headers:
- Content-Length:
- - "14"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:18 GMT
+ - Fri, 20 Sep 2024 13:02:52 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -6486,38 +2628,38 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - af489252-32b4-4f8b-8316-481955b67154
- status: 200 OK
- code: 200
- duration: 207.780712ms
- - id: 129
+ - f001c039-8fca-4b84-b0ac-09d361a90929
+ status: 204 No Content
+ code: 204
+ duration: 132.296562ms
+ - id: 52
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 146
+ content_length: 145
transfer_encoding: []
trailer: {}
host: sns.mnq.fr-par.scaleway.com
remote_addr: ""
request_uri: ""
- body: Action=DeleteTopic&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-update&Version=2010-03-31
+ body: Action=DeleteTopic&TopicArn=arn%3Ascw%3Asns%3Afr-par%3Aproject-105bdce1-64c0-48ab-899d-868455867ecf%3Atest-mnq-sns-topic-basic&Version=2010-03-31
form:
Action:
- DeleteTopic
TopicArn:
- - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-update
+ - arn:scw:sns:fr-par:project-105bdce1-64c0-48ab-899d-868455867ecf:test-mnq-sns-topic-basic
Version:
- "2010-03-31"
headers:
Content-Length:
- - "146"
+ - "145"
Content-Type:
- application/x-www-form-urlencoded; charset=utf-8
User-Agent:
- - aws-sdk-go/1.55.5 (go1.22.4; darwin; amd64)
+ - aws-sdk-go/1.55.5 (go1.23.0; darwin; amd64)
X-Amz-Date:
- - 20240830T043918Z
+ - 20240920T130252Z
url: https://sns.mnq.fr-par.scaleway.com/
method: POST
response:
@@ -6526,64 +2668,65 @@ interactions:
proto_minor: 1
transfer_encoding: []
trailer: {}
- content_length: 211
+ content_length: 315
uncompressed: false
body: |
-
-
- txa8ec3cf3-fc9f-4fb7-97ff-b71e1ccde5e0
-
-
+
+
+ Sender
+ NotFound
+ Topic "test-mnq-sns-topic-basic" does not exist.
+
+ tx2a5f381d-d17f-493e-9ac9-e0414f3b349e
+
headers:
Content-Length:
- - "211"
+ - "315"
Content-Type:
- text/xml; charset=UTF-8
Date:
- - Fri, 30 Aug 2024 04:39:18 GMT
- status: 200 OK
- code: 200
- duration: 85.977941ms
- - id: 130
+ - Fri, 20 Sep 2024 13:02:52 GMT
+ status: 404 Not Found
+ code: 404
+ duration: 23.499025ms
+ - id: 53
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 132
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{"changes":[{"delete":{"id":"57a02221-dfc8-4c84-b268-d6f04d55ab06"}}],"return_all_records":false,"disallow_new_zone_creation":false}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/domain/v2beta1/dns-zones/scaleway-terraform.com/records
- method: PATCH
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 14
+ content_length: 1236
uncompressed: false
- body: '{"records":[]}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":"2024-09-20T13:02:40.910892Z","name":"webhook-test-1.scaleway-terraform.com","next_check_at":"2024-09-20T13:03:40.910892Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc.webhook-test-1","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:02:53.114333232Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
headers:
Content-Length:
- - "14"
+ - "1236"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:18 GMT
+ - Fri, 20 Sep 2024 13:02:53 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -6591,95 +2734,50 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8dde3fa2-538b-4579-b0aa-743548e9def8
+ - d33fa131-c665-45e9-88e7-4123085b9952
status: 200 OK
code: 200
- duration: 259.784211ms
- - id: 131
+ duration: 227.698123ms
+ - id: 54
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 0
+ content_length: 2
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: ""
+ body: '{}'
form: {}
headers:
- User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/mnq/v1beta1/regions/fr-par/sns-credentials/7d6cc471-6426-4412-94c4-e91cd96828ba
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: []
- trailer: {}
- content_length: 0
- uncompressed: false
- body: ""
- headers:
- Content-Security-Policy:
- - default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
- Date:
- - Fri, 30 Aug 2024 04:39:18 GMT
- Server:
- - Scaleway API Gateway (fr-par-2;edge02)
- Strict-Transport-Security:
- - max-age=63072000
- X-Content-Type-Options:
- - nosniff
- X-Frame-Options:
- - DENY
- X-Request-Id:
- - 0c3b5565-7bfe-418d-bb3e-6ce8b0dd4d68
- status: 204 No Content
- code: 204
- duration: 66.108996ms
- - id: 132
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 0
- transfer_encoding: []
- trailer: {}
- host: api.scaleway.com
- remote_addr: ""
- request_uri: ""
- body: ""
- form: {}
- headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c
- method: GET
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e/revoke
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1180
+ content_length: 1018
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":null,"last_valid_at":"2024-08-30T04:39:06.043530Z","name":"scaleway-terraform.com","next_check_at":"2024-08-30T04:40:06.043530Z","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":{"dmarc":{"name":"_dmarc","value":"v=DMARC1; p=none"}},"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-08-30T04:39:07.897480Z","status":"excellent"},"revoked_at":null,"spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"checked"}'
+ body: '{"autoconfig":false,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":"2024-09-20T13:02:40.910892Z","name":"webhook-test-1.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-09-20T13:02:53.775633081Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "1180"
+ - "1018"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:18 GMT
+ - Fri, 20 Sep 2024 13:02:53 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -6687,50 +2785,48 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - e1f3f97c-27f5-4259-b5a3-5279fc417600
+ - 1c007aca-f2a8-4e78-9780-90b8755971ee
status: 200 OK
code: 200
- duration: 187.255626ms
- - id: 133
+ duration: 640.15361ms
+ - id: 55
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 2
+ content_length: 0
transfer_encoding: []
trailer: {}
host: api.scaleway.com
remote_addr: ""
request_uri: ""
- body: '{}'
+ body: ""
form: {}
headers:
- Content-Type:
- - application/json
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c/revoke
- method: POST
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/5ff18bff-dbf0-49f0-8085-de1100b34c0e
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 984
+ content_length: 1170
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":null,"last_valid_at":"2024-08-30T04:39:06.043530Z","name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":null,"revoked_at":"2024-08-30T04:39:19.481350117Z","spf_config":"","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"autoconfig":true,"created_at":"2024-09-20T13:01:02.316377Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4+neIG4Rm322qjg68+NXN4dTZcdIHLCR4fmUXl5IIhdtLpcjgTz9gDZc+sAWDJz8/iAwhuVve6PJeSKOa7tm2FrFpww7U6MHnd/yl8P8/RIZuoD16J+haSf2CIHLhP8q7sQRlfe74C35R88v/BnVYtg42Lrnj794jNjfjJZqlqGpIBnhyFetqLnykZO38W0S8Ci0+JTof6F0PfbFqY3J9wNErWoDVUTmytpRXpyz/6AaSdMOP5qLPjlpLTieo0YEH5FmzHRtKNyY1pcolJnYfQ9yzhQ+V8PuCmaYQfF8d0EIabTsm3qoQCu+D4ava/+p3W+VE0BqnQkqv6pP7nfvwIDAQAB","id":"5ff18bff-dbf0-49f0-8085-de1100b34c0e","last_error":null,"last_valid_at":"2024-09-20T13:02:40.910892Z","name":"webhook-test-1.scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-09-20T13:02:53.964633298Z","status":"excellent"},"revoked_at":"2024-09-20T13:02:53.775633Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
headers:
Content-Length:
- - "984"
+ - "1170"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:19 GMT
+ - Fri, 20 Sep 2024 13:02:54 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -6738,11 +2834,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 635035c9-f31f-4ee5-bb89-01194fd1f945
+ - e8b7db34-e7aa-42a0-b99e-e0533e143124
status: 200 OK
code: 200
- duration: 920.571882ms
- - id: 134
+ duration: 305.521365ms
+ - id: 56
request:
proto: HTTP/1.1
proto_major: 1
@@ -6757,8 +2853,8 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/domains/92172e91-be71-42aa-93c1-d1f2a6f2719c
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=webhook-test-1.scaleway-terraform.com&domain=&order_by=domain_asc
method: GET
response:
proto: HTTP/2.0
@@ -6766,20 +2862,20 @@ interactions:
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 1130
+ content_length: 367
uncompressed: false
- body: '{"autoconfig":false,"created_at":"2024-08-30T04:38:00.347597Z","dkim_config":"v=DKIM1; h=sha256; k=rsa; p=MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxPJdaTJy7jXsnXI6YDxJb2asF18B9x9zOfBRKWEV8GdUctsOxdcWe+OupFtaMoApNjU4nofffyHp26SHiQvaAdWSe050928ei/V23ADK4dtAM5cgW3ENm2+Sh21tgSPbFWw6xTftQ2m7IkOwnXVfupeXhQI6sMzM3jfildyeHfLElI7AkHVkaD1QR1Cjj++z49Ap7YVjDFpY/+Bo4nZEuskTW7YPgUu3zfSQriE9MKTiwd0YjUSxUTW+86tQ9AVlcru6J65ATJOQ7+2scGU7+X3IcLgD1OgAOCwCO6++/Oml9MUvMM5HnnejRk0lWzbkZMjWMQS4ajaw1w6oWsD9RwIDAQAB","id":"92172e91-be71-42aa-93c1-d1f2a6f2719c","last_error":null,"last_valid_at":"2024-08-30T04:39:06.043530Z","name":"scaleway-terraform.com","next_check_at":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","records":null,"region":"fr-par","reputation":{"previous_score":null,"previous_scored_at":null,"score":100,"scored_at":"2024-08-30T04:39:07.897480Z","status":"excellent"},"revoked_at":"2024-08-30T04:39:19.481350Z","spf_config":"include:_spf.tem.scaleway.com","statistics":{"canceled_count":0,"failed_count":0,"sent_count":0,"total_count":0},"status":"revoked"}'
+ body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"webhook-test-1","updated_at":"2024-09-20T13:02:39Z"}],"total_count":1}'
headers:
Content-Length:
- - "1130"
+ - "367"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:19 GMT
+ - Fri, 20 Sep 2024 13:02:54 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -6787,11 +2883,11 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 32aaf809-fc9f-47eb-ae14-84d6f9ab69a5
+ - e1edd0d5-2e5e-4d8c-aa2d-fcbcf9f411a0
status: 200 OK
code: 200
- duration: 244.75437ms
- - id: 135
+ duration: 64.805656ms
+ - id: 57
request:
proto: HTTP/1.1
proto_major: 1
@@ -6806,29 +2902,29 @@ interactions:
form: {}
headers:
User-Agent:
- - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.4; darwin; amd64) terraform-provider/develop terraform/terraform-tests
- url: https://api.scaleway.com/transactional-email/v1alpha1/regions/fr-par/webhooks/c13232e7-ac8b-45b4-b3fa-440d3d6331ee
- method: GET
+ - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests
+ url: https://api.scaleway.com/domain/v2beta1/dns-zones/webhook-test-1.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf
+ method: DELETE
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 131
+ content_length: 2
uncompressed: false
- body: '{"message":"resource is not found","resource":"webhook_id","resource_id":"c13232e7-ac8b-45b4-b3fa-440d3d6331ee","type":"not_found"}'
+ body: '{}'
headers:
Content-Length:
- - "131"
+ - "2"
Content-Security-Policy:
- default-src 'none'; frame-ancestors 'none'
Content-Type:
- application/json
Date:
- - Fri, 30 Aug 2024 04:39:19 GMT
+ - Fri, 20 Sep 2024 13:02:54 GMT
Server:
- - Scaleway API Gateway (fr-par-2;edge02)
+ - Scaleway API Gateway (fr-par-1;edge02)
Strict-Transport-Security:
- max-age=63072000
X-Content-Type-Options:
@@ -6836,7 +2932,7 @@ interactions:
X-Frame-Options:
- DENY
X-Request-Id:
- - 8ef54abf-198a-4da8-9708-1ee083d76b4c
- status: 404 Not Found
- code: 404
- duration: 31.593673ms
+ - 18e958ea-f4be-4f00-9216-928065a6be7c
+ status: 200 OK
+ code: 200
+ duration: 323.013185ms
diff --git a/internal/services/tem/webhook_test.go b/internal/services/tem/webhook_test.go
index 2e96b37e1..cb2b7584e 100644
--- a/internal/services/tem/webhook_test.go
+++ b/internal/services/tem/webhook_test.go
@@ -15,15 +15,19 @@ import (
)
const (
- webhookName = "terraform-webhook-test"
- organizationID = "105bdce1-64c0-48ab-899d-868455867ecf"
+ webhookName = "terraform-webhook-test"
+ updatedWebhookName = "terraform-webhook-updated"
+ organizationID = "105bdce1-64c0-48ab-899d-868455867ecf"
+ webhookDomainName = "scaleway-terraform.com"
+ DomainZone = "webhook-test"
)
-func TestAccWebhook_Basic(t *testing.T) {
+func TestAccWebhook_BasicAndUpdate(t *testing.T) {
tt := acctest.NewTestTools(t)
defer tt.Cleanup()
- eventTypes := []string{"email_delivered", "email_dropped"}
+ initialEventTypes := []string{"email_delivered", "email_dropped"}
+ updatedEventTypes := []string{"email_queued"}
resource.ParallelTest(t, resource.TestCase{
PreCheck: func() { acctest.PreCheck(t) },
@@ -34,11 +38,11 @@ func TestAccWebhook_Basic(t *testing.T) {
Config: fmt.Sprintf(`
data scaleway_account_project "project" {
name = "default"
- organization_id = "%s"
+ organization_id = "%s"
}
data scaleway_mnq_sns sns {
- project_id= data.scaleway_account_project.project.project_id
+ project_id = data.scaleway_account_project.project.project_id
}
resource "scaleway_mnq_sns_credentials" "sns_credentials" {
@@ -53,52 +57,34 @@ func TestAccWebhook_Basic(t *testing.T) {
name = "test-mnq-sns-topic-basic"
access_key = scaleway_mnq_sns_credentials.sns_credentials.access_key
secret_key = scaleway_mnq_sns_credentials.sns_credentials.secret_key
+ depends_on = [scaleway_mnq_sns_credentials.sns_credentials]
}
- resource scaleway_tem_domain cr01 {
- name = "%s"
- accept_tos = true
+ resource "scaleway_domain_zone" "test" {
+ domain = "%s"
+ subdomain = "%s"
}
- resource "scaleway_domain_record" "spf" {
- dns_zone = "%s"
- type = "TXT"
- data = "v=spf1 ${scaleway_tem_domain.cr01.spf_config} -all"
+ resource "scaleway_tem_domain" "main" {
+ name = scaleway_domain_zone.test.id
+ accept_tos = true
+ autoconfig = true
}
- resource "scaleway_domain_record" "dkim" {
- dns_zone = "%s"
- name = "${scaleway_tem_domain.cr01.project_id}._domainkey"
- type = "TXT"
- data = scaleway_tem_domain.cr01.dkim_config
- }
- resource "scaleway_domain_record" "mx" {
- dns_zone = "%s"
- type = "MX"
- data = "."
- }
-
- resource "scaleway_domain_record" "dmarc" {
- dns_zone = "%s"
- name = scaleway_tem_domain.cr01.dmarc_name
- type = "TXT"
- data = scaleway_tem_domain.cr01.dmarc_config
- }
-
- resource scaleway_tem_domain_validation valid {
- domain_id = scaleway_tem_domain.cr01.id
- region = scaleway_tem_domain.cr01.region
- timeout = 3600
+ resource "scaleway_tem_domain_validation" "example" {
+ domain_id = scaleway_tem_domain.main.id
+ region = "fr-par"
+ timeout = 300
}
resource "scaleway_tem_webhook" "webhook" {
name = "%s"
- domain_id = scaleway_tem_domain.cr01.id
+ domain_id = scaleway_tem_domain.main.id
event_types = ["%s", "%s"]
sns_arn = scaleway_mnq_sns_topic.sns_topic.arn
- depends_on = [scaleway_tem_domain_validation.valid, scaleway_mnq_sns_topic.sns_topic]
+ depends_on = [scaleway_mnq_sns_topic.sns_topic]
}
- `, organizationID, domainNameValidation, domainNameValidation, domainNameValidation, domainNameValidation, domainNameValidation, webhookName, eventTypes[0], eventTypes[1]),
+ `, organizationID, webhookDomainName, DomainZone, webhookName, initialEventTypes[0], initialEventTypes[1]),
Check: resource.ComposeTestCheckFunc(
isWebhookPresent(tt, "scaleway_tem_webhook.webhook"),
resource.TestCheckResourceAttr("scaleway_tem_webhook.webhook", "name", webhookName),
@@ -107,112 +93,15 @@ func TestAccWebhook_Basic(t *testing.T) {
resource.TestCheckResourceAttr("scaleway_tem_webhook.webhook", "event_types.#", "2"),
),
},
- },
- })
-}
-
-func TestAccWebhook_Update(t *testing.T) {
- tt := acctest.NewTestTools(t)
- defer tt.Cleanup()
-
- initialName := "terraform-webhook-test"
- updatedName := "terraform-webhook-updated"
- eventTypes := []string{"email_delivered"}
- updatedEventTypes := []string{"email_queued"}
-
- resource.ParallelTest(t, resource.TestCase{
- PreCheck: func() { acctest.PreCheck(t) },
- ProviderFactories: tt.ProviderFactories,
- CheckDestroy: isWebhookDestroyed(tt),
- Steps: []resource.TestStep{
- {
- Config: fmt.Sprintf(`
-
- data scaleway_account_project "project" {
- name = "default"
- organization_id = "%s"
- }
-
- data scaleway_mnq_sns sns {
- project_id= data.scaleway_account_project.project.project_id
- }
-
- resource "scaleway_mnq_sns_credentials" "sns_credentials" {
- project_id = data.scaleway_mnq_sns.sns.project_id
- permissions {
- can_manage = true
- }
- }
-
- resource "scaleway_mnq_sns_topic" "sns_topic" {
- project_id = data.scaleway_mnq_sns.sns.project_id
- name = "test-mnq-sns-topic-update"
- access_key = scaleway_mnq_sns_credentials.sns_credentials.access_key
- secret_key = scaleway_mnq_sns_credentials.sns_credentials.secret_key
- }
-
- resource scaleway_tem_domain cr01 {
- name = "%s"
- accept_tos = true
- }
-
- resource "scaleway_domain_record" "spf" {
- dns_zone = "%s"
- type = "TXT"
- data = "v=spf1 ${scaleway_tem_domain.cr01.spf_config} -all"
- }
-
- resource "scaleway_domain_record" "dkim" {
- dns_zone = "%s"
- name = "${scaleway_tem_domain.cr01.project_id}._domainkey"
- type = "TXT"
- data = scaleway_tem_domain.cr01.dkim_config
- }
- resource "scaleway_domain_record" "mx" {
- dns_zone = "%s"
- type = "MX"
- data = "."
- }
-
- resource "scaleway_domain_record" "dmarc" {
- dns_zone = "%s"
- name = scaleway_tem_domain.cr01.dmarc_name
- type = "TXT"
- data = scaleway_tem_domain.cr01.dmarc_config
- }
-
- resource scaleway_tem_domain_validation valid {
- domain_id = scaleway_tem_domain.cr01.id
- region = scaleway_tem_domain.cr01.region
- timeout = 3600
- }
-
- resource "scaleway_tem_webhook" "webhook" {
- name = "%s"
- domain_id = scaleway_tem_domain.cr01.id
- event_types = ["%s"]
- sns_arn = scaleway_mnq_sns_topic.sns_topic.arn
- depends_on = [scaleway_tem_domain_validation.valid, scaleway_mnq_sns_topic.sns_topic]
- }
- `, organizationID, domainNameValidation, domainNameValidation, domainNameValidation, domainNameValidation, domainNameValidation, initialName, eventTypes[0]),
- Check: resource.ComposeTestCheckFunc(
- isWebhookPresent(tt, "scaleway_tem_webhook.webhook"),
- resource.TestCheckResourceAttr("scaleway_tem_webhook.webhook", "name", initialName),
- resource.TestCheckResourceAttrSet("scaleway_tem_webhook.webhook", "domain_id"),
- resource.TestCheckResourceAttrSet("scaleway_tem_webhook.webhook", "sns_arn"),
- resource.TestCheckResourceAttr("scaleway_tem_webhook.webhook", "event_types.#", "1"),
- ),
- },
{
Config: fmt.Sprintf(`
-
data scaleway_account_project "project" {
name = "default"
- organization_id = "%s"
+ organization_id = "%s"
}
data scaleway_mnq_sns sns {
- project_id= data.scaleway_account_project.project.project_id
+ project_id = data.scaleway_account_project.project.project_id
}
resource "scaleway_mnq_sns_credentials" "sns_credentials" {
@@ -224,58 +113,39 @@ func TestAccWebhook_Update(t *testing.T) {
resource "scaleway_mnq_sns_topic" "sns_topic" {
project_id = data.scaleway_mnq_sns.sns.project_id
- name = "test-mnq-sns-topic-update"
+ name = "test-mnq-sns-topic-basic"
access_key = scaleway_mnq_sns_credentials.sns_credentials.access_key
secret_key = scaleway_mnq_sns_credentials.sns_credentials.secret_key
}
- resource scaleway_tem_domain cr01 {
- name = "%s"
- accept_tos = true
- }
-
- resource "scaleway_domain_record" "spf" {
- dns_zone = "%s"
- type = "TXT"
- data = "v=spf1 ${scaleway_tem_domain.cr01.spf_config} -all"
- }
-
- resource "scaleway_domain_record" "dkim" {
- dns_zone = "%s"
- name = "${scaleway_tem_domain.cr01.project_id}._domainkey"
- type = "TXT"
- data = scaleway_tem_domain.cr01.dkim_config
- }
- resource "scaleway_domain_record" "mx" {
- dns_zone = "%s"
- type = "MX"
- data = "."
+ resource "scaleway_domain_zone" "test" {
+ domain = "%s"
+ subdomain = "%s"
}
- resource "scaleway_domain_record" "dmarc" {
- dns_zone = "%s"
- name = scaleway_tem_domain.cr01.dmarc_name
- type = "TXT"
- data = scaleway_tem_domain.cr01.dmarc_config
+ resource "scaleway_tem_domain" "main" {
+ name = scaleway_domain_zone.test.id
+ accept_tos = true
+ autoconfig = true
}
- resource scaleway_tem_domain_validation valid {
- domain_id = scaleway_tem_domain.cr01.id
- region = scaleway_tem_domain.cr01.region
- timeout = 3600
+ resource "scaleway_tem_domain_validation" "example" {
+ domain_id = scaleway_tem_domain.main.id
+ region = "fr-par"
+ timeout = 300
}
resource "scaleway_tem_webhook" "webhook" {
name = "%s"
- domain_id = scaleway_tem_domain.cr01.id
+ domain_id = scaleway_tem_domain.main.id
event_types = ["%s"]
sns_arn = scaleway_mnq_sns_topic.sns_topic.arn
- depends_on = [scaleway_tem_domain_validation.valid, scaleway_mnq_sns_topic.sns_topic]
+ depends_on = [scaleway_mnq_sns_topic.sns_topic]
}
- `, organizationID, domainNameValidation, domainNameValidation, domainNameValidation, domainNameValidation, domainNameValidation, updatedName, updatedEventTypes[0]),
+ `, organizationID, webhookDomainName, DomainZone, updatedWebhookName, updatedEventTypes[0]),
Check: resource.ComposeTestCheckFunc(
isWebhookPresent(tt, "scaleway_tem_webhook.webhook"),
- resource.TestCheckResourceAttr("scaleway_tem_webhook.webhook", "name", updatedName),
+ resource.TestCheckResourceAttr("scaleway_tem_webhook.webhook", "name", updatedWebhookName),
resource.TestCheckResourceAttrSet("scaleway_tem_webhook.webhook", "domain_id"),
resource.TestCheckResourceAttrSet("scaleway_tem_webhook.webhook", "sns_arn"),
resource.TestCheckResourceAttr("scaleway_tem_webhook.webhook", "event_types.#", "1"),